diff --git a/.gitattributes b/.gitattributes
index a6344aac8c09253b3b630fb776ae94478aa0275b..2e9253e81678c483546b3a141cd51575107366f2 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
+assets/teaser.jpg filter=lfs diff=lfs merge=lfs -text
diff --git a/.ipynb_checkpoints/TRAIN_motionstreamer-checkpoint.sh b/.ipynb_checkpoints/TRAIN_motionstreamer-checkpoint.sh
new file mode 100644
index 0000000000000000000000000000000000000000..f78c2ef286c0414204a35ed5e54fc6f5ed7afd54
--- /dev/null
+++ b/.ipynb_checkpoints/TRAIN_motionstreamer-checkpoint.sh
@@ -0,0 +1,15 @@
+NUM_GPUS=${1:-1} # default: 1 GPU
+
+BATCH_SIZE=$((30 / NUM_GPUS))
+
+echo "Using $NUM_GPUS GPUs, each with a batch size of $BATCH_SIZE"
+
+accelerate launch --num_processes $NUM_GPUS train_motionstreamer.py \
+--batch-size $BATCH_SIZE \
+--lr 0.0001 \
+--total-iter 100000 \
+--out-dir Experiments \
+--exp-name motionstreamer_model \
+--dataname t2m_babel_272 \
+--latent_dir babel_272_stream/t2m_babel_latents \
+--num_gpus $NUM_GPUS
\ No newline at end of file
diff --git a/.ipynb_checkpoints/demo_t2m-checkpoint.py b/.ipynb_checkpoints/demo_t2m-checkpoint.py
new file mode 100644
index 0000000000000000000000000000000000000000..61eb5550ab11f9f1a2c59b1d972f806b6bc59cdf
--- /dev/null
+++ b/.ipynb_checkpoints/demo_t2m-checkpoint.py
@@ -0,0 +1,204 @@
+import os
+import torch
+import numpy as np
+from models.llama_model import LLaMAHF, LLaMAHFConfig
+import models.tae as tae
+import options.option_transformer as option_trans
+import warnings
+
+import smplx
+from utils import bvh, quat
+from utils.face_z_align_util import rotation_6d_to_matrix, matrix_to_axis_angle, axis_angle_to_quaternion
+
+
+warnings.filterwarnings('ignore')
+
+comp_device = torch.device('cuda')
+##### ---- Exp dirs ---- #####
+args = option_trans.get_args_parser()
+torch.manual_seed(args.seed)
+
+from sentence_transformers import SentenceTransformer
+t5_model = SentenceTransformer('sentencet5-xxl/')
+t5_model.eval()
+for p in t5_model.parameters():
+ p.requires_grad = False
+
+def save_motion_as_bvh(motion_data, output_path, fps=30):
+ """
+ Saves a motion tensor in the 272-dimensional format to a BVH file.
+ This version is adapted from the official repository script for robustness.
+ """
+ print(f"--- Starting direct conversion to BVH: {os.path.basename(output_path)} ---")
+ try:
+ # --- 1. Ensure data is a 2D NumPy array ---
+ if isinstance(motion_data, torch.Tensor):
+ motion_data = motion_data.detach().cpu().numpy()
+
+ # This is the key fix: Check dimensions before squeezing
+ if motion_data.ndim == 3 and motion_data.shape[0] == 1:
+ motion_data = motion_data.squeeze(0)
+ elif motion_data.ndim != 2:
+ raise ValueError(f"Input motion data must be 2D or 3D with a batch size of 1, but got shape {motion_data.shape}")
+
+ # --- 2. Recover 85-dim SMPL format from 272-dim format ---
+ # This logic is from the official script's `recover_from_local_rotation`
+ njoint = 22
+ nfrm, _ = motion_data.shape
+
+ rotations_matrix = rotation_6d_to_matrix(torch.from_numpy(motion_data[:, 8+6*njoint : 8+12*njoint]).reshape(nfrm, -1, 6)).numpy()
+
+ # Accumulate heading rotations
+ global_heading_diff_rot_6d = torch.from_numpy(motion_data[:, 2:8])
+ global_heading_diff_rot = rotation_6d_to_matrix(global_heading_diff_rot_6d).numpy()
+ global_heading_rot = np.zeros_like(global_heading_diff_rot)
+ global_heading_rot[0] = global_heading_diff_rot[0]
+ for i in range(1, nfrm):
+ global_heading_rot[i] = np.matmul(global_heading_diff_rot[i], global_heading_rot[i-1])
+
+ # Calculate root translation
+ velocities_root_xy = motion_data[:, :2]
+ positions_no_heading = motion_data[:, 8 : 8+3*njoint].reshape(nfrm, -1, 3)
+ height = positions_no_heading[:, 0, 1]
+
+ inv_global_heading_rot = np.transpose(global_heading_rot, (0, 2, 1))
+ rotations_matrix[:, 0, ...] = np.matmul(inv_global_heading_rot, rotations_matrix[:, 0, ...])
+
+ velocities_root_xyz = np.zeros((nfrm, 3))
+ velocities_root_xyz[:, 0] = velocities_root_xy[:, 0]
+ velocities_root_xyz[:, 2] = velocities_root_xy[:, 1]
+ velocities_root_xyz[1:, :] = np.matmul(inv_global_heading_rot[:-1], velocities_root_xyz[1:, :, None]).squeeze(-1)
+ root_translation = np.cumsum(velocities_root_xyz, axis=0)
+ root_translation[:, 1] = height
+
+ # Convert rotation matrices to axis-angle
+ axis_angle = matrix_to_axis_angle(torch.from_numpy(rotations_matrix)).numpy()
+ poses_85dim = np.concatenate([axis_angle.reshape(nfrm, -1), np.zeros((nfrm, 6)), root_translation, np.zeros((nfrm, 10))], axis=-1)
+
+ # --- 3. Convert 85-dim SMPL to BVH data ---
+ # This logic is from the official script's `smpl2bvh`
+ rots = poses_85dim[:, :72].reshape(-1, 24, 3)
+ trans = poses_85dim[:, 72:75]
+
+ # Get skeleton from SMPL model
+ model = smplx.create(model_path="body_models/human_model_files", model_type="smpl", gender="NEUTRAL")
+ parents = model.parents.detach().cpu().numpy()
+ rest_pose = model().joints.detach().cpu().numpy().squeeze()[:24,:]
+ offsets = rest_pose - rest_pose[parents]
+ offsets[0] = np.array([0,0,0])
+
+ rotations_quat = axis_angle_to_quaternion(torch.from_numpy(rots)).numpy()
+ rotations_euler = np.degrees(quat.to_euler(rotations_quat, order="zyx"))
+
+ positions = offsets[None].repeat(len(rots), axis=0)
+ positions[:, 0] = trans
+
+ joint_names = [
+ "Pelvis", "Left_hip", "Right_hip", "Spine1", "Left_knee", "Right_knee", "Spine2",
+ "Left_ankle", "Right_ankle", "Spine3", "Left_foot", "Right_foot", "Neck",
+ "Left_collar", "Right_collar", "Head", "Left_shoulder", "Right_shoulder",
+ "Left_elbow", "Right_elbow", "Left_wrist", "Right_wrist", "Left_hand", "Right_hand"
+ ]
+
+ # --- 4. Save the final BVH file ---
+ bvh.save(output_path, {
+ "rotations": rotations_euler,
+ "positions": positions,
+ "offsets": offsets,
+ "parents": parents,
+ "names": joint_names,
+ "order": "zyx",
+ "frametime": 1.0 / fps,
+ })
+ print(f"✅ BVH file saved successfully to {output_path}")
+
+ except Exception as e:
+ print(f"❌ BVH Conversion Failed. Error: {e}")
+ import traceback
+ traceback.print_exc()
+
+
+##### ---- Network ---- #####
+clip_range = [-30,20]
+
+net = tae.Causal_HumanTAE(
+ hidden_size=args.hidden_size,
+ down_t=args.down_t,
+ stride_t=args.stride_t,
+ depth=args.depth,
+ dilation_growth_rate=args.dilation_growth_rate,
+ activation='relu',
+ latent_dim=args.latent_dim,
+ clip_range=clip_range
+ )
+
+
+config = LLaMAHFConfig.from_name('Normal_size')
+config.block_size = 78
+trans_encoder = LLaMAHF(config, args.num_diffusion_head_layers, args.latent_dim, comp_device)
+
+print('loading checkpoint from {}'.format(args.resume_pth))
+ckpt = torch.load(args.resume_pth, map_location='cpu')
+net.load_state_dict(ckpt['net'], strict=True)
+net.eval()
+net.to(comp_device)
+
+
+if args.resume_trans is not None:
+ print('loading transformer checkpoint from {}'.format(args.resume_trans))
+ ckpt = torch.load(args.resume_trans, map_location='cpu')
+ new_ckpt_trans = {}
+ for key in ckpt['trans'].keys():
+ if key.split('.')[0]=='module':
+ new_key = '.'.join(key.split('.')[1:])
+ else:
+ new_key = key
+ new_ckpt_trans[new_key] = ckpt['trans'][key]
+ trans_encoder.load_state_dict(new_ckpt_trans, strict=True)
+trans_encoder.eval()
+trans_encoder.to(comp_device)
+
+
+reference_end_latent = np.load('reference_end_latent_t2m_272.npy')
+reference_end_latent = torch.from_numpy(reference_end_latent).to(comp_device)
+
+mean = np.load('humanml3d_272/mean_std/Mean.npy')
+std = np.load('humanml3d_272/mean_std/Std.npy')
+
+# forward inference
+threshold = 0.1
+cfg_scale = 4.0
+print(f"Generating motion with CFG scale: {cfg_scale}")
+motion_latents = trans_encoder.sample_for_eval_CFG_inference(text=args.text, tokenizer=t5_model, device=comp_device, reference_end_latent=reference_end_latent, threshold=threshold, cfg=cfg_scale)
+
+# forward decode
+motion_seqs = net.forward_decoder(motion_latents)
+from visualization.recover_visualize import recover_from_local_position
+import visualization.plot_3d_global as plot_3d
+
+motion = motion_seqs.squeeze(0)
+motion = motion.detach().cpu().numpy()
+
+if not os.path.exists('demo_output'):
+ os.makedirs('demo_output')
+
+if args.mode == 'pos':
+ # Option1: recover from joint position
+ pred_xyz = recover_from_local_position(motion * std + mean, 22)
+ xyz = pred_xyz.reshape(1, -1, 22, 3)
+ pose_vis = plot_3d.draw_to_batch(xyz, [args.text], [f'demo_output/{args.text}.mp4'], fps=30)
+ print(f"Visualized result is saved in demo_output/{args.text}.mp4")
+
+elif args.mode == 'rot':
+ # De-normalize the motion data to its original scale
+ motion = motion * std + mean
+
+ # Define the output path for the new BVH file
+ output_bvh_path = os.path.join('demo_output', f'{args.text}.bvh')
+
+ # Call the new function to save the BVH file directly
+ save_motion_as_bvh(motion, output_bvh_path, fps=30)
+
+else:
+ raise ValueError(f'Invalid mode: {args.mode}')
+
diff --git a/.ipynb_checkpoints/environment-checkpoint.yaml b/.ipynb_checkpoints/environment-checkpoint.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..93b497dad035a07cfd7d2dfa3febec97ee374356
--- /dev/null
+++ b/.ipynb_checkpoints/environment-checkpoint.yaml
@@ -0,0 +1,258 @@
+name: mgpt
+channels:
+ - pytorch
+ - conda-forge
+ - defaults
+ - https://repo.anaconda.com/pkgs/main
+ - https://repo.anaconda.com/pkgs/r
+dependencies:
+ - _libgcc_mutex=0.1=main
+ - _openmp_mutex=4.5=1_gnu
+ - asttokens=3.0.0=pyhd8ed1ab_0
+ - backcall=0.2.0=pyh9f0ad1d_0
+ - blas=1.0=mkl
+ - bzip2=1.0.8=h7b6447c_0
+ - ca-certificates=2025.1.31=hbcca054_0
+ - certifi=2024.8.30=pyhd8ed1ab_0
+ - comm=0.2.2=pyhd8ed1ab_0
+ - cudatoolkit=10.1.243=h6bb024c_0
+ - debugpy=1.4.1=py38h709712a_0
+ - entrypoints=0.4=pyhd8ed1ab_0
+ - executing=2.1.0=pyhd8ed1ab_0
+ - ffmpeg=4.3=hf484d3e_0
+ - freetype=2.10.4=h5ab3b9f_0
+ - gmp=6.2.1=h2531618_2
+ - gnutls=3.6.15=he1e5248_0
+ - intel-openmp=2021.3.0=h06a4308_3350
+ - ipykernel=6.20.2=pyh210e3f2_0
+ - jpeg=9b=h024ee3a_2
+ - jupyter_client=7.1.2=pyhd8ed1ab_0
+ - jupyter_core=5.7.2=pyh31011fe_1
+ - lame=3.100=h7b6447c_0
+ - lcms2=2.12=h3be6417_0
+ - ld_impl_linux-64=2.35.1=h7274673_9
+ - libffi=3.3=he6710b0_2
+ - libgcc-ng=9.3.0=h5101ec6_17
+ - libgomp=9.3.0=h5101ec6_17
+ - libiconv=1.15=h63c8f33_5
+ - libidn2=2.3.2=h7f8727e_0
+ - libpng=1.6.37=hbc83047_0
+ - libsodium=1.0.18=h36c2ea0_1
+ - libstdcxx-ng=13.2.0=hc0a3c3a_7
+ - libtasn1=4.16.0=h27cfd23_0
+ - libtiff=4.2.0=h85742a9_0
+ - libunistring=0.9.10=h27cfd23_0
+ - libuv=1.40.0=h7b6447c_0
+ - libwebp-base=1.2.0=h27cfd23_0
+ - lz4-c=1.9.3=h295c915_1
+ - mkl=2021.3.0=h06a4308_520
+ - mkl-service=2.4.0=py38h7f8727e_0
+ - mkl_fft=1.3.0=py38h42c9631_2
+ - mkl_random=1.2.2=py38h51133e4_0
+ - ncurses=6.2=he6710b0_1
+ - nest-asyncio=1.6.0=pyhd8ed1ab_0
+ - nettle=3.7.3=hbbd107a_1
+ - ninja=1.10.2=hff7bd54_1
+ - olefile=0.46=py_0
+ - openh264=2.1.0=hd408876_0
+ - openjpeg=2.3.0=h05c96fa_1
+ - openssl=1.1.1k=h7f98852_0
+ - packaging=24.2=pyhd8ed1ab_2
+ - pickleshare=0.7.5=py_1003
+ - pillow=8.3.1=py38h2c7a002_0
+ - pip=21.0.1=py38h06a4308_0
+ - platformdirs=4.3.6=pyhd8ed1ab_0
+ - prompt_toolkit=3.0.48=hd8ed1ab_1
+ - ptyprocess=0.7.0=pyhd3deb0d_0
+ - pure_eval=0.2.3=pyhd8ed1ab_0
+ - pygments=2.18.0=pyhd8ed1ab_0
+ - python=3.8.11=h12debd9_0_cpython
+ - python_abi=3.8=5_cp38
+ - pyzmq=22.1.0=py38h2035c66_0
+ - readline=8.1=h27cfd23_0
+ - setuptools=52.0.0=py38h06a4308_0
+ - six=1.16.0=pyhd3eb1b0_0
+ - sqlite=3.36.0=hc218d9a_0
+ - stack_data=0.6.2=pyhd8ed1ab_0
+ - tk=8.6.10=hbc83047_0
+ - torchaudio=0.8.1=py38
+ - torchvision=0.9.1=py38_cu101
+ - tornado=6.1=py38h497a2fe_1
+ - wheel=0.37.0=pyhd3eb1b0_0
+ - xz=5.2.5=h7b6447c_0
+ - zeromq=4.3.4=h9c3ff4c_0
+ - zlib=1.2.11=h7b6447c_3
+ - zstd=1.4.9=haebb681_0
+ - pip:
+ - absl-py==0.13.0
+ - accelerate==1.0.1
+ - aiohappyeyeballs==2.4.3
+ - aiohttp==3.10.11
+ - aiosignal==1.3.1
+ - annotated-types==0.7.0
+ - antlr4-python3-runtime==4.9.3
+ - async-timeout==5.0.1
+ - attrs==24.2.0
+ - beautifulsoup4==4.12.3
+ - blis==0.7.11
+ - cachetools==4.2.2
+ - catalogue==2.0.10
+ - charset-normalizer==2.0.4
+ - chumpy==0.70
+ - click==8.1.7
+ - clip==1.0
+ - cloudpathlib==0.20.0
+ - confection==0.1.5
+ - cycler==0.10.0
+ - cymem==2.0.10
+ - decorator==5.0.9
+ - diffusers==0.31.0
+ - einops==0.8.0
+ - ffmpeg-python==0.2.0
+ - filelock==3.16.1
+ - freetype-py==2.5.1
+ - frozenlist==1.5.0
+ - fsspec==2024.2.0
+ - ftfy==6.1.1
+ - future==1.0.0
+ - fvcore==0.1.5.post20221221
+ - gdown==5.2.0
+ - glfw==2.8.0
+ - google-auth==2.36.0
+ - google-auth-oauthlib==0.4.6
+ - grpcio==1.68.0
+ - h5py==3.11.0
+ - huggingface-hub==0.26.2
+ - human-body-prior==2.2.2.0
+ - idna==3.2
+ - imageio==2.9.0
+ - imageio-ffmpeg==0.5.1
+ - importlib-metadata==8.5.0
+ - iopath==0.1.10
+ - ipdb==0.13.9
+ - ipython==7.26.0
+ - ipython-genutils==0.2.0
+ - jedi==0.18.0
+ - jinja2==3.1.3
+ - joblib==1.0.1
+ - kiwisolver==1.3.1
+ - langcodes==3.4.1
+ - language-data==1.3.0
+ - lightning-utilities==0.11.9
+ - marisa-trie==1.2.1
+ - markdown==3.3.4
+ - markdown-it-py==3.0.0
+ - markupsafe==2.1.5
+ - matplotlib==3.4.3
+ - matplotlib-inline==0.1.2
+ - mdurl==0.1.2
+ - moviepy==0.2.3.1
+ - mpmath==1.3.0
+ - multidict==6.1.0
+ - murmurhash==1.0.11
+ - natsort==8.4.0
+ - networkx==3.0
+ - numpy==1.22.4
+ - nvidia-cublas-cu11==11.11.3.6
+ - nvidia-cublas-cu12==12.1.3.1
+ - nvidia-cuda-cupti-cu11==11.8.87
+ - nvidia-cuda-cupti-cu12==12.1.105
+ - nvidia-cuda-nvrtc-cu11==11.8.89
+ - nvidia-cuda-nvrtc-cu12==12.1.105
+ - nvidia-cuda-runtime-cu11==11.8.89
+ - nvidia-cuda-runtime-cu12==12.1.105
+ - nvidia-cudnn-cu11==9.1.0.70
+ - nvidia-cudnn-cu12==9.1.0.70
+ - nvidia-cufft-cu11==10.9.0.58
+ - nvidia-cufft-cu12==11.0.2.54
+ - nvidia-curand-cu11==10.3.0.86
+ - nvidia-curand-cu12==10.3.2.106
+ - nvidia-cusolver-cu11==11.4.1.48
+ - nvidia-cusolver-cu12==11.4.5.107
+ - nvidia-cusparse-cu11==11.7.5.86
+ - nvidia-cusparse-cu12==12.1.0.106
+ - nvidia-nccl-cu11==2.20.5
+ - nvidia-nccl-cu12==2.20.5
+ - nvidia-nvjitlink-cu12==12.1.105
+ - nvidia-nvtx-cu11==11.8.86
+ - nvidia-nvtx-cu12==12.1.105
+ - oauthlib==3.1.1
+ - omegaconf==2.3.0
+ - orjson==3.10.15
+ - pandas==1.3.2
+ - parso==0.8.2
+ - pexpect==4.8.0
+ - portalocker==3.0.0
+ - preshed==3.0.9
+ - prompt-toolkit==3.0.20
+ - propcache==0.2.0
+ - protobuf==5.28.3
+ - psutil==6.1.0
+ - pyasn1==0.4.8
+ - pyasn1-modules==0.2.8
+ - pydantic==2.10.1
+ - pydantic-core==2.27.1
+ - pydeprecate==0.3.2
+ - pygame==2.6.1
+ - pyglet==2.1.2
+ - pyopengl==3.1.0
+ - pyparsing==2.4.7
+ - pyrender==0.1.45
+ - pysocks==1.7.1
+ - python-dateutil==2.8.2
+ - pytorch-lightning==1.7.0
+ - pytorch3d==0.3.0
+ - pytz==2021.1
+ - pyyaml==5.4.1
+ - regex==2024.11.6
+ - requests==2.26.0
+ - requests-oauthlib==1.3.0
+ - rich==13.9.4
+ - rsa==4.7.2
+ - safetensors==0.4.5
+ - scikit-learn==0.24.2
+ - scipy==1.7.1
+ - sentence-transformers==3.2.1
+ - sentencepiece==0.2.0
+ - shapely==2.0.7
+ - shellingham==1.5.4
+ - sklearn==0.0
+ - smart-open==7.0.5
+ - smplx==0.1.28
+ - soupsieve==2.6
+ - spacy==3.7.5
+ - spacy-legacy==3.0.12
+ - spacy-loggers==1.0.5
+ - srsly==2.4.8
+ - sympy==1.13.1
+ - tabulate==0.9.0
+ - tensorboard==2.12.0
+ - tensorboard-data-server==0.7.2
+ - tensorboard-plugin-wit==1.8.0
+ - termcolor==2.4.0
+ - thinc==8.2.5
+ - threadpoolctl==2.2.0
+ - timm==1.0.12
+ - tokenizers==0.20.3
+ - toml==0.10.2
+ - torch==2.4.1+cu118
+ - torchgeometry==0.1.2
+ - torchmetrics==0.7.0
+ - tqdm==4.62.2
+ - traitlets==5.0.5
+ - transformers==4.46.3
+ - triangle==20250106
+ - trimesh==4.6.2
+ - triton==3.0.0
+ - typer==0.13.1
+ - typing-extensions==4.12.2
+ - urllib3==1.26.6
+ - wasabi==1.1.3
+ - wcwidth==0.2.5
+ - weasel==0.4.1
+ - werkzeug==2.0.1
+ - wrapt==1.17.0
+ - yacs==0.1.8
+ - yarl==1.15.2
+ - zipp==3.20.2
+prefix: /root/miniconda3/envs/mgpt
\ No newline at end of file
diff --git a/.ipynb_checkpoints/requirements-checkpoint.txt b/.ipynb_checkpoints/requirements-checkpoint.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e19598e3d3cc573e2e5dfedd07ef4595fbb4cc25
--- /dev/null
+++ b/.ipynb_checkpoints/requirements-checkpoint.txt
@@ -0,0 +1,17 @@
+smplx==0.1.28
+transformers==4.56.2
+timm==1.0.12
+sentence-transformers==5.1.0
+clip @ git+https://github.com/openai/CLIP.git@main#egg=clip
+human-body-prior @ git+https://github.com/nghorbani/human_body_prior.git@master#egg=human-body-prior
+gdown
+chumpy==0.70
+scipy==1.7.1
+numpy==1.22.4
+tensorboard
+accelerate
+flash_attn
+matplotlib==3.4.3
+matplotlib-inline==0.1.2
+imageio==2.9.0
+imageio-ffmpeg==0.5.1
\ No newline at end of file
diff --git a/.ipynb_checkpoints/train_motionstreamer-checkpoint.py b/.ipynb_checkpoints/train_motionstreamer-checkpoint.py
new file mode 100644
index 0000000000000000000000000000000000000000..9839dadbadc92b3e929ad0c5991f3f4bf2fbdc28
--- /dev/null
+++ b/.ipynb_checkpoints/train_motionstreamer-checkpoint.py
@@ -0,0 +1,264 @@
+"""Train streaming motion generation model (MotionStreamer) with llama blocks, Two-Forward strategy and QK-Norm, using the motion latents encoded by the Causal TAE (trained in the first stage)."""
+
+
+import os
+import torch
+import numpy as np
+import random
+from torch.utils.tensorboard import SummaryWriter
+import json
+from accelerate import Accelerator
+from tqdm import tqdm
+from models.llama_model import LLaMAHF, LLaMAHFConfig
+import options.option_transformer as option_trans
+import utils.utils_model as utils_model
+import warnings
+from torch.optim.lr_scheduler import LambdaLR, CosineAnnealingLR
+warnings.filterwarnings('ignore')
+
+os.environ["TOKENIZERS_PARALLELISM"] = "false"
+##### ---- Exp dirs ---- #####
+args = option_trans.get_args_parser()
+torch.manual_seed(args.seed)
+
+# warm-up + cosine decay scheduler
+class WarmupCosineDecayScheduler:
+ def __init__(self, optimizer, warmup_iters, total_iters, min_lr=0):
+ self.optimizer = optimizer
+ self.warmup_iters = warmup_iters
+ self.total_iters = total_iters
+ self.min_lr = min_lr
+
+ self.warmup_scheduler = LambdaLR(optimizer, lr_lambda=self.warmup_lambda)
+
+ self.cosine_scheduler = CosineAnnealingLR(optimizer,
+ T_max=total_iters - warmup_iters,
+ eta_min=min_lr)
+
+ def warmup_lambda(self, current_iter):
+ if current_iter < self.warmup_iters:
+ return float(current_iter) / float(max(1, self.warmup_iters))
+ return 1.0
+
+ def step(self, current_iter):
+ if current_iter < self.warmup_iters:
+ self.warmup_scheduler.step()
+ else:
+ self.cosine_scheduler.step()
+
+ def state_dict(self):
+ return {
+ 'warmup_iters': self.warmup_iters,
+ 'total_iters': self.total_iters,
+ 'min_lr': self.min_lr,
+ }
+
+ def load_state_dict(self, state_dict):
+ self.warmup_iters = state_dict['warmup_iters']
+ self.total_iters = state_dict['total_iters']
+ self.min_lr = state_dict['min_lr']
+
+
+
+args.out_dir = os.path.join(args.out_dir, f'{args.exp_name}')
+os.makedirs(args.out_dir, exist_ok = True)
+
+
+##### ---- Accelerator Setup ---- #####
+accelerator = Accelerator()
+comp_device = accelerator.device
+
+##### ---- Logger ---- #####
+logger = utils_model.get_logger(args.out_dir)
+writer = SummaryWriter(args.out_dir)
+logger.info(json.dumps(vars(args), indent=4, sort_keys=True))
+
+##### ---- Dataloader ---- #####
+from humanml3d_272 import dataset_TM_train_motionstreamer
+train_loader = dataset_TM_train_motionstreamer.DATALoader(args.dataname, args.batch_size, unit_length=2**args.down_t, latent_dir=args.latent_dir)
+
+
+##### ---- Network ---- #####
+from sentence_transformers import SentenceTransformer
+t5_model = SentenceTransformer('sentencet5-xxl/')
+t5_model.eval()
+for p in t5_model.parameters():
+ p.requires_grad = False
+
+
+config = LLaMAHFConfig.from_name('Normal_size')
+config.block_size = 78
+trans_encoder = LLaMAHF(config, args.num_diffusion_head_layers, args.latent_dim, comp_device)
+
+if args.resume_trans is not None:
+ print('loading transformer checkpoint from {}'.format(args.resume_trans))
+ ckpt = torch.load(args.resume_trans, map_location='cpu')
+ new_ckpt_trans = {}
+ for key in ckpt['trans'].keys():
+ if key.split('.')[0]=='module':
+ new_key = '.'.join(key.split('.')[1:])
+ else:
+ new_key = key
+ new_ckpt_trans[new_key] = ckpt['trans'][key]
+ trans_encoder.load_state_dict(new_ckpt_trans, strict=True)
+trans_encoder.train()
+trans_encoder.to(comp_device)
+
+
+##### ---- Optimizer & Scheduler ---- #####
+optimizer = utils_model.initial_optim(args.decay_option, args.lr, args.weight_decay, trans_encoder, args.optimizer)
+scheduler = WarmupCosineDecayScheduler(optimizer, args.total_iter//10, args.total_iter)
+
+t5_model, trans_encoder, optimizer, train_loader = accelerator.prepare(t5_model, trans_encoder, optimizer, train_loader)
+train_loader_iter = dataset_TM_train_motionstreamer.cycle(train_loader)
+
+
+diffmlps_batch_mul = 4
+def lengths_to_mask(lengths, max_len):
+ mask = torch.arange(max_len, device=lengths.device).expand(len(lengths), max_len) < lengths.unsqueeze(1)
+ return mask
+def get_mask_subset_prob(mask, prob):
+ subset_mask = torch.bernoulli(mask, p=prob) & mask
+ return subset_mask
+
+
+def uniform(shape, device=None):
+ return torch.zeros(shape, device=device).float().uniform_(0, 1)
+
+import math
+def cosine_schedule(t):
+ return torch.cos(t * math.pi * 0.5)
+
+
+#--------------2-forward:------------------
+def cosine_decay(step, total_steps, start_value=1.0, end_value=0.0):
+ step = torch.tensor(step, dtype=torch.float32)
+ total_steps = torch.tensor(total_steps, dtype=torch.float32)
+ cosine_factor = 0.5 * (1 + torch.cos(torch.pi * step / total_steps))
+ return start_value + (end_value - start_value) * cosine_factor
+
+def replace_with_pred(latents, pred_xstart, step, total_steps):
+ decay_factor = cosine_decay(step, total_steps).to(latents.device)
+ b, l, d = latents.shape
+ num_replace = int(l * decay_factor)
+
+ replace_indices = torch.randperm(l)[:num_replace]
+
+ replace_mask = torch.zeros(b, l, dtype=torch.bool).to(latents.device)
+ replace_mask[:, replace_indices] = 1
+
+ updated_latents = latents.clone()
+ updated_latents[replace_mask] = pred_xstart[replace_mask]
+
+ return updated_latents
+
+def forward_loss_withmask_2_forward_streaming(latents, trans, m_lens, feat_text, step, total_steps, A_token_length):
+ latents = latents.to(comp_device)
+ feat_text = feat_text.to(comp_device)
+ A_token_length = A_token_length.to(comp_device)
+ conditions = trans(latents, feat_text)
+ conditions = conditions.contiguous()
+ z = conditions[:,:-1,:]
+
+ b, l, d = latents.shape
+ mask = lengths_to_mask(m_lens, l)
+
+ for j in range(b):
+ mask[j, :A_token_length[j].item()] = False # A_motion token: do not compute loss
+
+ mask = mask.reshape(b * l).repeat(diffmlps_batch_mul)
+
+ target = latents.clone().detach()
+ target = target.reshape(b * l, -1)
+ z = z.reshape(b * l, -1)
+
+ with torch.no_grad():
+ loss, pred_xstart = trans.diff_loss(target=target, z=z)
+
+ pred_xstart = pred_xstart.clone().detach()
+ pred_xstart = pred_xstart.reshape(b, l, -1)
+
+ # do not replace A_motion tokens
+ for k in range(b):
+ pred_xstart[k, :A_token_length[k].item(),:] = latents[k, :A_token_length[k].item(),:]
+
+ updated_latents = replace_with_pred(latents, pred_xstart, step, total_steps)
+ updated_conditions = trans(updated_latents, feat_text)
+ updated_conditions = updated_conditions.contiguous()
+ updated_z = updated_conditions[:,:-1,:]
+
+ updated_target = latents.clone().detach()
+
+ updated_target = updated_target.reshape(b * l, -1).repeat(diffmlps_batch_mul, 1)
+ updated_z = updated_z.reshape(b * l, -1).repeat(diffmlps_batch_mul, 1)
+
+ updated_target = updated_target[mask]
+ updated_z = updated_z[mask]
+
+ updated_loss, updated_pred_xstart = trans.diff_loss(target=updated_target, z=updated_z)
+
+ return updated_loss
+
+
+##### ---- Training Loop ---- #####
+avg_loss_cls = 0.
+
+pbar = tqdm(range(1, args.total_iter + 1), desc="Training MotionStreamer")
+for nb_iter in pbar:
+ batch = next(train_loader_iter)
+ caption, m_tokens, m_tokens_len, A_token_length = batch
+ caption = list(caption)
+ m_tokens, m_tokens_len = m_tokens.to(comp_device), m_tokens_len.to(comp_device)
+ A_token_length = A_token_length.to(comp_device)
+
+ bs = len(caption)
+ num_masked = int(bs * 0.1) # 10%
+ mask_indices = random.sample(range(bs), num_masked)
+
+ for idx in mask_indices:
+ caption[idx] = ''
+
+ feat_text = torch.from_numpy(t5_model.encode(caption)).float()
+ feat_text = feat_text.to(comp_device)
+
+ # -------gt--------
+ input_latent = m_tokens[:,:-1,:] # continuous token
+
+ loss_cls = 0.0
+
+ if args.num_gpus > 1:
+ loss_cls = forward_loss_withmask_2_forward_streaming(latents=input_latent, trans=trans_encoder.module, m_lens = m_tokens_len, feat_text=feat_text, step=nb_iter, total_steps=args.total_iter, A_token_length=A_token_length)
+ else:
+ loss_cls = forward_loss_withmask_2_forward_streaming(latents=input_latent, trans=trans_encoder, m_lens = m_tokens_len, feat_text=feat_text, step=nb_iter, total_steps=args.total_iter, A_token_length=A_token_length)
+
+
+ # backward & optimizer step
+ optimizer.zero_grad()
+ accelerator.backward(loss_cls)
+ optimizer.step()
+ scheduler.step(nb_iter)
+
+ avg_loss_cls = avg_loss_cls + loss_cls.item()
+
+ args.print_iter = 100
+ if nb_iter % args.print_iter == 0 :
+ if accelerator.is_main_process:
+ avg_loss_cls = avg_loss_cls / args.print_iter
+ lr = optimizer.param_groups[0]['lr']
+ writer.add_scalar('./Loss/train', avg_loss_cls, nb_iter)
+ writer.add_scalar('./LR/train', optimizer.param_groups[0]['lr'], nb_iter)
+ msg = f"Train. Iter {nb_iter} : Loss. {avg_loss_cls:.5f}"
+ tqdm.write(f"Iter {nb_iter} | Loss: {avg_loss_cls:.5f} | LR: {lr:.6f}")
+ logger.info(msg)
+ avg_loss_cls = 0.
+
+
+ args.save_iter = 10000
+ if nb_iter % args.save_iter == 0:
+ # save checkpoint
+ if accelerator.is_main_process:
+ torch.save({
+ 'trans': trans_encoder.state_dict(),
+ }, os.path.join(args.out_dir, f'latest.pth'))
+
+accelerator.wait_for_everyone()
\ No newline at end of file
diff --git a/EVAL_causal_TAE.sh b/EVAL_causal_TAE.sh
new file mode 100644
index 0000000000000000000000000000000000000000..c8d49a644b5a8186a0925350a324a4a6dab62848
--- /dev/null
+++ b/EVAL_causal_TAE.sh
@@ -0,0 +1,6 @@
+ln -s ../utils ./Evaluator_272/
+ln -s ../humanml3d_272 ./Evaluator_272/
+ln -s ../options ./Evaluator_272/
+ln -s ../models ./Evaluator_272/
+ln -s ../visualization ./Evaluator_272/
+python eval_causal_TAE.py --resume-pth output/causal_TAE/net_last.pth
\ No newline at end of file
diff --git a/EVAL_t2m.sh b/EVAL_t2m.sh
new file mode 100644
index 0000000000000000000000000000000000000000..869c623a043c34d60cdd08edf16d72c2aa3f5d5e
--- /dev/null
+++ b/EVAL_t2m.sh
@@ -0,0 +1,7 @@
+ln -s ../utils ./Evaluator_272/
+ln -s ../humanml3d_272 ./Evaluator_272/
+ln -s ../options ./Evaluator_272/
+ln -s ../models ./Evaluator_272/
+ln -s ../visualization ./Evaluator_272/
+ln -s ../Causal_TAE ./Evaluator_272/
+python eval_t2m.py --resume-pth Causal_TAE/net_last.pth --resume-trans /cpfs03/shared/IDC/wangjingbo_group/motionstreamer/Open_source_Train_AR_16_1024_fps_30_111M_9/latest.pth
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..30a09b77b5c10706a0b6fd8bf8140e8fd49603cd
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2025 ZJU3DV
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..c618a1878f9404d7ed9cdbed30c636392474b77b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,336 @@
+
+
MotionStreamer: Streaming Motion Generation via Diffusion-based Autoregressive Model in Causal Latent Space
+
+ Lixing Xiao1
+ ·
+ Shunlin Lu 2
+ ·
+ Huaijin Pi3
+ ·
+ Ke Fan4
+ ·
+ Liang Pan3
+ ·
+ Yueer Zhou1
+ ·
+ Ziyong Feng5
+ ·
+
+ Xiaowei Zhou1
+ ·
+ Sida Peng1†
+ ·
+ Jingbo Wang6
+
+
+ 1Zhejiang University 2The Chinese University of Hong Kong, Shenzhen 3The University of Hong Kong
4Shanghai Jiao Tong University 5DeepGlint 6Shanghai AI Lab
+
+ ICCV 2025
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## 🔥 News
+
+- **[2025-06]** MotionStreamer has been accepted to ICCV 2025! 🎉
+
+## TODO List
+
+- [x] Release the processing script of 272-dim motion representation.
+- [x] Release the processed 272-dim Motion Representation of [HumanML3D](https://github.com/EricGuo5513/HumanML3D) dataset. Only for academic usage.
+- [x] Release the training code and checkpoint of our [TMR](https://github.com/Mathux/TMR)-based motion evaluator trained on the processed 272-dim [HumanML3D](https://github.com/EricGuo5513/HumanML3D) dataset.
+- [x] Release the training and evaluation code as well as checkpoint of Causal TAE.
+- [x] Release the training code of original motion generation model and streaming generation model (MotionStreamer).
+- [x] Release the checkpoint and demo inference code of original motion generation model.
+- [ ] Release complete code for MotionStreamer.
+
+## 🏃 Motion Representation
+For more details of how to obtain the 272-dim motion representation, as well as other useful tools (e.g., Visualization and Conversion to BVH format), please refer to our [GitHub repo](https://github.com/Li-xingXiao/272-dim-Motion-Representation).
+
+## Installation
+
+### 🐍 Python Virtual Environment
+```sh
+conda env create -f environment.yaml
+conda activate mgpt
+```
+
+### 🤗 Hugging Face Mirror
+Since all of our models and data are available on Hugging Face, if Hugging Face is not directly accessible, you can use the HF-mirror tools following:
+```sh
+pip install -U huggingface_hub
+export HF_ENDPOINT=https://hf-mirror.com
+```
+
+## 📥 Data Preparation
+To facilitate researchers, we provide the processed 272-dim Motion Representation of:
+> HumanML3D dataset at [this link](https://huggingface.co/datasets/lxxiao/272-dim-HumanML3D).
+
+> BABEL dataset at [this link](https://huggingface.co/datasets/lxxiao/272-dim-BABEL).
+
+❗️❗️❗️ The processed data is solely for academic purposes. Make sure you read through the [AMASS License](https://amass.is.tue.mpg.de/license.html).
+
+1. Download the processed 272-dim [HumanML3D](https://github.com/EricGuo5513/HumanML3D) dataset following:
+```bash
+huggingface-cli download --repo-type dataset --resume-download lxxiao/272-dim-HumanML3D --local-dir ./humanml3d_272
+cd ./humanml3d_272
+unzip texts.zip
+unzip motion_data.zip
+```
+The dataset is organized as:
+```
+./humanml3d_272
+ ├── mean_std
+ ├── Mean.npy
+ ├── Std.npy
+ ├── split
+ ├── train.txt
+ ├── val.txt
+ ├── test.txt
+ ├── texts
+ ├── 000000.txt
+ ...
+ ├── motion_data
+ ├── 000000.npy
+ ...
+```
+
+2. Download the processed 272-dim [BABEL](https://babel.is.tue.mpg.de/) dataset following:
+```bash
+huggingface-cli download --repo-type dataset --resume-download lxxiao/272-dim-BABEL --local-dir ./babel_272
+cd ./babel_272
+unzip texts.zip
+unzip motion_data.zip
+```
+The dataset is organized as:
+```
+./babel_272
+ ├── t2m_babel_mean_std
+ ├── Mean.npy
+ ├── Std.npy
+ ├── split
+ ├── train.txt
+ ├── val.txt
+ ├── texts
+ ├── 000000.txt
+ ...
+ ├── motion_data
+ ├── 000000.npy
+ ...
+```
+
+3. Download the processed streaming 272-dim [BABEL](https://babel.is.tue.mpg.de/) dataset following:
+```bash
+huggingface-cli download --repo-type dataset --resume-download lxxiao/272-dim-BABEL-stream --local-dir ./babel_272_stream
+cd ./babel_272_stream
+unzip train_stream.zip
+unzip train_stream_text.zip
+unzip val_stream.zip
+unzip val_stream_text.zip
+```
+The dataset is organized as:
+```
+./babel_272_stream
+ ├── train_stream
+ ├── seq1.npy
+ ...
+ ├── train_stream_text
+ ├── seq1.txt
+ ...
+ ├── val_stream
+ ├── seq1.npy
+ ...
+ ├── val_stream_text
+ ├── seq1.txt
+ ...
+```
+> NOTE: We process the original BABEL dataset to support training of streaming motion generation. e.g. If there is a motion sequence A, annotated as (A1, A2, A3, A4) in BABEL dataset, each subsequence has text description: (A1_t, A2_t, A3_t, A4_t).
+
+> Then, our BABEL-stream is constructed as:
+
+> seq1: (A1, A2) --- seq1_text: (A1_t*A2_t#A1_length)
+
+> seq2: (A2, A3) --- seq2_text: (A2_t*A3_t#A2_length)
+
+> seq3: (A3, A4) --- seq3_text: (A3_t*A4_t#A3_length)
+
+> Here, * and # is separation symbol, A1_length means the number of frames of subsequence A1.
+
+## 🚀 Training
+1. Train our [TMR](https://github.com/Mathux/TMR)-based motion evaluator on the processed 272-dim [HumanML3D](https://github.com/EricGuo5513/HumanML3D) dataset:
+ ```bash
+ bash TRAIN_evaluator_272.sh
+ ```
+ >After training for 100 epochs, the checkpoint will be stored at:
+ ``Evaluator_272/experiments/temos/EXP1/checkpoints/``.
+
+ ⬇️ We provide the evaluator checkpoint on [Hugging Face](https://huggingface.co/lxxiao/MotionStreamer/tree/main/Evaluator_272), download it following:
+ ```bash
+ python humanml3d_272/prepare/download_evaluator_ckpt.py
+ ```
+ >The downloaded checkpoint will be stored at: ``Evaluator_272/``.
+2. Train the Causal TAE:
+ ```bash
+ bash TRAIN_causal_TAE.sh ${NUM_GPUS}
+ ```
+ > e.g., if you have 8 GPUs, run: bash TRAIN_causal_TAE.sh 8
+
+ > The checkpoint will be stored at:
+ ``Experiments/causal_TAE_t2m_272/``
+
+ > Tensorboard visualization:
+ ```bash
+ tensorboard --logdir='Experiments/causal_TAE_t2m_272'
+ ```
+
+ ⬇️ We provide the Causal TAE checkpoint on [Hugging Face](https://huggingface.co/lxxiao/MotionStreamer/tree/main/Causal_TAE), download it following:
+ ```bash
+ python humanml3d_272/prepare/download_Causal_TAE_t2m_272_ckpt.py
+ ```
+
+3. Train text to motion model:
+ > We provide scripts to train the original text to motion generation model with llama blocks, Two-Forward strategy and QK-Norm, using the motion latents encoded by the Causal TAE (trained in the first stage).
+
+ 3.1 Get motion latents:
+ ```bash
+ python get_latent.py --resume-pth Causal_TAE/net_last.pth --latent_dir humanml3d_272/t2m_latents
+ ```
+ 3.2 Download [sentence-T5-XXL model](https://huggingface.co/sentence-transformers/sentence-t5-xxl/tree/main) on Hugging Face:
+ ```bash
+ huggingface-cli download --resume-download sentence-transformers/sentence-t5-xxl --local-dir sentencet5-xxl/
+ ```
+ 3.3 Train text to motion generation model:
+ ```bash
+ bash TRAIN_t2m.sh ${NUM_GPUS}
+ ```
+ > e.g., if you have 8 GPUs, run: bash TRAIN_t2m.sh 8
+
+ > The checkpoint will be stored at:
+ ``Experiments/t2m_model/``
+
+ > Tensorboard visualization:
+ ```bash
+ tensorboard --logdir='Experiments/t2m_model'
+ ```
+
+ ⬇️ We provide the text to motion model checkpoint on [Hugging Face](https://huggingface.co/lxxiao/MotionStreamer/tree/main/Experiments/t2m_model), download it following:
+ ```bash
+ python humanml3d_272/prepare/download_t2m_model_ckpt.py
+ ```
+
+4. Train streaming motion generation model (MotionStreamer):
+ > We provide scripts to train the streaming motion generation model (MotionStreamer) with llama blocks, Two-Forward strategy and QK-Norm, using the motion latents encoded by the Causal TAE (need to train a new Causal TAE using both HumanML3D-272 and BABEL-272 data).
+
+ 4.1 Train a Causal TAE using both HumanML3D-272 and BABEL-272 data:
+ ```bash
+ bash TRAIN_causal_TAE.sh ${NUM_GPUS} t2m_babel_272
+ ```
+ > e.g., if you have 8 GPUs, run: bash TRAIN_causal_TAE.sh 8 t2m_babel_272
+
+ > The checkpoint will be stored at:
+ ``Experiments/causal_TAE_t2m_babel_272/``
+
+ > Tensorboard visualization:
+ ```bash
+ tensorboard --logdir='Experiments/causal_TAE_t2m_babel_272'
+ ```
+
+ ⬇️ We provide the Causal TAE checkpoint trained using both HumanML3D-272 and BABEL-272 data on [Hugging Face](https://huggingface.co/lxxiao/MotionStreamer/tree/main/Causal_TAE_t2m_babel), download it following:
+ ```bash
+ python humanml3d_272/prepare/download_Causal_TAE_t2m_babel_272_ckpt.py
+ ```
+
+ 4.2 Get motion latents of both HumanML3D-272 and the processed BABEL-272-stream dataset:
+ ```bash
+ python get_latent.py --resume-pth Causal_TAE_t2m_babel/net_last.pth --latent_dir babel_272_stream/t2m_babel_latents --dataname t2m_babel_272
+ ```
+
+ 4.3 Train MotionStreamer model:
+ ```bash
+ bash TRAIN_motionstreamer.sh ${NUM_GPUS}
+ ```
+ > e.g., if you have 8 GPUs, run: bash TRAIN_motionstreamer.sh 8
+
+ > The checkpoint will be stored at:
+ ``Experiments/motionstreamer_model/``
+
+ > Tensorboard visualization:
+ ```bash
+ tensorboard --logdir='Experiments/motionstreamer_model'
+ ```
+
+## 📍 Evaluation
+
+1. Evaluate the metrics of the processed 272-dim [HumanML3D](https://github.com/EricGuo5513/HumanML3D) dataset:
+ ```bash
+ bash EVAL_GT.sh
+ ```
+ ( FID, R@1, R@2, R@3, Diversity and MM-Dist (Matching Score) are reported. )
+
+2. Evaluate the metrics of Causal TAE:
+ ```bash
+ bash EVAL_causal_TAE.sh
+ ```
+ ( FID and MPJPE (mm) are reported. )
+
+3. Evaluate the metrics of text to motion model:
+ ```bash
+ bash EVAL_t2m.sh
+ ```
+ ( FID, R@1, R@2, R@3, Diversity and MM-Dist (Matching Score) are reported. )
+
+
+## 🎬 Demo Inference
+
+1. Inference of text to motion model:
+ > [Option1] Recover from joint position
+ ```bash
+ python demo_t2m.py --text 'a person is walking like a mummy.' --mode pos --resume-pth Causal_TAE/net_last.pth --resume-trans Experiments/t2m_model/latest.pth
+ ```
+ > [Option2] Recover from joint rotation
+ ```bash
+ python demo_t2m.py --text 'a person is walking like a mummy.' --mode rot --resume-pth Causal_TAE/net_last.pth --resume-trans Experiments/t2m_model/latest.pth
+ ```
+ > In our 272-dim representation, Inverse Kinematics (IK) is not needed.
+ > For further conversion to BVH format, please refer to [this repo](https://github.com/Li-xingXiao/272-dim-Motion-Representation?tab=readme-ov-file#6-representation_272-to-bvh-conversion-optional) (Step 6: Representation_272 to BVH conversion). The BVH format of motion animation can be visualizd and edited in [Blender](https://www.blender.org/features/animation/).
+
+
+
+
+## 🌹 Acknowledgement
+This repository builds upon the following awesome datasets and projects:
+- [272-dim-Motion-Representation](https://github.com/Li-xingXiao/272-dim-Motion-Representation)
+- [AMASS](https://amass.is.tue.mpg.de/index.html)
+- [HumanML3D](https://github.com/EricGuo5513/HumanML3D)
+- [T2M-GPT](https://github.com/Mael-zys/T2M-GPT)
+- [TMR](https://github.com/Mathux/TMR)
+- [OpenTMA](https://github.com/LinghaoChan/OpenTMA)
+- [Sigma-VAE](https://github.com/orybkin/sigma-vae-pytorch)
+- [Scamo](https://github.com/shunlinlu/ScaMo_code)
+
+## 🤝🏼 Citation
+If our project is helpful for your research, please consider citing :
+```
+@article{xiao2025motionstreamer,
+ title={MotionStreamer: Streaming Motion Generation via Diffusion-based Autoregressive Model in Causal Latent Space},
+ author={Xiao, Lixing and Lu, Shunlin and Pi, Huaijin and Fan, Ke and Pan, Liang and Zhou, Yueer and Feng, Ziyong and Zhou, Xiaowei and Peng, Sida and Wang, Jingbo},
+ journal={arXiv preprint arXiv:2503.15451},
+ year={2025}
+ }
+```
+
+## Star History
+
+[](https://www.star-history.com/#zju3dv/MotionStreamer&Date)
diff --git a/TRAIN_causal_TAE.sh b/TRAIN_causal_TAE.sh
new file mode 100644
index 0000000000000000000000000000000000000000..ce44d542d69b8f031662fae356beb9d702927a38
--- /dev/null
+++ b/TRAIN_causal_TAE.sh
@@ -0,0 +1,22 @@
+NUM_GPUS=${1:-1} # default: 1 GPU
+dataset_name=${2:-t2m_272} # default: t2m_272, options: t2m_272, t2m_babel_272
+
+BATCH_SIZE=$((128 / NUM_GPUS))
+
+echo "Using $NUM_GPUS GPUs, each with a batch size of $BATCH_SIZE"
+
+accelerate launch --num_processes $NUM_GPUS train_causal_TAE.py \
+--batch-size $BATCH_SIZE \
+--lr 0.00005 \
+--total-iter 2000000 \
+--lr-scheduler 1900000 \
+--down-t 2 \
+--depth 3 \
+--dilation-growth-rate 3 \
+--out-dir Experiments \
+--dataname $dataset_name \
+--exp-name causal_TAE_${dataset_name} \
+--root_loss 7.0 \
+--latent_dim 16 \
+--hidden_size 1024 \
+--num_gpus $NUM_GPUS
\ No newline at end of file
diff --git a/TRAIN_evaluator_272.sh b/TRAIN_evaluator_272.sh
new file mode 100644
index 0000000000000000000000000000000000000000..f032f627e010952f441538a20b07cb6594d4c0fd
--- /dev/null
+++ b/TRAIN_evaluator_272.sh
@@ -0,0 +1,6 @@
+export HF_ENDPOINT=https://hf-mirror.com
+cd Evaluator_272
+huggingface-cli download --resume-download distilbert/distilbert-base-uncased --local-dir ./deps/distilbert-base-uncased
+ln -s ../humanml3d_272 ./datasets/humanml3d_272
+python -m train --cfg configs/configs_evaluator_272/H3D-TMR.yaml --cfg_assets configs/assets.yaml --batch_size 256 --nodebug
+cd ..
\ No newline at end of file
diff --git a/TRAIN_motionstreamer.sh b/TRAIN_motionstreamer.sh
new file mode 100644
index 0000000000000000000000000000000000000000..4c5bcaa5f47491a99e1f75f137a532e3572d006a
--- /dev/null
+++ b/TRAIN_motionstreamer.sh
@@ -0,0 +1,16 @@
+NUM_GPUS=${1:-1} # default: 1 GPU
+
+BATCH_SIZE=$((30 / NUM_GPUS))
+
+echo "Using $NUM_GPUS GPUs, each with a batch size of $BATCH_SIZE"
+
+accelerate launch --num_processes $NUM_GPUS train_motionstreamer.py \
+--batch-size $BATCH_SIZE \
+--lr 0.0001 \
+--total-iter 200000 \
+--out-dir Experiments \
+--exp-name motionstreamer_model \
+--dataname t2m_babel_272 \
+--latent_dir babel_272_stream/t2m_babel_latents \
+--num_gpus $NUM_GPUS
+--resume-trans Experiments/motionstreamer_model/100k.pth \
\ No newline at end of file
diff --git a/TRAIN_t2m.sh b/TRAIN_t2m.sh
new file mode 100644
index 0000000000000000000000000000000000000000..769a1d428abe3005318ad144ba37b1e53db8e537
--- /dev/null
+++ b/TRAIN_t2m.sh
@@ -0,0 +1,15 @@
+NUM_GPUS=${1:-1} # default: 1 GPU
+
+BATCH_SIZE=$((256 / NUM_GPUS))
+
+echo "Using $NUM_GPUS GPUs, each with a batch size of $BATCH_SIZE"
+
+accelerate launch --num_processes $NUM_GPUS train_t2m.py \
+--batch-size $BATCH_SIZE \
+--lr 0.0001 \
+--total-iter 100000 \
+--out-dir Experiments \
+--exp-name t2m_model \
+--dataname t2m_272 \
+--latent_dir humanml3d_272/t2m_latents \
+--num_gpus $NUM_GPUS
\ No newline at end of file
diff --git a/assets/teaser.jpg b/assets/teaser.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b49953140d48925b6066f99a297d3546a986b7b2
--- /dev/null
+++ b/assets/teaser.jpg
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7958c8564ae20e48165890a08d21d1b63d2a6ce94fed017fb7b5504286f0b5da
+size 751242
diff --git a/babel_272/.gitattributes b/babel_272/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..1ef325f1b111266a6b26e0196871bd78baa8c2f3
--- /dev/null
+++ b/babel_272/.gitattributes
@@ -0,0 +1,59 @@
+*.7z filter=lfs diff=lfs merge=lfs -text
+*.arrow filter=lfs diff=lfs merge=lfs -text
+*.bin filter=lfs diff=lfs merge=lfs -text
+*.bz2 filter=lfs diff=lfs merge=lfs -text
+*.ckpt filter=lfs diff=lfs merge=lfs -text
+*.ftz filter=lfs diff=lfs merge=lfs -text
+*.gz filter=lfs diff=lfs merge=lfs -text
+*.h5 filter=lfs diff=lfs merge=lfs -text
+*.joblib filter=lfs diff=lfs merge=lfs -text
+*.lfs.* filter=lfs diff=lfs merge=lfs -text
+*.lz4 filter=lfs diff=lfs merge=lfs -text
+*.mds filter=lfs diff=lfs merge=lfs -text
+*.mlmodel filter=lfs diff=lfs merge=lfs -text
+*.model filter=lfs diff=lfs merge=lfs -text
+*.msgpack filter=lfs diff=lfs merge=lfs -text
+*.npy filter=lfs diff=lfs merge=lfs -text
+*.npz filter=lfs diff=lfs merge=lfs -text
+*.onnx filter=lfs diff=lfs merge=lfs -text
+*.ot filter=lfs diff=lfs merge=lfs -text
+*.parquet filter=lfs diff=lfs merge=lfs -text
+*.pb filter=lfs diff=lfs merge=lfs -text
+*.pickle filter=lfs diff=lfs merge=lfs -text
+*.pkl filter=lfs diff=lfs merge=lfs -text
+*.pt filter=lfs diff=lfs merge=lfs -text
+*.pth filter=lfs diff=lfs merge=lfs -text
+*.rar filter=lfs diff=lfs merge=lfs -text
+*.safetensors filter=lfs diff=lfs merge=lfs -text
+saved_model/**/* filter=lfs diff=lfs merge=lfs -text
+*.tar.* filter=lfs diff=lfs merge=lfs -text
+*.tar filter=lfs diff=lfs merge=lfs -text
+*.tflite filter=lfs diff=lfs merge=lfs -text
+*.tgz filter=lfs diff=lfs merge=lfs -text
+*.wasm filter=lfs diff=lfs merge=lfs -text
+*.xz filter=lfs diff=lfs merge=lfs -text
+*.zip filter=lfs diff=lfs merge=lfs -text
+*.zst filter=lfs diff=lfs merge=lfs -text
+*tfevents* filter=lfs diff=lfs merge=lfs -text
+# Audio files - uncompressed
+*.pcm filter=lfs diff=lfs merge=lfs -text
+*.sam filter=lfs diff=lfs merge=lfs -text
+*.raw filter=lfs diff=lfs merge=lfs -text
+# Audio files - compressed
+*.aac filter=lfs diff=lfs merge=lfs -text
+*.flac filter=lfs diff=lfs merge=lfs -text
+*.mp3 filter=lfs diff=lfs merge=lfs -text
+*.ogg filter=lfs diff=lfs merge=lfs -text
+*.wav filter=lfs diff=lfs merge=lfs -text
+# Image files - uncompressed
+*.bmp filter=lfs diff=lfs merge=lfs -text
+*.gif filter=lfs diff=lfs merge=lfs -text
+*.png filter=lfs diff=lfs merge=lfs -text
+*.tiff filter=lfs diff=lfs merge=lfs -text
+# Image files - compressed
+*.jpg filter=lfs diff=lfs merge=lfs -text
+*.jpeg filter=lfs diff=lfs merge=lfs -text
+*.webp filter=lfs diff=lfs merge=lfs -text
+# Video files - compressed
+*.mp4 filter=lfs diff=lfs merge=lfs -text
+*.webm filter=lfs diff=lfs merge=lfs -text
diff --git a/babel_272/README.md b/babel_272/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..12087fa3f307e58a398c5af32002cbabd97f9306
--- /dev/null
+++ b/babel_272/README.md
@@ -0,0 +1,34 @@
+---
+license: apache-2.0
+---
+## 🚀 Dataset Usage
+To facilitate researchers, we provide the processed 272-dim Motion Representation of [BABEL](https://babel.is.tue.mpg.de/) dataset in this Hugging Face repo.
+
+Motions are resampled into 30 FPS.
+
+NOTE: ``t2m_babel_mean_std/`` contains the joint mean and std of both HumanML3D and BABEL dataset for joint training of the proposed [Causal TAE](https://github.com/zju3dv/MotionStreamer/blob/main/TRAIN_causal_TAE.sh).
+
+❗️❗️❗️ The processed data is solely for academic purposes. Make sure you read through the [BABEL License](https://babel.is.tue.mpg.de/license.html).
+
+## 📖 Paper & Project Page & Code
+* [Arxiv Paper](https://arxiv.org/abs/2503.15451)
+* [Project Page](https://zju3dv.github.io/MotionStreamer/)
+* [Code](https://github.com/zju3dv/MotionStreamer)
+
+## 🏃 Processing script
+For more details of how to obtain the 272-dim motion representation, as well as other useful tools (e.g., Visualization and Conversion to BVH format), please refer to our [GitHub repo](https://github.com/Li-xingXiao/272-dim-Motion-Representation).
+
+## 🌹 Acknowledgement
+This repository builds upon the following awesome datasets and projects:
+- [BABEL](https://babel.is.tue.mpg.de/)
+
+## 🤝🏼 Citation
+If our project is helpful for your research, please consider citing :
+```
+@article{xiao2025motionstreamer,
+ title={MotionStreamer: Streaming Motion Generation via Diffusion-based Autoregressive Model in Causal Latent Space},
+ author={Xiao, Lixing and Lu, Shunlin and Pi, Huaijin and Fan, Ke and Pan, Liang and Zhou, Yueer and Feng, Ziyong and Zhou, Xiaowei and Peng, Sida and Wang, Jingbo},
+ journal={arXiv preprint arXiv:2503.15451},
+ year={2025}
+ }
+```
\ No newline at end of file
diff --git a/babel_272/motion_data.zip b/babel_272/motion_data.zip
new file mode 100644
index 0000000000000000000000000000000000000000..621ef98a7689970a807b98111f5bdaf902516c23
--- /dev/null
+++ b/babel_272/motion_data.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:03ecf1eefd24f828e0717dd0d7d05ad2ad139d79fd09d59baeab711895311525
+size 8093667470
diff --git a/babel_272/split/train.txt b/babel_272/split/train.txt
new file mode 100644
index 0000000000000000000000000000000000000000..347e20f369ed98344129b05be4117ecc76765c4d
--- /dev/null
+++ b/babel_272/split/train.txt
@@ -0,0 +1,71710 @@
+000000
+M000000
+000001
+M000001
+000002
+M000002
+000003
+M000003
+000004
+M000004
+000005
+M000005
+000006
+M000006
+000007
+M000007
+000008
+M000008
+000009
+M000009
+000010
+M000010
+000011
+M000011
+000012
+M000012
+000013
+M000013
+000014
+M000014
+000015
+M000015
+000016
+M000016
+000017
+M000017
+000018
+M000018
+000019
+M000019
+000020
+M000020
+000021
+M000021
+000022
+M000022
+000023
+M000023
+000024
+M000024
+000025
+M000025
+000026
+M000026
+000027
+M000027
+000028
+M000028
+000029
+M000029
+000030
+M000030
+000031
+M000031
+000032
+M000032
+000033
+M000033
+000034
+M000034
+000035
+M000035
+000036
+M000036
+000037
+M000037
+000038
+M000038
+000039
+M000039
+000040
+M000040
+000041
+M000041
+000042
+M000042
+000043
+M000043
+000044
+M000044
+000045
+M000045
+000046
+M000046
+000047
+M000047
+000048
+M000048
+000049
+M000049
+000050
+M000050
+000051
+M000051
+000052
+M000052
+000053
+M000053
+000054
+M000054
+000055
+M000055
+000056
+M000056
+000057
+M000057
+000058
+M000058
+000059
+M000059
+000060
+M000060
+000061
+M000061
+000062
+M000062
+000063
+M000063
+000064
+M000064
+000065
+M000065
+000066
+M000066
+000067
+M000067
+000068
+M000068
+000069
+M000069
+000070
+M000070
+000071
+M000071
+000072
+M000072
+000073
+M000073
+000074
+M000074
+000075
+M000075
+000076
+M000076
+000077
+M000077
+000078
+M000078
+000079
+M000079
+000080
+M000080
+000081
+M000081
+000082
+M000082
+000083
+M000083
+000084
+M000084
+000085
+M000085
+000086
+M000086
+000087
+M000087
+000088
+M000088
+000089
+M000089
+000090
+M000090
+000091
+M000091
+000092
+M000092
+000093
+M000093
+000094
+M000094
+000095
+M000095
+000096
+M000096
+000097
+M000097
+000098
+M000098
+000099
+M000099
+000100
+M000100
+000101
+M000101
+000102
+M000102
+000103
+M000103
+000104
+M000104
+000105
+M000105
+000106
+M000106
+000124
+M000124
+000125
+M000125
+000126
+M000126
+000127
+M000127
+000128
+M000128
+000129
+M000129
+000130
+M000130
+000131
+M000131
+000132
+M000132
+000133
+M000133
+000134
+M000134
+000135
+M000135
+000136
+M000136
+000137
+M000137
+000138
+M000138
+000139
+M000139
+000140
+M000140
+000141
+M000141
+000142
+M000142
+000143
+M000143
+000144
+M000144
+000145
+M000145
+000146
+M000146
+000147
+M000147
+000161
+M000161
+000162
+M000162
+000163
+M000163
+000164
+M000164
+000165
+M000165
+000166
+M000166
+000167
+M000167
+000168
+M000168
+000169
+M000169
+000170
+M000170
+000171
+M000171
+000172
+M000172
+000173
+M000173
+000174
+M000174
+000175
+M000175
+000176
+M000176
+000177
+M000177
+000178
+M000178
+000179
+M000179
+000180
+M000180
+000181
+M000181
+000182
+M000182
+000183
+M000183
+000184
+M000184
+000185
+M000185
+000186
+M000186
+000187
+M000187
+000188
+M000188
+000189
+M000189
+000190
+M000190
+000193
+M000193
+000194
+M000194
+000195
+M000195
+000196
+M000196
+000197
+M000197
+000198
+M000198
+000199
+M000199
+000200
+M000200
+000201
+M000201
+000202
+M000202
+000203
+M000203
+000204
+M000204
+000205
+M000205
+000206
+M000206
+000207
+M000207
+000208
+M000208
+000209
+M000209
+000210
+M000210
+000211
+M000211
+000212
+M000212
+000213
+M000213
+000214
+M000214
+000215
+M000215
+000216
+M000216
+000217
+M000217
+000218
+M000218
+000219
+M000219
+000220
+M000220
+000221
+M000221
+000222
+M000222
+000223
+M000223
+000224
+M000224
+000225
+M000225
+000226
+M000226
+000227
+M000227
+000228
+M000228
+000229
+M000229
+000230
+M000230
+000231
+M000231
+000232
+M000232
+000233
+M000233
+000234
+M000234
+000235
+M000235
+000236
+M000236
+000237
+M000237
+000238
+M000238
+000239
+M000239
+000240
+M000240
+000241
+M000241
+000242
+M000242
+000243
+M000243
+000244
+M000244
+000245
+M000245
+000246
+M000246
+000247
+M000247
+000248
+M000248
+000249
+M000249
+000250
+M000250
+000251
+M000251
+000252
+M000252
+000253
+M000253
+000254
+M000254
+000255
+M000255
+000256
+M000256
+000257
+M000257
+000258
+M000258
+000259
+M000259
+000260
+M000260
+000261
+M000261
+000262
+M000262
+000263
+M000263
+000264
+M000264
+000265
+M000265
+000266
+M000266
+000267
+M000267
+000268
+M000268
+000269
+M000269
+000270
+M000270
+000271
+M000271
+000272
+M000272
+000273
+M000273
+000274
+M000274
+000280
+M000280
+000281
+M000281
+000282
+M000282
+000283
+M000283
+000284
+M000284
+000285
+M000285
+000286
+M000286
+000287
+M000287
+000288
+M000288
+000289
+M000289
+000290
+M000290
+000291
+M000291
+000292
+M000292
+000293
+M000293
+000294
+M000294
+000308
+M000308
+000309
+M000309
+000310
+M000310
+000311
+M000311
+000312
+M000312
+000313
+M000313
+000314
+M000314
+000315
+M000315
+000316
+M000316
+000317
+M000317
+000318
+M000318
+000319
+M000319
+000320
+M000320
+000321
+M000321
+000322
+M000322
+000323
+M000323
+000324
+M000324
+000325
+M000325
+000326
+M000326
+000327
+M000327
+000328
+M000328
+000329
+M000329
+000330
+M000330
+000331
+M000331
+000332
+M000332
+000333
+M000333
+000334
+M000334
+000335
+M000335
+000336
+M000336
+000337
+M000337
+000338
+M000338
+000339
+M000339
+000340
+M000340
+000341
+M000341
+000342
+M000342
+000343
+M000343
+000344
+M000344
+000345
+M000345
+000346
+M000346
+000347
+M000347
+000348
+M000348
+000349
+M000349
+000350
+M000350
+000351
+M000351
+000352
+M000352
+000353
+M000353
+000354
+M000354
+000355
+M000355
+000356
+M000356
+000357
+M000357
+000358
+M000358
+000359
+M000359
+000360
+M000360
+000361
+M000361
+000362
+M000362
+000363
+M000363
+000364
+M000364
+000365
+M000365
+000366
+M000366
+000367
+M000367
+000368
+M000368
+000369
+M000369
+000370
+M000370
+000371
+M000371
+000372
+M000372
+000373
+M000373
+000374
+M000374
+000375
+M000375
+000376
+M000376
+000377
+M000377
+000378
+M000378
+000379
+M000379
+000380
+M000380
+000381
+M000381
+000382
+M000382
+000383
+M000383
+000384
+M000384
+000393
+M000393
+000394
+M000394
+000395
+M000395
+000396
+M000396
+000397
+M000397
+000398
+M000398
+000399
+M000399
+000400
+M000400
+000401
+M000401
+000402
+M000402
+000403
+M000403
+000404
+M000404
+000405
+M000405
+000406
+M000406
+000407
+M000407
+000408
+M000408
+000409
+M000409
+000410
+M000410
+000411
+M000411
+000412
+M000412
+000413
+M000413
+000414
+M000414
+000415
+M000415
+000416
+M000416
+000417
+M000417
+000418
+M000418
+000419
+M000419
+000432
+M000432
+000433
+M000433
+000434
+M000434
+000435
+M000435
+000436
+M000436
+000437
+M000437
+000438
+M000438
+000439
+M000439
+000440
+M000440
+000441
+M000441
+000442
+M000442
+000443
+M000443
+000444
+M000444
+000445
+M000445
+000446
+M000446
+000447
+M000447
+000448
+M000448
+000449
+M000449
+000450
+M000450
+000451
+M000451
+000452
+M000452
+000453
+M000453
+000454
+M000454
+000455
+M000455
+000456
+M000456
+000457
+M000457
+000458
+M000458
+000459
+M000459
+000460
+M000460
+000461
+M000461
+000462
+M000462
+000463
+M000463
+000464
+M000464
+000471
+M000471
+000472
+M000472
+000473
+M000473
+000474
+M000474
+000475
+M000475
+000476
+M000476
+000477
+M000477
+000478
+M000478
+000479
+M000479
+000480
+M000480
+000481
+M000481
+000482
+M000482
+000483
+M000483
+000484
+M000484
+000485
+M000485
+000486
+M000486
+000487
+M000487
+000488
+M000488
+000489
+M000489
+000490
+M000490
+000491
+M000491
+000492
+M000492
+000493
+M000493
+000494
+M000494
+000495
+M000495
+000496
+M000496
+000497
+M000497
+000498
+M000498
+000499
+M000499
+000500
+M000500
+000501
+M000501
+000502
+M000502
+000503
+M000503
+000509
+M000509
+000510
+M000510
+000511
+M000511
+000512
+M000512
+000513
+M000513
+000514
+M000514
+000521
+M000521
+000522
+M000522
+000523
+M000523
+000524
+M000524
+000525
+M000525
+000526
+M000526
+000527
+M000527
+000528
+M000528
+000529
+M000529
+000530
+M000530
+000531
+M000531
+000532
+M000532
+000533
+M000533
+000534
+M000534
+000535
+M000535
+000536
+M000536
+000537
+M000537
+000538
+M000538
+000539
+M000539
+000540
+M000540
+000541
+M000541
+000559
+M000559
+000560
+M000560
+000561
+M000561
+000562
+M000562
+000563
+M000563
+000564
+M000564
+000565
+M000565
+000566
+M000566
+000567
+M000567
+000599
+M000599
+000600
+M000600
+000601
+M000601
+000602
+M000602
+000603
+M000603
+000604
+M000604
+000605
+M000605
+000606
+M000606
+000607
+M000607
+000608
+M000608
+000609
+M000609
+000610
+M000610
+000611
+M000611
+000612
+M000612
+000613
+M000613
+000614
+M000614
+000642
+M000642
+000643
+M000643
+000644
+M000644
+000645
+M000645
+000646
+M000646
+000647
+M000647
+000648
+M000648
+000649
+M000649
+000650
+M000650
+000651
+M000651
+000652
+M000652
+000653
+M000653
+000654
+M000654
+000655
+M000655
+000656
+M000656
+000657
+M000657
+000658
+M000658
+000659
+M000659
+000660
+M000660
+000661
+M000661
+000662
+M000662
+000663
+M000663
+000664
+M000664
+000665
+M000665
+000666
+M000666
+000667
+M000667
+000668
+M000668
+000669
+M000669
+000670
+M000670
+000671
+M000671
+000672
+M000672
+000673
+M000673
+000674
+M000674
+000675
+M000675
+000676
+M000676
+000677
+M000677
+000678
+M000678
+000679
+M000679
+000680
+M000680
+000681
+M000681
+000682
+M000682
+000683
+M000683
+000684
+M000684
+000685
+M000685
+000686
+M000686
+000687
+M000687
+000688
+M000688
+000689
+M000689
+000690
+M000690
+000691
+M000691
+000692
+M000692
+000693
+M000693
+000695
+M000695
+000696
+M000696
+000697
+M000697
+000699
+M000699
+000700
+M000700
+000701
+M000701
+000702
+M000702
+000703
+M000703
+000705
+M000705
+000706
+M000706
+000707
+M000707
+000708
+M000708
+000709
+M000709
+000710
+M000710
+000711
+M000711
+000712
+M000712
+000713
+M000713
+000714
+M000714
+000715
+M000715
+000716
+M000716
+000717
+M000717
+000718
+M000718
+000719
+M000719
+000720
+M000720
+000721
+M000721
+000722
+M000722
+000723
+M000723
+000724
+M000724
+000725
+M000725
+000726
+M000726
+000727
+M000727
+000728
+M000728
+000729
+M000729
+000730
+M000730
+000737
+M000737
+000738
+M000738
+000739
+M000739
+000740
+M000740
+000741
+M000741
+000742
+M000742
+000743
+M000743
+000751
+M000751
+000752
+M000752
+000753
+M000753
+000754
+M000754
+000755
+M000755
+000756
+M000756
+000757
+M000757
+000758
+M000758
+000759
+M000759
+000760
+M000760
+000761
+M000761
+000762
+M000762
+000763
+M000763
+000764
+M000764
+000765
+M000765
+000766
+M000766
+000767
+M000767
+000768
+M000768
+000769
+M000769
+000770
+M000770
+000771
+M000771
+000772
+M000772
+000773
+M000773
+000774
+M000774
+000775
+M000775
+000776
+M000776
+000777
+M000777
+000778
+M000778
+000779
+M000779
+000780
+M000780
+000781
+M000781
+000782
+M000782
+000783
+M000783
+000784
+M000784
+000785
+M000785
+000786
+M000786
+000787
+M000787
+000788
+M000788
+000789
+M000789
+000790
+M000790
+000791
+M000791
+000792
+M000792
+000793
+M000793
+000794
+M000794
+000795
+M000795
+000796
+M000796
+000797
+M000797
+000798
+M000798
+000799
+M000799
+000800
+M000800
+000801
+M000801
+000802
+M000802
+000803
+M000803
+000804
+M000804
+000805
+M000805
+000806
+M000806
+000807
+M000807
+000808
+M000808
+000809
+M000809
+000810
+M000810
+000811
+M000811
+000812
+M000812
+000813
+M000813
+000814
+M000814
+000815
+M000815
+000816
+M000816
+000817
+M000817
+000818
+M000818
+000819
+M000819
+000820
+M000820
+000821
+M000821
+000822
+M000822
+000823
+M000823
+000824
+M000824
+000825
+M000825
+000826
+M000826
+000827
+M000827
+000828
+M000828
+000829
+M000829
+000830
+M000830
+000831
+M000831
+000832
+M000832
+000833
+M000833
+000834
+M000834
+000835
+M000835
+000836
+M000836
+000837
+M000837
+000838
+M000838
+000854
+M000854
+000855
+M000855
+000856
+M000856
+000857
+M000857
+000858
+M000858
+000859
+M000859
+000860
+M000860
+000861
+M000861
+000862
+M000862
+000863
+M000863
+000864
+M000864
+000865
+M000865
+000866
+M000866
+000867
+M000867
+000868
+M000868
+000869
+M000869
+000870
+M000870
+000871
+M000871
+000872
+M000872
+000873
+M000873
+000874
+M000874
+000875
+M000875
+000876
+M000876
+000877
+M000877
+000878
+M000878
+000879
+M000879
+000880
+M000880
+000881
+M000881
+000882
+M000882
+000883
+M000883
+000884
+M000884
+000885
+M000885
+000886
+M000886
+000887
+M000887
+000888
+M000888
+000889
+M000889
+000890
+M000890
+000891
+M000891
+000892
+M000892
+000893
+M000893
+000894
+M000894
+000895
+M000895
+000896
+M000896
+000897
+M000897
+000898
+M000898
+000899
+M000899
+000900
+M000900
+000901
+M000901
+000902
+M000902
+000903
+M000903
+000904
+M000904
+000905
+M000905
+000906
+M000906
+000907
+M000907
+000908
+M000908
+000909
+M000909
+000910
+M000910
+000911
+M000911
+000912
+M000912
+000915
+M000915
+000916
+M000916
+000917
+M000917
+000918
+M000918
+000919
+M000919
+000920
+M000920
+000921
+M000921
+000922
+M000922
+000923
+M000923
+000924
+M000924
+000925
+M000925
+000926
+M000926
+000927
+M000927
+000928
+M000928
+000929
+M000929
+000930
+M000930
+000931
+M000931
+000932
+M000932
+000933
+M000933
+000934
+M000934
+000935
+M000935
+000936
+M000936
+000937
+M000937
+000938
+M000938
+000939
+M000939
+000940
+M000940
+000941
+M000941
+000942
+M000942
+000943
+M000943
+000944
+M000944
+000956
+M000956
+000957
+M000957
+000958
+M000958
+000959
+M000959
+000960
+M000960
+000961
+M000961
+000962
+M000962
+000963
+M000963
+000964
+M000964
+000965
+M000965
+000966
+M000966
+000967
+M000967
+000968
+M000968
+000969
+M000969
+000970
+M000970
+000971
+M000971
+000972
+M000972
+000973
+M000973
+000974
+M000974
+000975
+M000975
+000976
+M000976
+000977
+M000977
+000978
+M000978
+000979
+M000979
+000980
+M000980
+000981
+M000981
+000982
+M000982
+000983
+M000983
+000984
+M000984
+000985
+M000985
+000986
+M000986
+000988
+M000988
+000989
+M000989
+000990
+M000990
+000991
+M000991
+000992
+M000992
+000993
+M000993
+000994
+M000994
+000995
+M000995
+000996
+M000996
+000997
+M000997
+000998
+M000998
+000999
+M000999
+001000
+M001000
+001001
+M001001
+001002
+M001002
+001003
+M001003
+001004
+M001004
+001005
+M001005
+001006
+M001006
+001007
+M001007
+001008
+M001008
+001009
+M001009
+001010
+M001010
+001011
+M001011
+001012
+M001012
+001013
+M001013
+001014
+M001014
+001015
+M001015
+001016
+M001016
+001017
+M001017
+001018
+M001018
+001019
+M001019
+001020
+M001020
+001021
+M001021
+001027
+M001027
+001028
+M001028
+001029
+M001029
+001030
+M001030
+001031
+M001031
+001032
+M001032
+001033
+M001033
+001034
+M001034
+001035
+M001035
+001036
+M001036
+001037
+M001037
+001038
+M001038
+001039
+M001039
+001040
+M001040
+001041
+M001041
+001042
+M001042
+001043
+M001043
+001044
+M001044
+001045
+M001045
+001046
+M001046
+001047
+M001047
+001048
+M001048
+001058
+M001058
+001059
+M001059
+001060
+M001060
+001061
+M001061
+001062
+M001062
+001063
+M001063
+001064
+M001064
+001065
+M001065
+001066
+M001066
+001067
+M001067
+001068
+M001068
+001069
+M001069
+001070
+M001070
+001071
+M001071
+001072
+M001072
+001073
+M001073
+001074
+M001074
+001075
+M001075
+001076
+M001076
+001077
+M001077
+001078
+M001078
+001079
+M001079
+001080
+M001080
+001081
+M001081
+001082
+M001082
+001083
+M001083
+001084
+M001084
+001085
+M001085
+001086
+M001086
+001087
+M001087
+001088
+M001088
+001089
+M001089
+001090
+M001090
+001091
+M001091
+001092
+M001092
+001093
+M001093
+001094
+M001094
+001124
+M001124
+001125
+M001125
+001126
+M001126
+001127
+M001127
+001128
+M001128
+001129
+M001129
+001130
+M001130
+001131
+M001131
+001132
+M001132
+001133
+M001133
+001134
+M001134
+001135
+M001135
+001136
+M001136
+001137
+M001137
+001138
+M001138
+001139
+M001139
+001140
+M001140
+001141
+M001141
+001142
+M001142
+001143
+M001143
+001144
+M001144
+001145
+M001145
+001146
+M001146
+001147
+M001147
+001148
+M001148
+001149
+M001149
+001150
+M001150
+001151
+M001151
+001152
+M001152
+001153
+M001153
+001154
+M001154
+001155
+M001155
+001156
+M001156
+001157
+M001157
+001158
+M001158
+001159
+M001159
+001160
+M001160
+001161
+M001161
+001162
+M001162
+001163
+M001163
+001164
+M001164
+001165
+M001165
+001166
+M001166
+001167
+M001167
+001168
+M001168
+001169
+M001169
+001170
+M001170
+001171
+M001171
+001172
+M001172
+001173
+M001173
+001174
+M001174
+001175
+M001175
+001176
+M001176
+001177
+M001177
+001178
+M001178
+001179
+M001179
+001180
+M001180
+001181
+M001181
+001182
+M001182
+001183
+M001183
+001184
+M001184
+001185
+M001185
+001186
+M001186
+001187
+M001187
+001188
+M001188
+001189
+M001189
+001190
+M001190
+001191
+M001191
+001192
+M001192
+001193
+M001193
+001194
+M001194
+001195
+M001195
+001196
+M001196
+001197
+M001197
+001198
+M001198
+001199
+M001199
+001200
+M001200
+001201
+M001201
+001202
+M001202
+001203
+M001203
+001204
+M001204
+001205
+M001205
+001206
+M001206
+001207
+M001207
+001224
+M001224
+001225
+M001225
+001226
+M001226
+001227
+M001227
+001228
+M001228
+001238
+M001238
+001239
+M001239
+001240
+M001240
+001241
+M001241
+001242
+M001242
+001243
+M001243
+001244
+M001244
+001245
+M001245
+001246
+M001246
+001247
+M001247
+001248
+M001248
+001249
+M001249
+001250
+M001250
+001251
+M001251
+001252
+M001252
+001253
+M001253
+001254
+M001254
+001255
+M001255
+001256
+M001256
+001257
+M001257
+001258
+M001258
+001259
+M001259
+001260
+M001260
+001261
+M001261
+001262
+M001262
+001263
+M001263
+001264
+M001264
+001265
+M001265
+001266
+M001266
+001267
+M001267
+001268
+M001268
+001269
+M001269
+001270
+M001270
+001271
+M001271
+001272
+M001272
+001273
+M001273
+001275
+M001275
+001276
+M001276
+001277
+M001277
+001278
+M001278
+001279
+M001279
+001280
+M001280
+001281
+M001281
+001282
+M001282
+001283
+M001283
+001290
+M001290
+001291
+M001291
+001292
+M001292
+001293
+M001293
+001294
+M001294
+001295
+M001295
+001296
+M001296
+001297
+M001297
+001298
+M001298
+001299
+M001299
+001300
+M001300
+001331
+M001331
+001332
+M001332
+001333
+M001333
+001334
+M001334
+001335
+M001335
+001336
+M001336
+001337
+M001337
+001338
+M001338
+001339
+M001339
+001340
+M001340
+001341
+M001341
+001342
+M001342
+001343
+M001343
+001344
+M001344
+001345
+M001345
+001346
+M001346
+001347
+M001347
+001348
+M001348
+001349
+M001349
+001350
+M001350
+001351
+M001351
+001352
+M001352
+001353
+M001353
+001354
+M001354
+001355
+M001355
+001356
+M001356
+001357
+M001357
+001358
+M001358
+001359
+M001359
+001360
+M001360
+001361
+M001361
+001362
+M001362
+001363
+M001363
+001364
+M001364
+001365
+M001365
+001372
+M001372
+001373
+M001373
+001374
+M001374
+001375
+M001375
+001376
+M001376
+001377
+M001377
+001378
+M001378
+001379
+M001379
+001380
+M001380
+001381
+M001381
+001382
+M001382
+001383
+M001383
+001384
+M001384
+001385
+M001385
+001386
+M001386
+001387
+M001387
+001388
+M001388
+001389
+M001389
+001390
+M001390
+001391
+M001391
+001392
+M001392
+001393
+M001393
+001394
+M001394
+001395
+M001395
+001396
+M001396
+001397
+M001397
+001398
+M001398
+001420
+M001420
+001421
+M001421
+001422
+M001422
+001423
+M001423
+001424
+M001424
+001425
+M001425
+001426
+M001426
+001427
+M001427
+001428
+M001428
+001429
+M001429
+001430
+M001430
+001431
+M001431
+001432
+M001432
+001433
+M001433
+001434
+M001434
+001435
+M001435
+001436
+M001436
+001454
+M001454
+001455
+M001455
+001456
+M001456
+001457
+M001457
+001458
+M001458
+001459
+M001459
+001460
+M001460
+001461
+M001461
+001462
+M001462
+001463
+M001463
+001464
+M001464
+001465
+M001465
+001466
+M001466
+001473
+M001473
+001474
+M001474
+001475
+M001475
+001476
+M001476
+001477
+M001477
+001478
+M001478
+001479
+M001479
+001480
+M001480
+001481
+M001481
+001482
+M001482
+001483
+M001483
+001484
+M001484
+001485
+M001485
+001486
+M001486
+001487
+M001487
+001488
+M001488
+001489
+M001489
+001490
+M001490
+001491
+M001491
+001492
+M001492
+001502
+M001502
+001503
+M001503
+001504
+M001504
+001505
+M001505
+001506
+M001506
+001507
+M001507
+001508
+M001508
+001509
+M001509
+001510
+M001510
+001511
+M001511
+001512
+M001512
+001513
+M001513
+001514
+M001514
+001515
+M001515
+001516
+M001516
+001517
+M001517
+001519
+M001519
+001520
+M001520
+001521
+M001521
+001523
+M001523
+001524
+M001524
+001525
+M001525
+001526
+M001526
+001527
+M001527
+001528
+M001528
+001529
+M001529
+001530
+M001530
+001531
+M001531
+001532
+M001532
+001533
+M001533
+001534
+M001534
+001535
+M001535
+001536
+M001536
+001537
+M001537
+001538
+M001538
+001539
+M001539
+001540
+M001540
+001541
+M001541
+001542
+M001542
+001543
+M001543
+001544
+M001544
+001545
+M001545
+001557
+M001557
+001558
+M001558
+001559
+M001559
+001560
+M001560
+001646
+M001646
+001647
+M001647
+001648
+M001648
+001649
+M001649
+001650
+M001650
+001651
+M001651
+001652
+M001652
+001653
+M001653
+001654
+M001654
+001655
+M001655
+001656
+M001656
+001657
+M001657
+001658
+M001658
+001659
+M001659
+001660
+M001660
+001661
+M001661
+001669
+M001669
+001670
+M001670
+001671
+M001671
+001672
+M001672
+001673
+M001673
+001674
+M001674
+001675
+M001675
+001676
+M001676
+001677
+M001677
+001678
+M001678
+001679
+M001679
+001680
+M001680
+001681
+M001681
+001682
+M001682
+001683
+M001683
+001684
+M001684
+001685
+M001685
+001686
+M001686
+001687
+M001687
+001688
+M001688
+001689
+M001689
+001690
+M001690
+001691
+M001691
+001692
+M001692
+001693
+M001693
+001694
+M001694
+001695
+M001695
+001696
+M001696
+001697
+M001697
+001698
+M001698
+001699
+M001699
+001700
+M001700
+001701
+M001701
+001702
+M001702
+001703
+M001703
+001704
+M001704
+001705
+M001705
+001706
+M001706
+001707
+M001707
+001708
+M001708
+001709
+M001709
+001710
+M001710
+001711
+M001711
+001712
+M001712
+001713
+M001713
+001714
+M001714
+001715
+M001715
+001716
+M001716
+001717
+M001717
+001718
+M001718
+001719
+M001719
+001720
+M001720
+001721
+M001721
+001722
+M001722
+001723
+M001723
+001724
+M001724
+001725
+M001725
+001726
+M001726
+001727
+M001727
+001728
+M001728
+001729
+M001729
+001730
+M001730
+001731
+M001731
+001732
+M001732
+001733
+M001733
+001734
+M001734
+001735
+M001735
+001736
+M001736
+001737
+M001737
+001738
+M001738
+001739
+M001739
+001740
+M001740
+001741
+M001741
+001742
+M001742
+001743
+M001743
+001744
+M001744
+001745
+M001745
+001746
+M001746
+001747
+M001747
+001748
+M001748
+001749
+M001749
+001750
+M001750
+001751
+M001751
+001752
+M001752
+001753
+M001753
+001754
+M001754
+001755
+M001755
+001756
+M001756
+001757
+M001757
+001758
+M001758
+001759
+M001759
+001760
+M001760
+001761
+M001761
+001767
+M001767
+001768
+M001768
+001769
+M001769
+001770
+M001770
+001771
+M001771
+001772
+M001772
+001773
+M001773
+001774
+M001774
+001775
+M001775
+001776
+M001776
+001777
+M001777
+001778
+M001778
+001779
+M001779
+001780
+M001780
+001781
+M001781
+001782
+M001782
+001783
+M001783
+001784
+M001784
+001785
+M001785
+001786
+M001786
+001787
+M001787
+001788
+M001788
+001789
+M001789
+001790
+M001790
+001791
+M001791
+001792
+M001792
+001793
+M001793
+001794
+M001794
+001795
+M001795
+001796
+M001796
+001797
+M001797
+001798
+M001798
+001799
+M001799
+001800
+M001800
+001801
+M001801
+001802
+M001802
+001803
+M001803
+001804
+M001804
+001805
+M001805
+001806
+M001806
+001807
+M001807
+001808
+M001808
+001809
+M001809
+001810
+M001810
+001811
+M001811
+001812
+M001812
+001813
+M001813
+001814
+M001814
+001815
+M001815
+001816
+M001816
+001817
+M001817
+001818
+M001818
+001819
+M001819
+001820
+M001820
+001821
+M001821
+001822
+M001822
+001823
+M001823
+001824
+M001824
+001825
+M001825
+001826
+M001826
+001827
+M001827
+001828
+M001828
+001829
+M001829
+001830
+M001830
+001831
+M001831
+001832
+M001832
+001833
+M001833
+001834
+M001834
+001835
+M001835
+001836
+M001836
+001837
+M001837
+001838
+M001838
+001839
+M001839
+001840
+M001840
+001841
+M001841
+001842
+M001842
+001843
+M001843
+001844
+M001844
+001845
+M001845
+001846
+M001846
+001847
+M001847
+001848
+M001848
+001849
+M001849
+001850
+M001850
+001851
+M001851
+001852
+M001852
+001853
+M001853
+001854
+M001854
+001855
+M001855
+001856
+M001856
+001857
+M001857
+001858
+M001858
+001859
+M001859
+001860
+M001860
+001861
+M001861
+001862
+M001862
+001863
+M001863
+001864
+M001864
+001865
+M001865
+001866
+M001866
+001867
+M001867
+001868
+M001868
+001869
+M001869
+001870
+M001870
+001871
+M001871
+001872
+M001872
+001873
+M001873
+001874
+M001874
+001875
+M001875
+001876
+M001876
+001877
+M001877
+001878
+M001878
+001879
+M001879
+001880
+M001880
+001881
+M001881
+001882
+M001882
+001883
+M001883
+001884
+M001884
+001885
+M001885
+001886
+M001886
+001887
+M001887
+001888
+M001888
+001889
+M001889
+001890
+M001890
+001891
+M001891
+001892
+M001892
+001893
+M001893
+001894
+M001894
+001895
+M001895
+001896
+M001896
+001897
+M001897
+001898
+M001898
+001899
+M001899
+001900
+M001900
+001901
+M001901
+001902
+M001902
+001903
+M001903
+001904
+M001904
+001905
+M001905
+001906
+M001906
+001907
+M001907
+001908
+M001908
+001909
+M001909
+001910
+M001910
+001928
+M001928
+001929
+M001929
+001930
+M001930
+001931
+M001931
+001932
+M001932
+001933
+M001933
+001934
+M001934
+001935
+M001935
+001936
+M001936
+001937
+M001937
+001938
+M001938
+001939
+M001939
+001940
+M001940
+001941
+M001941
+001942
+M001942
+001943
+M001943
+001944
+M001944
+001945
+M001945
+001946
+M001946
+001947
+M001947
+001948
+M001948
+001949
+M001949
+001950
+M001950
+001951
+M001951
+001952
+M001952
+001953
+M001953
+001954
+M001954
+001955
+M001955
+001956
+M001956
+001957
+M001957
+001958
+M001958
+001959
+M001959
+001960
+M001960
+001961
+M001961
+001962
+M001962
+001963
+M001963
+001964
+M001964
+001965
+M001965
+001966
+M001966
+001967
+M001967
+001968
+M001968
+001969
+M001969
+001970
+M001970
+001971
+M001971
+001972
+M001972
+001973
+M001973
+001974
+M001974
+001975
+M001975
+001976
+M001976
+001977
+M001977
+001978
+M001978
+001979
+M001979
+001980
+M001980
+001981
+M001981
+001982
+M001982
+001983
+M001983
+001984
+M001984
+001985
+M001985
+001986
+M001986
+001987
+M001987
+001988
+M001988
+001989
+M001989
+001990
+M001990
+001991
+M001991
+001992
+M001992
+001993
+M001993
+001994
+M001994
+001995
+M001995
+001996
+M001996
+001997
+M001997
+001998
+M001998
+001999
+M001999
+002000
+M002000
+002001
+M002001
+002002
+M002002
+002003
+M002003
+002005
+M002005
+002006
+M002006
+002007
+M002007
+002008
+M002008
+002009
+M002009
+002010
+M002010
+002011
+M002011
+002012
+M002012
+002013
+M002013
+002014
+M002014
+002015
+M002015
+002016
+M002016
+002017
+M002017
+002018
+M002018
+002019
+M002019
+002020
+M002020
+002021
+M002021
+002022
+M002022
+002023
+M002023
+002024
+M002024
+002025
+M002025
+002026
+M002026
+002027
+M002027
+002028
+M002028
+002029
+M002029
+002106
+M002106
+002107
+M002107
+002108
+M002108
+002109
+M002109
+002110
+M002110
+002111
+M002111
+002112
+M002112
+002113
+M002113
+002114
+M002114
+002115
+M002115
+002139
+M002139
+002140
+M002140
+002141
+M002141
+002142
+M002142
+002143
+M002143
+002144
+M002144
+002145
+M002145
+002146
+M002146
+002147
+M002147
+002148
+M002148
+002149
+M002149
+002150
+M002150
+002151
+M002151
+002152
+M002152
+002153
+M002153
+002154
+M002154
+002155
+M002155
+002156
+M002156
+002157
+M002157
+002158
+M002158
+002159
+M002159
+002160
+M002160
+002161
+M002161
+002162
+M002162
+002163
+M002163
+002164
+M002164
+002165
+M002165
+002166
+M002166
+002167
+M002167
+002168
+M002168
+002169
+M002169
+002170
+M002170
+002171
+M002171
+002172
+M002172
+002173
+M002173
+002177
+M002177
+002178
+M002178
+002179
+M002179
+002180
+M002180
+002181
+M002181
+002182
+M002182
+002183
+M002183
+002184
+M002184
+002185
+M002185
+002186
+M002186
+002187
+M002187
+002188
+M002188
+002189
+M002189
+002199
+M002199
+002200
+M002200
+002201
+M002201
+002207
+M002207
+002208
+M002208
+002209
+M002209
+002210
+M002210
+002211
+M002211
+002212
+M002212
+002213
+M002213
+002214
+M002214
+002215
+M002215
+002216
+M002216
+002217
+M002217
+002218
+M002218
+002219
+M002219
+002220
+M002220
+002221
+M002221
+002222
+M002222
+002223
+M002223
+002224
+M002224
+002225
+M002225
+002226
+M002226
+002227
+M002227
+002228
+M002228
+002229
+M002229
+002230
+M002230
+002231
+M002231
+002232
+M002232
+002233
+M002233
+002234
+M002234
+002235
+M002235
+002236
+M002236
+002237
+M002237
+002238
+M002238
+002239
+M002239
+002240
+M002240
+002241
+M002241
+002242
+M002242
+002243
+M002243
+002244
+M002244
+002245
+M002245
+002246
+M002246
+002247
+M002247
+002248
+M002248
+002249
+M002249
+002250
+M002250
+002251
+M002251
+002252
+M002252
+002253
+M002253
+002254
+M002254
+002255
+M002255
+002256
+M002256
+002257
+M002257
+002258
+M002258
+002259
+M002259
+002260
+M002260
+002261
+M002261
+002262
+M002262
+002263
+M002263
+002264
+M002264
+002265
+M002265
+002266
+M002266
+002267
+M002267
+002268
+M002268
+002269
+M002269
+002270
+M002270
+002271
+M002271
+002272
+M002272
+002273
+M002273
+002274
+M002274
+002275
+M002275
+002276
+M002276
+002277
+M002277
+002281
+M002281
+002282
+M002282
+002283
+M002283
+002284
+M002284
+002285
+M002285
+002286
+M002286
+002287
+M002287
+002288
+M002288
+002289
+M002289
+002290
+M002290
+002291
+M002291
+002292
+M002292
+002293
+M002293
+002294
+M002294
+002295
+M002295
+002296
+M002296
+002297
+M002297
+002298
+M002298
+002299
+M002299
+002300
+M002300
+002301
+M002301
+002302
+M002302
+002303
+M002303
+002304
+M002304
+002305
+M002305
+002306
+M002306
+002307
+M002307
+002308
+M002308
+002309
+M002309
+002310
+M002310
+002311
+M002311
+002312
+M002312
+002313
+M002313
+002314
+M002314
+002315
+M002315
+002316
+M002316
+002317
+M002317
+002318
+M002318
+002319
+M002319
+002320
+M002320
+002321
+M002321
+002322
+M002322
+002323
+M002323
+002324
+M002324
+002325
+M002325
+002326
+M002326
+002327
+M002327
+002328
+M002328
+002329
+M002329
+002330
+M002330
+002331
+M002331
+002332
+M002332
+002333
+M002333
+002334
+M002334
+002335
+M002335
+002336
+M002336
+002337
+M002337
+002338
+M002338
+002339
+M002339
+002340
+M002340
+002341
+M002341
+002342
+M002342
+002343
+M002343
+002344
+M002344
+002345
+M002345
+002346
+M002346
+002347
+M002347
+002348
+M002348
+002349
+M002349
+002350
+M002350
+002351
+M002351
+002382
+M002382
+002383
+M002383
+002384
+M002384
+002385
+M002385
+002386
+M002386
+002387
+M002387
+002388
+M002388
+002389
+M002389
+002390
+M002390
+002391
+M002391
+002392
+M002392
+002393
+M002393
+002394
+M002394
+002395
+M002395
+002396
+M002396
+002397
+M002397
+002398
+M002398
+002399
+M002399
+002400
+M002400
+002401
+M002401
+002402
+M002402
+002403
+M002403
+002404
+M002404
+002405
+M002405
+002406
+M002406
+002407
+M002407
+002408
+M002408
+002409
+M002409
+002410
+M002410
+002411
+M002411
+002412
+M002412
+002413
+M002413
+002414
+M002414
+002415
+M002415
+002416
+M002416
+002417
+M002417
+002418
+M002418
+002419
+M002419
+002420
+M002420
+002421
+M002421
+002432
+M002432
+002433
+M002433
+002434
+M002434
+002435
+M002435
+002436
+M002436
+002437
+M002437
+002438
+M002438
+002439
+M002439
+002440
+M002440
+002441
+M002441
+002442
+M002442
+002443
+M002443
+002444
+M002444
+002445
+M002445
+002446
+M002446
+002468
+M002468
+002469
+M002469
+002470
+M002470
+002471
+M002471
+002472
+M002472
+002473
+M002473
+002474
+M002474
+002475
+M002475
+002476
+M002476
+002477
+M002477
+002478
+M002478
+002479
+M002479
+002480
+M002480
+002481
+M002481
+002482
+M002482
+002483
+M002483
+002484
+M002484
+002485
+M002485
+002486
+M002486
+002487
+M002487
+002488
+M002488
+002489
+M002489
+002490
+M002490
+002491
+M002491
+002492
+M002492
+002493
+M002493
+002494
+M002494
+002495
+M002495
+002496
+M002496
+002497
+M002497
+002498
+M002498
+002499
+M002499
+002500
+M002500
+002501
+M002501
+002502
+M002502
+002503
+M002503
+002504
+M002504
+002505
+M002505
+002506
+M002506
+002507
+M002507
+002508
+M002508
+002509
+M002509
+002510
+M002510
+002511
+M002511
+002512
+M002512
+002513
+M002513
+002514
+M002514
+002515
+M002515
+002516
+M002516
+002517
+M002517
+002518
+M002518
+002519
+M002519
+002520
+M002520
+002521
+M002521
+002522
+M002522
+002523
+M002523
+002524
+M002524
+002525
+M002525
+002526
+M002526
+002527
+M002527
+002528
+M002528
+002529
+M002529
+002530
+M002530
+002531
+M002531
+002532
+M002532
+002533
+M002533
+002534
+M002534
+002535
+M002535
+002536
+M002536
+002537
+M002537
+002538
+M002538
+002539
+M002539
+002540
+M002540
+002541
+M002541
+002542
+M002542
+002543
+M002543
+002544
+M002544
+002545
+M002545
+002546
+M002546
+002547
+M002547
+002548
+M002548
+002549
+M002549
+002550
+M002550
+002551
+M002551
+002552
+M002552
+002553
+M002553
+002554
+M002554
+002555
+M002555
+002556
+M002556
+002557
+M002557
+002558
+M002558
+002559
+M002559
+002560
+M002560
+002561
+M002561
+002562
+M002562
+002563
+M002563
+002564
+M002564
+002565
+M002565
+002566
+M002566
+002577
+M002577
+002578
+M002578
+002579
+M002579
+002580
+M002580
+002581
+M002581
+002582
+M002582
+002583
+M002583
+002584
+M002584
+002585
+M002585
+002586
+M002586
+002587
+M002587
+002588
+M002588
+002589
+M002589
+002590
+M002590
+002591
+M002591
+002592
+M002592
+002593
+M002593
+002594
+M002594
+002595
+M002595
+002596
+M002596
+002597
+M002597
+002598
+M002598
+002599
+M002599
+002600
+M002600
+002601
+M002601
+002602
+M002602
+002603
+M002603
+002604
+M002604
+002605
+M002605
+002606
+M002606
+002607
+M002607
+002608
+M002608
+002609
+M002609
+002610
+M002610
+002611
+M002611
+002612
+M002612
+002613
+M002613
+002614
+M002614
+002615
+M002615
+002616
+M002616
+002617
+M002617
+002618
+M002618
+002619
+M002619
+002620
+M002620
+002621
+M002621
+002622
+M002622
+002623
+M002623
+002624
+M002624
+002625
+M002625
+002629
+M002629
+002630
+M002630
+002631
+M002631
+002632
+M002632
+002633
+M002633
+002634
+M002634
+002635
+M002635
+002636
+M002636
+002637
+M002637
+002638
+M002638
+002639
+M002639
+002640
+M002640
+002641
+M002641
+002649
+M002649
+002650
+M002650
+002651
+M002651
+002652
+M002652
+002653
+M002653
+002654
+M002654
+002655
+M002655
+002656
+M002656
+002657
+M002657
+002658
+M002658
+002659
+M002659
+002660
+M002660
+002661
+M002661
+002662
+M002662
+002663
+M002663
+002664
+M002664
+002665
+M002665
+002666
+M002666
+002667
+M002667
+002668
+M002668
+002669
+M002669
+002670
+M002670
+002671
+M002671
+002672
+M002672
+002673
+M002673
+002674
+M002674
+002675
+M002675
+002676
+M002676
+002677
+M002677
+002678
+M002678
+002679
+M002679
+002680
+M002680
+002681
+M002681
+002682
+M002682
+002683
+M002683
+002684
+M002684
+002685
+M002685
+002686
+M002686
+002687
+M002687
+002688
+M002688
+002689
+M002689
+002690
+M002690
+002691
+M002691
+002692
+M002692
+002693
+M002693
+002720
+M002720
+002721
+M002721
+002722
+M002722
+002723
+M002723
+002724
+M002724
+002725
+M002725
+002726
+M002726
+002734
+M002734
+002735
+M002735
+002736
+M002736
+002737
+M002737
+002738
+M002738
+002739
+M002739
+002740
+M002740
+002741
+M002741
+002742
+M002742
+002743
+M002743
+002744
+M002744
+002745
+M002745
+002746
+M002746
+002747
+M002747
+002748
+M002748
+002749
+M002749
+002765
+M002765
+002766
+M002766
+002767
+M002767
+002768
+M002768
+002769
+M002769
+002770
+M002770
+002771
+M002771
+002772
+M002772
+002773
+M002773
+002774
+M002774
+002792
+M002792
+002793
+M002793
+002794
+M002794
+002795
+M002795
+002796
+M002796
+002797
+M002797
+002798
+M002798
+002799
+M002799
+002800
+M002800
+002801
+M002801
+002802
+M002802
+002803
+M002803
+002804
+M002804
+002805
+M002805
+002806
+M002806
+002813
+M002813
+002814
+M002814
+002815
+M002815
+002816
+M002816
+002817
+M002817
+002818
+M002818
+002819
+M002819
+002820
+M002820
+002821
+M002821
+002822
+M002822
+002823
+M002823
+002824
+M002824
+002828
+M002828
+002829
+M002829
+002830
+M002830
+002831
+M002831
+002832
+M002832
+002833
+M002833
+002834
+M002834
+002835
+M002835
+002836
+M002836
+002837
+M002837
+002838
+M002838
+002839
+M002839
+002840
+M002840
+002841
+M002841
+002842
+M002842
+002843
+M002843
+002844
+M002844
+002845
+M002845
+002846
+M002846
+002847
+M002847
+002849
+M002849
+002850
+M002850
+002851
+M002851
+002852
+M002852
+002853
+M002853
+002854
+M002854
+002855
+M002855
+002856
+M002856
+002857
+M002857
+002858
+M002858
+002859
+M002859
+002860
+M002860
+002861
+M002861
+002862
+M002862
+002863
+M002863
+002864
+M002864
+002865
+M002865
+002866
+M002866
+002867
+M002867
+002868
+M002868
+002869
+M002869
+002870
+M002870
+002871
+M002871
+002872
+M002872
+002873
+M002873
+002885
+M002885
+002886
+M002886
+002887
+M002887
+002888
+M002888
+002889
+M002889
+002890
+M002890
+002891
+M002891
+002892
+M002892
+002893
+M002893
+002894
+M002894
+002895
+M002895
+002896
+M002896
+002897
+M002897
+002898
+M002898
+002899
+M002899
+002900
+M002900
+002901
+M002901
+002902
+M002902
+002903
+M002903
+002904
+M002904
+002905
+M002905
+002906
+M002906
+002907
+M002907
+002908
+M002908
+002909
+M002909
+002910
+M002910
+002911
+M002911
+002912
+M002912
+002913
+M002913
+002914
+M002914
+002915
+M002915
+002916
+M002916
+002917
+M002917
+002918
+M002918
+002919
+M002919
+002920
+M002920
+002921
+M002921
+002922
+M002922
+002923
+M002923
+002924
+M002924
+002925
+M002925
+002926
+M002926
+002959
+M002959
+002960
+M002960
+002961
+M002961
+002962
+M002962
+002963
+M002963
+002964
+M002964
+002965
+M002965
+002966
+M002966
+002967
+M002967
+002968
+M002968
+002969
+M002969
+002993
+M002993
+002994
+M002994
+002995
+M002995
+002996
+M002996
+002997
+M002997
+002998
+M002998
+002999
+M002999
+003000
+M003000
+003001
+M003001
+003002
+M003002
+003003
+M003003
+003004
+M003004
+003005
+M003005
+003013
+M003013
+003014
+M003014
+003015
+M003015
+003016
+M003016
+003017
+M003017
+003018
+M003018
+003019
+M003019
+003020
+M003020
+003021
+M003021
+003022
+M003022
+003023
+M003023
+003024
+M003024
+003025
+M003025
+003026
+M003026
+003031
+M003031
+003032
+M003032
+003033
+M003033
+003034
+M003034
+003035
+M003035
+003036
+M003036
+003037
+M003037
+003038
+M003038
+003039
+M003039
+003040
+M003040
+003041
+M003041
+003042
+M003042
+003043
+M003043
+003044
+M003044
+003045
+M003045
+003046
+M003046
+003047
+M003047
+003048
+M003048
+003049
+M003049
+003056
+M003056
+003057
+M003057
+003058
+M003058
+003059
+M003059
+003060
+M003060
+003061
+M003061
+003067
+M003067
+003068
+M003068
+003069
+M003069
+003070
+M003070
+003071
+M003071
+003072
+M003072
+003073
+M003073
+003074
+M003074
+003075
+M003075
+003076
+M003076
+003086
+M003086
+003087
+M003087
+003088
+M003088
+003089
+M003089
+003090
+M003090
+003091
+M003091
+003092
+M003092
+003093
+M003093
+003094
+M003094
+003095
+M003095
+003096
+M003096
+003097
+M003097
+003098
+M003098
+003099
+M003099
+003100
+M003100
+003101
+M003101
+003102
+M003102
+003103
+M003103
+003104
+M003104
+003105
+M003105
+003106
+M003106
+003107
+M003107
+003108
+M003108
+003109
+M003109
+003110
+M003110
+003111
+M003111
+003112
+M003112
+003113
+M003113
+003114
+M003114
+003115
+M003115
+003116
+M003116
+003117
+M003117
+003118
+M003118
+003119
+M003119
+003120
+M003120
+003121
+M003121
+003122
+M003122
+003123
+M003123
+003124
+M003124
+003125
+M003125
+003126
+M003126
+003127
+M003127
+003128
+M003128
+003129
+M003129
+003130
+M003130
+003131
+M003131
+003132
+M003132
+003133
+M003133
+003142
+M003142
+003143
+M003143
+003144
+M003144
+003145
+M003145
+003146
+M003146
+003147
+M003147
+003148
+M003148
+003149
+M003149
+003150
+M003150
+003151
+M003151
+003152
+M003152
+003153
+M003153
+003154
+M003154
+003155
+M003155
+003156
+M003156
+003157
+M003157
+003158
+M003158
+003159
+M003159
+003160
+M003160
+003161
+M003161
+003162
+M003162
+003163
+M003163
+003164
+M003164
+003165
+M003165
+003166
+M003166
+003167
+M003167
+003168
+M003168
+003169
+M003169
+003170
+M003170
+003171
+M003171
+003172
+M003172
+003173
+M003173
+003174
+M003174
+003175
+M003175
+003176
+M003176
+003177
+M003177
+003178
+M003178
+003179
+M003179
+003180
+M003180
+003181
+M003181
+003182
+M003182
+003183
+M003183
+003184
+M003184
+003185
+M003185
+003186
+M003186
+003187
+M003187
+003188
+M003188
+003189
+M003189
+003190
+M003190
+003191
+M003191
+003192
+M003192
+003193
+M003193
+003194
+M003194
+003195
+M003195
+003196
+M003196
+003197
+M003197
+003198
+M003198
+003199
+M003199
+003200
+M003200
+003201
+M003201
+003202
+M003202
+003203
+M003203
+003204
+M003204
+003205
+M003205
+003206
+M003206
+003207
+M003207
+003208
+M003208
+003209
+M003209
+003210
+M003210
+003211
+M003211
+003212
+M003212
+003213
+M003213
+003219
+M003219
+003220
+M003220
+003221
+M003221
+003222
+M003222
+003223
+M003223
+003224
+M003224
+003225
+M003225
+003226
+M003226
+003227
+M003227
+003228
+M003228
+003229
+M003229
+003230
+M003230
+003231
+M003231
+003232
+M003232
+003233
+M003233
+003234
+M003234
+003235
+M003235
+003236
+M003236
+003237
+M003237
+003238
+M003238
+003239
+M003239
+003240
+M003240
+003241
+M003241
+003242
+M003242
+003243
+M003243
+003244
+M003244
+003245
+M003245
+003246
+M003246
+003247
+M003247
+003248
+M003248
+003249
+M003249
+003266
+M003266
+003267
+M003267
+003268
+M003268
+003269
+M003269
+003270
+M003270
+003271
+M003271
+003272
+M003272
+003273
+M003273
+003274
+M003274
+003275
+M003275
+003276
+M003276
+003277
+M003277
+003278
+M003278
+003279
+M003279
+003280
+M003280
+003281
+M003281
+003282
+M003282
+003283
+M003283
+003284
+M003284
+003285
+M003285
+003286
+M003286
+003287
+M003287
+003293
+M003293
+003294
+M003294
+003295
+M003295
+003296
+M003296
+003297
+M003297
+003298
+M003298
+003299
+M003299
+003300
+M003300
+003301
+M003301
+003302
+M003302
+003303
+M003303
+003304
+M003304
+003305
+M003305
+003306
+M003306
+003307
+M003307
+003308
+M003308
+003309
+M003309
+003310
+M003310
+003311
+M003311
+003312
+M003312
+003313
+M003313
+003314
+M003314
+003315
+M003315
+003321
+M003321
+003322
+M003322
+003323
+M003323
+003324
+M003324
+003325
+M003325
+003326
+M003326
+003327
+M003327
+003328
+M003328
+003329
+M003329
+003330
+M003330
+003331
+M003331
+003332
+M003332
+003333
+M003333
+003334
+M003334
+003335
+M003335
+003336
+M003336
+003337
+M003337
+003338
+M003338
+003339
+M003339
+003340
+M003340
+003341
+M003341
+003342
+M003342
+003343
+M003343
+003344
+M003344
+003345
+M003345
+003346
+M003346
+003347
+M003347
+003348
+M003348
+003349
+M003349
+003350
+M003350
+003351
+M003351
+003352
+M003352
+003353
+M003353
+003354
+M003354
+003355
+M003355
+003356
+M003356
+003357
+M003357
+003358
+M003358
+003359
+M003359
+003360
+M003360
+003361
+M003361
+003362
+M003362
+003363
+M003363
+003364
+M003364
+003365
+M003365
+003366
+M003366
+003367
+M003367
+003368
+M003368
+003369
+M003369
+003370
+M003370
+003371
+M003371
+003372
+M003372
+003373
+M003373
+003374
+M003374
+003375
+M003375
+003376
+M003376
+003377
+M003377
+003378
+M003378
+003379
+M003379
+003380
+M003380
+003381
+M003381
+003382
+M003382
+003383
+M003383
+003384
+M003384
+003385
+M003385
+003386
+M003386
+003387
+M003387
+003388
+M003388
+003389
+M003389
+003390
+M003390
+003391
+M003391
+003392
+M003392
+003393
+M003393
+003398
+M003398
+003399
+M003399
+003400
+M003400
+003401
+M003401
+003402
+M003402
+003403
+M003403
+003404
+M003404
+003405
+M003405
+003406
+M003406
+003407
+M003407
+003408
+M003408
+003429
+M003429
+003430
+M003430
+003431
+M003431
+003432
+M003432
+003433
+M003433
+003434
+M003434
+003435
+M003435
+003436
+M003436
+003437
+M003437
+003438
+M003438
+003463
+M003463
+003464
+M003464
+003465
+M003465
+003466
+M003466
+003467
+M003467
+003468
+M003468
+003469
+M003469
+003470
+M003470
+003471
+M003471
+003472
+M003472
+003473
+M003473
+003474
+M003474
+003475
+M003475
+003476
+M003476
+003477
+M003477
+003478
+M003478
+003479
+M003479
+003480
+M003480
+003481
+M003481
+003482
+M003482
+003483
+M003483
+003484
+M003484
+003485
+M003485
+003486
+M003486
+003487
+M003487
+003488
+M003488
+003489
+M003489
+003490
+M003490
+003491
+M003491
+003492
+M003492
+003493
+M003493
+003494
+M003494
+003495
+M003495
+003496
+M003496
+003497
+M003497
+003498
+M003498
+003499
+M003499
+003500
+M003500
+003501
+M003501
+003502
+M003502
+003503
+M003503
+003504
+M003504
+003505
+M003505
+003506
+M003506
+003507
+M003507
+003508
+M003508
+003509
+M003509
+003510
+M003510
+003511
+M003511
+003512
+M003512
+003529
+M003529
+003530
+M003530
+003531
+M003531
+003532
+M003532
+003533
+M003533
+003534
+M003534
+003535
+M003535
+003536
+M003536
+003537
+M003537
+003538
+M003538
+003539
+M003539
+003540
+M003540
+003541
+M003541
+003542
+M003542
+003543
+M003543
+003544
+M003544
+003545
+M003545
+003546
+M003546
+003547
+M003547
+003548
+M003548
+003549
+M003549
+003550
+M003550
+003551
+M003551
+003552
+M003552
+003553
+M003553
+003554
+M003554
+003563
+M003563
+003564
+M003564
+003565
+M003565
+003566
+M003566
+003567
+M003567
+003568
+M003568
+003569
+M003569
+003570
+M003570
+003571
+M003571
+003572
+M003572
+003573
+M003573
+003574
+M003574
+003575
+M003575
+003577
+M003577
+003578
+M003578
+003579
+M003579
+003580
+M003580
+003581
+M003581
+003582
+M003582
+003583
+M003583
+003584
+M003584
+003585
+M003585
+003586
+M003586
+003587
+M003587
+003588
+M003588
+003589
+M003589
+003590
+M003590
+003591
+M003591
+003592
+M003592
+003593
+M003593
+003594
+M003594
+003595
+M003595
+003596
+M003596
+003597
+M003597
+003598
+M003598
+003599
+M003599
+003600
+M003600
+003601
+M003601
+003602
+M003602
+003603
+M003603
+003604
+M003604
+003605
+M003605
+003606
+M003606
+003607
+M003607
+003608
+M003608
+003609
+M003609
+003610
+M003610
+003611
+M003611
+003612
+M003612
+003613
+M003613
+003614
+M003614
+003615
+M003615
+003616
+M003616
+003617
+M003617
+003618
+M003618
+003619
+M003619
+003620
+M003620
+003621
+M003621
+003622
+M003622
+003623
+M003623
+003624
+M003624
+003625
+M003625
+003626
+M003626
+003627
+M003627
+003628
+M003628
+003629
+M003629
+003630
+M003630
+003631
+M003631
+003632
+M003632
+003633
+M003633
+003634
+M003634
+003635
+M003635
+003636
+M003636
+003637
+M003637
+003638
+M003638
+003639
+M003639
+003640
+M003640
+003641
+M003641
+003642
+M003642
+003643
+M003643
+003644
+M003644
+003645
+M003645
+003646
+M003646
+003647
+M003647
+003648
+M003648
+003649
+M003649
+003650
+M003650
+003651
+M003651
+003652
+M003652
+003653
+M003653
+003654
+M003654
+003655
+M003655
+003658
+M003658
+003659
+M003659
+003660
+M003660
+003661
+M003661
+003662
+M003662
+003663
+M003663
+003664
+M003664
+003665
+M003665
+003666
+M003666
+003667
+M003667
+003668
+M003668
+003669
+M003669
+003670
+M003670
+003671
+M003671
+003672
+M003672
+003673
+M003673
+003674
+M003674
+003675
+M003675
+003676
+M003676
+003677
+M003677
+003678
+M003678
+003679
+M003679
+003680
+M003680
+003681
+M003681
+003682
+M003682
+003683
+M003683
+003684
+M003684
+003685
+M003685
+003686
+M003686
+003687
+M003687
+003688
+M003688
+003690
+M003690
+003692
+M003692
+003693
+M003693
+003694
+M003694
+003695
+M003695
+003696
+M003696
+003697
+M003697
+003698
+M003698
+003699
+M003699
+003700
+M003700
+003701
+M003701
+003702
+M003702
+003703
+M003703
+003704
+M003704
+003705
+M003705
+003706
+M003706
+003707
+M003707
+003708
+M003708
+003709
+M003709
+003710
+M003710
+003711
+M003711
+003712
+M003712
+003713
+M003713
+003714
+M003714
+003715
+M003715
+003716
+M003716
+003717
+M003717
+003718
+M003718
+003719
+M003719
+003720
+M003720
+003721
+M003721
+003722
+M003722
+003723
+M003723
+003724
+M003724
+003734
+M003734
+003735
+M003735
+003736
+M003736
+003737
+M003737
+003738
+M003738
+003739
+M003739
+003740
+M003740
+003741
+M003741
+003742
+M003742
+003743
+M003743
+003744
+M003744
+003745
+M003745
+003746
+M003746
+003747
+M003747
+003748
+M003748
+003749
+M003749
+003750
+M003750
+003751
+M003751
+003752
+M003752
+003753
+M003753
+003754
+M003754
+003755
+M003755
+003756
+M003756
+003757
+M003757
+003758
+M003758
+003759
+M003759
+003760
+M003760
+003761
+M003761
+003762
+M003762
+003763
+M003763
+003764
+M003764
+003765
+M003765
+003766
+M003766
+003767
+M003767
+003768
+M003768
+003769
+M003769
+003770
+M003770
+003771
+M003771
+003772
+M003772
+003773
+M003773
+003778
+M003778
+003779
+M003779
+003780
+M003780
+003781
+M003781
+003782
+M003782
+003783
+M003783
+003784
+M003784
+003785
+M003785
+003793
+M003793
+003794
+M003794
+003795
+M003795
+003796
+M003796
+003797
+M003797
+003798
+M003798
+003799
+M003799
+003800
+M003800
+003801
+M003801
+003802
+M003802
+003803
+M003803
+003804
+M003804
+003805
+M003805
+003806
+M003806
+003807
+M003807
+003808
+M003808
+003809
+M003809
+003810
+M003810
+003811
+M003811
+003812
+M003812
+003813
+M003813
+003814
+M003814
+003815
+M003815
+003816
+M003816
+003817
+M003817
+003818
+M003818
+003819
+M003819
+003820
+M003820
+003821
+M003821
+003822
+M003822
+003823
+M003823
+003824
+M003824
+003825
+M003825
+003826
+M003826
+003827
+M003827
+003828
+M003828
+003829
+M003829
+003830
+M003830
+003831
+M003831
+003832
+M003832
+003833
+M003833
+003834
+M003834
+003835
+M003835
+003836
+M003836
+003837
+M003837
+003838
+M003838
+003839
+M003839
+003840
+M003840
+003841
+M003841
+003842
+M003842
+003843
+M003843
+003844
+M003844
+003845
+M003845
+003846
+M003846
+003847
+M003847
+003848
+M003848
+003849
+M003849
+003850
+M003850
+003851
+M003851
+003852
+M003852
+003853
+M003853
+003854
+M003854
+003855
+M003855
+003856
+M003856
+003857
+M003857
+003858
+M003858
+003859
+M003859
+003860
+M003860
+003861
+M003861
+003862
+M003862
+003863
+M003863
+003864
+M003864
+003865
+M003865
+003866
+M003866
+003867
+M003867
+003868
+M003868
+003869
+M003869
+003870
+M003870
+003871
+M003871
+003872
+M003872
+003873
+M003873
+003874
+M003874
+003875
+M003875
+003876
+M003876
+003877
+M003877
+003878
+M003878
+003879
+M003879
+003880
+M003880
+003881
+M003881
+003882
+M003882
+003883
+M003883
+003884
+M003884
+003885
+M003885
+003886
+M003886
+003887
+M003887
+003888
+M003888
+003889
+M003889
+003890
+M003890
+003891
+M003891
+003892
+M003892
+003893
+M003893
+003894
+M003894
+003895
+M003895
+003896
+M003896
+003897
+M003897
+003898
+M003898
+003899
+M003899
+003900
+M003900
+003901
+M003901
+003902
+M003902
+003903
+M003903
+003904
+M003904
+003905
+M003905
+003906
+M003906
+003907
+M003907
+003908
+M003908
+003909
+M003909
+003910
+M003910
+003911
+M003911
+003912
+M003912
+003913
+M003913
+003914
+M003914
+003915
+M003915
+003916
+M003916
+003917
+M003917
+003918
+M003918
+003919
+M003919
+003920
+M003920
+003921
+M003921
+003922
+M003922
+003923
+M003923
+003924
+M003924
+003925
+M003925
+003926
+M003926
+003927
+M003927
+003928
+M003928
+003929
+M003929
+003930
+M003930
+003931
+M003931
+003932
+M003932
+003933
+M003933
+003934
+M003934
+003935
+M003935
+003936
+M003936
+003937
+M003937
+003938
+M003938
+003939
+M003939
+003940
+M003940
+003941
+M003941
+003942
+M003942
+003943
+M003943
+003944
+M003944
+003945
+M003945
+003946
+M003946
+003947
+M003947
+003948
+M003948
+003949
+M003949
+003950
+M003950
+003951
+M003951
+003952
+M003952
+003953
+M003953
+003954
+M003954
+003955
+M003955
+003956
+M003956
+003957
+M003957
+003958
+M003958
+003959
+M003959
+003960
+M003960
+003961
+M003961
+003962
+M003962
+003963
+M003963
+003964
+M003964
+003965
+M003965
+003966
+M003966
+003967
+M003967
+003968
+M003968
+003969
+M003969
+003970
+M003970
+003971
+M003971
+003972
+M003972
+003973
+M003973
+003974
+M003974
+003975
+M003975
+003976
+M003976
+003977
+M003977
+003978
+M003978
+003979
+M003979
+003980
+M003980
+003981
+M003981
+003982
+M003982
+003983
+M003983
+003984
+M003984
+003985
+M003985
+003986
+M003986
+003987
+M003987
+003988
+M003988
+003989
+M003989
+003990
+M003990
+003991
+M003991
+003992
+M003992
+003993
+M003993
+003994
+M003994
+004003
+M004003
+004004
+M004004
+004005
+M004005
+004006
+M004006
+004007
+M004007
+004008
+M004008
+004009
+M004009
+004010
+M004010
+004011
+M004011
+004012
+M004012
+004013
+M004013
+004014
+M004014
+004015
+M004015
+004016
+M004016
+004017
+M004017
+004018
+M004018
+004019
+M004019
+004020
+M004020
+004021
+M004021
+004022
+M004022
+004023
+M004023
+004024
+M004024
+004025
+M004025
+004026
+M004026
+004027
+M004027
+004028
+M004028
+004029
+M004029
+004030
+M004030
+004031
+M004031
+004032
+M004032
+004033
+M004033
+004034
+M004034
+004035
+M004035
+004036
+M004036
+004037
+M004037
+004038
+M004038
+004039
+M004039
+004040
+M004040
+004041
+M004041
+004042
+M004042
+004043
+M004043
+004044
+M004044
+004045
+M004045
+004046
+M004046
+004047
+M004047
+004048
+M004048
+004049
+M004049
+004050
+M004050
+004051
+M004051
+004052
+M004052
+004053
+M004053
+004054
+M004054
+004060
+M004060
+004061
+M004061
+004062
+M004062
+004063
+M004063
+004064
+M004064
+004065
+M004065
+004066
+M004066
+004067
+M004067
+004068
+M004068
+004069
+M004069
+004070
+M004070
+004071
+M004071
+004072
+M004072
+004073
+M004073
+004074
+M004074
+004075
+M004075
+004076
+M004076
+004077
+M004077
+004078
+M004078
+004079
+M004079
+004087
+M004087
+004088
+M004088
+004089
+M004089
+004090
+M004090
+004091
+M004091
+004092
+M004092
+004093
+M004093
+004094
+M004094
+004095
+M004095
+004114
+M004114
+004115
+M004115
+004116
+M004116
+004117
+M004117
+004118
+M004118
+004119
+M004119
+004120
+M004120
+004121
+M004121
+004123
+M004123
+004124
+M004124
+004125
+M004125
+004126
+M004126
+004127
+M004127
+004128
+M004128
+004129
+M004129
+004130
+M004130
+004131
+M004131
+004158
+M004158
+004159
+M004159
+004160
+M004160
+004161
+M004161
+004162
+M004162
+004163
+M004163
+004164
+M004164
+004165
+M004165
+004166
+M004166
+004167
+M004167
+004168
+M004168
+004172
+M004172
+004173
+M004173
+004174
+M004174
+004204
+M004204
+004205
+M004205
+004206
+M004206
+004207
+M004207
+004208
+M004208
+004209
+M004209
+004210
+M004210
+004211
+M004211
+004212
+M004212
+004213
+M004213
+004214
+M004214
+004215
+M004215
+004216
+M004216
+004217
+M004217
+004218
+M004218
+004219
+M004219
+004220
+M004220
+004221
+M004221
+004222
+M004222
+004223
+M004223
+004224
+M004224
+004225
+M004225
+004226
+M004226
+004227
+M004227
+004228
+M004228
+004229
+M004229
+004230
+M004230
+004231
+M004231
+004232
+M004232
+004233
+M004233
+004234
+M004234
+004235
+M004235
+004236
+M004236
+004251
+M004251
+004252
+M004252
+004253
+M004253
+004254
+M004254
+004255
+M004255
+004256
+M004256
+004257
+M004257
+004258
+M004258
+004259
+M004259
+004260
+M004260
+004261
+M004261
+004262
+M004262
+004263
+M004263
+004264
+M004264
+004265
+M004265
+004267
+M004267
+004268
+M004268
+004269
+M004269
+004270
+M004270
+004271
+M004271
+004272
+M004272
+004273
+M004273
+004274
+M004274
+004275
+M004275
+004276
+M004276
+004277
+M004277
+004278
+M004278
+004279
+M004279
+004280
+M004280
+004281
+M004281
+004282
+M004282
+004283
+M004283
+004284
+M004284
+004285
+M004285
+004286
+M004286
+004287
+M004287
+004288
+M004288
+004289
+M004289
+004290
+M004290
+004291
+M004291
+004292
+M004292
+004293
+M004293
+004299
+M004299
+004300
+M004300
+004301
+M004301
+004302
+M004302
+004303
+M004303
+004304
+M004304
+004305
+M004305
+004306
+M004306
+004307
+M004307
+004308
+M004308
+004309
+M004309
+004310
+M004310
+004311
+M004311
+004312
+M004312
+004313
+M004313
+004314
+M004314
+004315
+M004315
+004316
+M004316
+004317
+M004317
+004318
+M004318
+004319
+M004319
+004320
+M004320
+004321
+M004321
+004322
+M004322
+004323
+M004323
+004325
+M004325
+004326
+M004326
+004327
+M004327
+004328
+M004328
+004329
+M004329
+004330
+M004330
+004331
+M004331
+004332
+M004332
+004333
+M004333
+004334
+M004334
+004335
+M004335
+004336
+M004336
+004337
+M004337
+004338
+M004338
+004339
+M004339
+004340
+M004340
+004341
+M004341
+004342
+M004342
+004343
+M004343
+004344
+M004344
+004345
+M004345
+004346
+M004346
+004347
+M004347
+004348
+M004348
+004349
+M004349
+004350
+M004350
+004351
+M004351
+004352
+M004352
+004353
+M004353
+004354
+M004354
+004355
+M004355
+004356
+M004356
+004357
+M004357
+004358
+M004358
+004359
+M004359
+004360
+M004360
+004361
+M004361
+004362
+M004362
+004363
+M004363
+004364
+M004364
+004365
+M004365
+004366
+M004366
+004367
+M004367
+004368
+M004368
+004369
+M004369
+004370
+M004370
+004371
+M004371
+004372
+M004372
+004373
+M004373
+004374
+M004374
+004375
+M004375
+004376
+M004376
+004377
+M004377
+004378
+M004378
+004379
+M004379
+004380
+M004380
+004381
+M004381
+004382
+M004382
+004383
+M004383
+004384
+M004384
+004385
+M004385
+004386
+M004386
+004387
+M004387
+004388
+M004388
+004389
+M004389
+004390
+M004390
+004391
+M004391
+004392
+M004392
+004393
+M004393
+004394
+M004394
+004395
+M004395
+004396
+M004396
+004397
+M004397
+004398
+M004398
+004399
+M004399
+004400
+M004400
+004401
+M004401
+004402
+M004402
+004403
+M004403
+004404
+M004404
+004405
+M004405
+004406
+M004406
+004407
+M004407
+004408
+M004408
+004409
+M004409
+004410
+M004410
+004411
+M004411
+004412
+M004412
+004413
+M004413
+004414
+M004414
+004415
+M004415
+004416
+M004416
+004417
+M004417
+004418
+M004418
+004419
+M004419
+004420
+M004420
+004421
+M004421
+004422
+M004422
+004423
+M004423
+004424
+M004424
+004430
+M004430
+004431
+M004431
+004432
+M004432
+004433
+M004433
+004434
+M004434
+004435
+M004435
+004436
+M004436
+004437
+M004437
+004438
+M004438
+004439
+M004439
+004440
+M004440
+004441
+M004441
+004442
+M004442
+004443
+M004443
+004444
+M004444
+004445
+M004445
+004446
+M004446
+004447
+M004447
+004448
+M004448
+004449
+M004449
+004450
+M004450
+004451
+M004451
+004452
+M004452
+004453
+M004453
+004454
+M004454
+004455
+M004455
+004456
+M004456
+004457
+M004457
+004458
+M004458
+004459
+M004459
+004460
+M004460
+004461
+M004461
+004462
+M004462
+004463
+M004463
+004464
+M004464
+004476
+M004476
+004477
+M004477
+004478
+M004478
+004479
+M004479
+004480
+M004480
+004481
+M004481
+004482
+M004482
+004483
+M004483
+004484
+M004484
+004485
+M004485
+004486
+M004486
+004487
+M004487
+004488
+M004488
+004489
+M004489
+004490
+M004490
+004491
+M004491
+004492
+M004492
+004493
+M004493
+004494
+M004494
+004495
+M004495
+004496
+M004496
+004497
+M004497
+004498
+M004498
+004499
+M004499
+004500
+M004500
+004501
+M004501
+004502
+M004502
+004503
+M004503
+004504
+M004504
+004505
+M004505
+004506
+M004506
+004507
+M004507
+004508
+M004508
+004509
+M004509
+004510
+M004510
+004511
+M004511
+004512
+M004512
+004513
+M004513
+004514
+M004514
+004515
+M004515
+004516
+M004516
+004517
+M004517
+004518
+M004518
+004519
+M004519
+004520
+M004520
+004521
+M004521
+004522
+M004522
+004523
+M004523
+004524
+M004524
+004525
+M004525
+004526
+M004526
+004527
+M004527
+004528
+M004528
+004529
+M004529
+004530
+M004530
+004531
+M004531
+004532
+M004532
+004533
+M004533
+004534
+M004534
+004535
+M004535
+004536
+M004536
+004537
+M004537
+004538
+M004538
+004539
+M004539
+004540
+M004540
+004541
+M004541
+004542
+M004542
+004543
+M004543
+004578
+M004578
+004579
+M004579
+004580
+M004580
+004581
+M004581
+004582
+M004582
+004583
+M004583
+004584
+M004584
+004585
+M004585
+004586
+M004586
+004587
+M004587
+004588
+M004588
+004589
+M004589
+004590
+M004590
+004591
+M004591
+004592
+M004592
+004593
+M004593
+004594
+M004594
+004595
+M004595
+004596
+M004596
+004597
+M004597
+004598
+M004598
+004599
+M004599
+004600
+M004600
+004601
+M004601
+004602
+M004602
+004603
+M004603
+004604
+M004604
+004605
+M004605
+004606
+M004606
+004607
+M004607
+004608
+M004608
+004609
+M004609
+004610
+M004610
+004611
+M004611
+004612
+M004612
+004613
+M004613
+004614
+M004614
+004615
+M004615
+004616
+M004616
+004617
+M004617
+004650
+M004650
+004651
+M004651
+004652
+M004652
+004653
+M004653
+004654
+M004654
+004655
+M004655
+004656
+M004656
+004686
+M004686
+004687
+M004687
+004688
+M004688
+004689
+M004689
+004690
+M004690
+004695
+M004695
+004696
+M004696
+004697
+M004697
+004698
+M004698
+004699
+M004699
+004700
+M004700
+004701
+M004701
+004702
+M004702
+004703
+M004703
+004704
+M004704
+004705
+M004705
+004706
+M004706
+004751
+M004751
+004752
+M004752
+004753
+M004753
+004754
+M004754
+004755
+M004755
+004756
+M004756
+004757
+M004757
+004758
+M004758
+004759
+M004759
+004760
+M004760
+004761
+M004761
+004762
+M004762
+004763
+M004763
+004764
+M004764
+004765
+M004765
+004766
+M004766
+004767
+M004767
+004768
+M004768
+004769
+M004769
+004770
+M004770
+004771
+M004771
+004772
+M004772
+004773
+M004773
+004774
+M004774
+004775
+M004775
+004776
+M004776
+004777
+M004777
+004778
+M004778
+004779
+M004779
+004780
+M004780
+004781
+M004781
+004782
+M004782
+004783
+M004783
+004784
+M004784
+004785
+M004785
+004786
+M004786
+004787
+M004787
+004788
+M004788
+004789
+M004789
+004790
+M004790
+004791
+M004791
+004792
+M004792
+004793
+M004793
+004794
+M004794
+004795
+M004795
+004796
+M004796
+004797
+M004797
+004798
+M004798
+004799
+M004799
+004800
+M004800
+004801
+M004801
+004802
+M004802
+004803
+M004803
+004805
+M004805
+004806
+M004806
+004807
+M004807
+004808
+M004808
+004809
+M004809
+004810
+M004810
+004811
+M004811
+004812
+M004812
+004813
+M004813
+004814
+M004814
+004815
+M004815
+004816
+M004816
+004817
+M004817
+004818
+M004818
+004819
+M004819
+004820
+M004820
+004821
+M004821
+004822
+M004822
+004837
+M004837
+004838
+M004838
+004839
+M004839
+004840
+M004840
+004841
+M004841
+004842
+M004842
+004843
+M004843
+004844
+M004844
+004845
+M004845
+004846
+M004846
+004847
+M004847
+004848
+M004848
+004849
+M004849
+004850
+M004850
+004851
+M004851
+004852
+M004852
+004853
+M004853
+004854
+M004854
+004855
+M004855
+004856
+M004856
+004857
+M004857
+004858
+M004858
+004859
+M004859
+004860
+M004860
+004861
+M004861
+004862
+M004862
+004863
+M004863
+004864
+M004864
+004865
+M004865
+004866
+M004866
+004867
+M004867
+004868
+M004868
+004869
+M004869
+004877
+M004877
+004878
+M004878
+004879
+M004879
+004880
+M004880
+004881
+M004881
+004882
+M004882
+004883
+M004883
+004884
+M004884
+004890
+M004890
+004891
+M004891
+004892
+M004892
+004893
+M004893
+004894
+M004894
+004895
+M004895
+004896
+M004896
+004913
+M004913
+004914
+M004914
+004915
+M004915
+004916
+M004916
+004917
+M004917
+004918
+M004918
+004919
+M004919
+004920
+M004920
+004921
+M004921
+004922
+M004922
+004923
+M004923
+004924
+M004924
+004925
+M004925
+004926
+M004926
+004927
+M004927
+004928
+M004928
+004929
+M004929
+004930
+M004930
+004931
+M004931
+004932
+M004932
+004933
+M004933
+004934
+M004934
+004935
+M004935
+004936
+M004936
+004937
+M004937
+004938
+M004938
+004939
+M004939
+004940
+M004940
+004941
+M004941
+004942
+M004942
+004943
+M004943
+004944
+M004944
+004945
+M004945
+004946
+M004946
+004947
+M004947
+004948
+M004948
+004949
+M004949
+004950
+M004950
+004951
+M004951
+004952
+M004952
+004953
+M004953
+004954
+M004954
+004955
+M004955
+004956
+M004956
+004957
+M004957
+004959
+M004959
+004960
+M004960
+004961
+M004961
+004962
+M004962
+004963
+M004963
+004964
+M004964
+004965
+M004965
+004966
+M004966
+004967
+M004967
+004968
+M004968
+004969
+M004969
+004980
+M004980
+004981
+M004981
+004982
+M004982
+004983
+M004983
+004984
+M004984
+004985
+M004985
+004986
+M004986
+004987
+M004987
+004988
+M004988
+004989
+M004989
+004997
+M004997
+004998
+M004998
+004999
+M004999
+005000
+M005000
+005001
+M005001
+005002
+M005002
+005003
+M005003
+005004
+M005004
+005005
+M005005
+005006
+M005006
+005007
+M005007
+005008
+M005008
+005009
+M005009
+005010
+M005010
+005011
+M005011
+005012
+M005012
+005013
+M005013
+005014
+M005014
+005015
+M005015
+005016
+M005016
+005017
+M005017
+005018
+M005018
+005019
+M005019
+005020
+M005020
+005021
+M005021
+005022
+M005022
+005023
+M005023
+005024
+M005024
+005025
+M005025
+005037
+M005037
+005038
+M005038
+005039
+M005039
+005040
+M005040
+005041
+M005041
+005042
+M005042
+005043
+M005043
+005044
+M005044
+005045
+M005045
+005068
+M005068
+005069
+M005069
+005070
+M005070
+005071
+M005071
+005072
+M005072
+005073
+M005073
+005074
+M005074
+005075
+M005075
+005076
+M005076
+005077
+M005077
+005078
+M005078
+005079
+M005079
+005080
+M005080
+005081
+M005081
+005082
+M005082
+005083
+M005083
+005084
+M005084
+005085
+M005085
+005086
+M005086
+005087
+M005087
+005088
+M005088
+005089
+M005089
+005090
+M005090
+005091
+M005091
+005092
+M005092
+005093
+M005093
+005094
+M005094
+005130
+M005130
+005131
+M005131
+005132
+M005132
+005133
+M005133
+005134
+M005134
+005139
+M005139
+005140
+M005140
+005141
+M005141
+005142
+M005142
+005143
+M005143
+005144
+M005144
+005145
+M005145
+005146
+M005146
+005147
+M005147
+005148
+M005148
+005149
+M005149
+005150
+M005150
+005151
+M005151
+005152
+M005152
+005153
+M005153
+005154
+M005154
+005155
+M005155
+005156
+M005156
+005157
+M005157
+005158
+M005158
+005159
+M005159
+005160
+M005160
+005161
+M005161
+005162
+M005162
+005163
+M005163
+005164
+M005164
+005165
+M005165
+005166
+M005166
+005167
+M005167
+005168
+M005168
+005169
+M005169
+005170
+M005170
+005171
+M005171
+005172
+M005172
+005173
+M005173
+005174
+M005174
+005178
+M005178
+005179
+M005179
+005180
+M005180
+005181
+M005181
+005182
+M005182
+005183
+M005183
+005184
+M005184
+005185
+M005185
+005186
+M005186
+005187
+M005187
+005188
+M005188
+005189
+M005189
+005215
+M005215
+005216
+M005216
+005217
+M005217
+005218
+M005218
+005219
+M005219
+005220
+M005220
+005221
+M005221
+005222
+M005222
+005223
+M005223
+005224
+M005224
+005225
+M005225
+005226
+M005226
+005227
+M005227
+005228
+M005228
+005229
+M005229
+005230
+M005230
+005231
+M005231
+005232
+M005232
+005233
+M005233
+005279
+M005279
+005280
+M005280
+005281
+M005281
+005282
+M005282
+005283
+M005283
+005284
+M005284
+005285
+M005285
+005286
+M005286
+005287
+M005287
+005288
+M005288
+005289
+M005289
+005290
+M005290
+005291
+M005291
+005292
+M005292
+005293
+M005293
+005294
+M005294
+005295
+M005295
+005296
+M005296
+005297
+M005297
+005298
+M005298
+005299
+M005299
+005300
+M005300
+005301
+M005301
+005302
+M005302
+005303
+M005303
+005304
+M005304
+005305
+M005305
+005306
+M005306
+005307
+M005307
+005308
+M005308
+005309
+M005309
+005310
+M005310
+005311
+M005311
+005312
+M005312
+005313
+M005313
+005314
+M005314
+005315
+M005315
+005342
+M005342
+005343
+M005343
+005344
+M005344
+005345
+M005345
+005346
+M005346
+005347
+M005347
+005348
+M005348
+005349
+M005349
+005350
+M005350
+005351
+M005351
+005352
+M005352
+005353
+M005353
+005354
+M005354
+005355
+M005355
+005356
+M005356
+005357
+M005357
+005358
+M005358
+005359
+M005359
+005360
+M005360
+005361
+M005361
+005362
+M005362
+005363
+M005363
+005364
+M005364
+005365
+M005365
+005366
+M005366
+005367
+M005367
+005368
+M005368
+005369
+M005369
+005370
+M005370
+005371
+M005371
+005372
+M005372
+005373
+M005373
+005374
+M005374
+005375
+M005375
+005376
+M005376
+005377
+M005377
+005378
+M005378
+005379
+M005379
+005380
+M005380
+005381
+M005381
+005382
+M005382
+005383
+M005383
+005384
+M005384
+005385
+M005385
+005386
+M005386
+005387
+M005387
+005388
+M005388
+005389
+M005389
+005390
+M005390
+005391
+M005391
+005392
+M005392
+005393
+M005393
+005394
+M005394
+005395
+M005395
+005396
+M005396
+005397
+M005397
+005398
+M005398
+005399
+M005399
+005400
+M005400
+005401
+M005401
+005402
+M005402
+005403
+M005403
+005404
+M005404
+005405
+M005405
+005406
+M005406
+005407
+M005407
+005408
+M005408
+005409
+M005409
+005410
+M005410
+005411
+M005411
+005412
+M005412
+005413
+M005413
+005414
+M005414
+005415
+M005415
+005416
+M005416
+005417
+M005417
+005418
+M005418
+005419
+M005419
+005420
+M005420
+005421
+M005421
+005422
+M005422
+005423
+M005423
+005424
+M005424
+005425
+M005425
+005426
+M005426
+005427
+M005427
+005428
+M005428
+005429
+M005429
+005430
+M005430
+005431
+M005431
+005432
+M005432
+005433
+M005433
+005441
+M005441
+005442
+M005442
+005443
+M005443
+005444
+M005444
+005445
+M005445
+005446
+M005446
+005447
+M005447
+005448
+M005448
+005449
+M005449
+005450
+M005450
+005451
+M005451
+005452
+M005452
+005453
+M005453
+005454
+M005454
+005455
+M005455
+005456
+M005456
+005457
+M005457
+005458
+M005458
+005459
+M005459
+005460
+M005460
+005465
+M005465
+005466
+M005466
+005467
+M005467
+005468
+M005468
+005469
+M005469
+005470
+M005470
+005471
+M005471
+005472
+M005472
+005473
+M005473
+005474
+M005474
+005475
+M005475
+005476
+M005476
+005477
+M005477
+005478
+M005478
+005479
+M005479
+005480
+M005480
+005481
+M005481
+005482
+M005482
+005483
+M005483
+005484
+M005484
+005485
+M005485
+005486
+M005486
+005493
+M005493
+005494
+M005494
+005495
+M005495
+005496
+M005496
+005497
+M005497
+005498
+M005498
+005499
+M005499
+005500
+M005500
+005501
+M005501
+005502
+M005502
+005503
+M005503
+005504
+M005504
+005505
+M005505
+005506
+M005506
+005507
+M005507
+005508
+M005508
+005509
+M005509
+005510
+M005510
+005511
+M005511
+005512
+M005512
+005513
+M005513
+005514
+M005514
+005515
+M005515
+005516
+M005516
+005517
+M005517
+005518
+M005518
+005519
+M005519
+005520
+M005520
+005521
+M005521
+005522
+M005522
+005523
+M005523
+005524
+M005524
+005525
+M005525
+005526
+M005526
+005527
+M005527
+005528
+M005528
+005529
+M005529
+005530
+M005530
+005531
+M005531
+005532
+M005532
+005533
+M005533
+005534
+M005534
+005535
+M005535
+005536
+M005536
+005537
+M005537
+005538
+M005538
+005539
+M005539
+005540
+M005540
+005541
+M005541
+005542
+M005542
+005543
+M005543
+005544
+M005544
+005545
+M005545
+005546
+M005546
+005547
+M005547
+005548
+M005548
+005549
+M005549
+005550
+M005550
+005551
+M005551
+005552
+M005552
+005561
+M005561
+005562
+M005562
+005563
+M005563
+005564
+M005564
+005565
+M005565
+005566
+M005566
+005567
+M005567
+005568
+M005568
+005569
+M005569
+005570
+M005570
+005571
+M005571
+005572
+M005572
+005573
+M005573
+005574
+M005574
+005583
+M005583
+005584
+M005584
+005585
+M005585
+005586
+M005586
+005587
+M005587
+005588
+M005588
+005589
+M005589
+005590
+M005590
+005591
+M005591
+005592
+M005592
+005593
+M005593
+005594
+M005594
+005595
+M005595
+005596
+M005596
+005600
+M005600
+005601
+M005601
+005602
+M005602
+005603
+M005603
+005604
+M005604
+005605
+M005605
+005606
+M005606
+005607
+M005607
+005608
+M005608
+005609
+M005609
+005610
+M005610
+005611
+M005611
+005612
+M005612
+005613
+M005613
+005614
+M005614
+005615
+M005615
+005616
+M005616
+005617
+M005617
+005618
+M005618
+005619
+M005619
+005620
+M005620
+005621
+M005621
+005622
+M005622
+005623
+M005623
+005624
+M005624
+005625
+M005625
+005626
+M005626
+005627
+M005627
+005628
+M005628
+005629
+M005629
+005630
+M005630
+005631
+M005631
+005632
+M005632
+005633
+M005633
+005634
+M005634
+005635
+M005635
+005636
+M005636
+005637
+M005637
+005638
+M005638
+005639
+M005639
+005640
+M005640
+005641
+M005641
+005642
+M005642
+005643
+M005643
+005644
+M005644
+005645
+M005645
+005646
+M005646
+005647
+M005647
+005648
+M005648
+005649
+M005649
+005650
+M005650
+005651
+M005651
+005652
+M005652
+005653
+M005653
+005654
+M005654
+005655
+M005655
+005656
+M005656
+005657
+M005657
+005658
+M005658
+005659
+M005659
+005660
+M005660
+005661
+M005661
+005662
+M005662
+005663
+M005663
+005664
+M005664
+005665
+M005665
+005666
+M005666
+005667
+M005667
+005668
+M005668
+005669
+M005669
+005670
+M005670
+005671
+M005671
+005672
+M005672
+005673
+M005673
+005674
+M005674
+005675
+M005675
+005676
+M005676
+005677
+M005677
+005678
+M005678
+005679
+M005679
+005680
+M005680
+005681
+M005681
+005682
+M005682
+005683
+M005683
+005684
+M005684
+005685
+M005685
+005686
+M005686
+005687
+M005687
+005688
+M005688
+005689
+M005689
+005690
+M005690
+005691
+M005691
+005692
+M005692
+005693
+M005693
+005694
+M005694
+005695
+M005695
+005696
+M005696
+005697
+M005697
+005698
+M005698
+005699
+M005699
+005700
+M005700
+005701
+M005701
+005702
+M005702
+005703
+M005703
+005704
+M005704
+005705
+M005705
+005714
+M005714
+005715
+M005715
+005716
+M005716
+005717
+M005717
+005718
+M005718
+005719
+M005719
+005720
+M005720
+005721
+M005721
+005722
+M005722
+005723
+M005723
+005724
+M005724
+005725
+M005725
+005726
+M005726
+005732
+M005732
+005733
+M005733
+005734
+M005734
+005735
+M005735
+005736
+M005736
+005737
+M005737
+005738
+M005738
+005739
+M005739
+005740
+M005740
+005741
+M005741
+005742
+M005742
+005743
+M005743
+005755
+M005755
+005756
+M005756
+005757
+M005757
+005758
+M005758
+005759
+M005759
+005760
+M005760
+005761
+M005761
+005762
+M005762
+005763
+M005763
+005764
+M005764
+005765
+M005765
+005766
+M005766
+005767
+M005767
+005768
+M005768
+005769
+M005769
+005770
+M005770
+005771
+M005771
+005772
+M005772
+005773
+M005773
+005774
+M005774
+005775
+M005775
+005776
+M005776
+005777
+M005777
+005778
+M005778
+005779
+M005779
+005780
+M005780
+005781
+M005781
+005782
+M005782
+005783
+M005783
+005784
+M005784
+005785
+M005785
+005786
+M005786
+005787
+M005787
+005788
+M005788
+005789
+M005789
+005790
+M005790
+005791
+M005791
+005792
+M005792
+005793
+M005793
+005794
+M005794
+005795
+M005795
+005796
+M005796
+005797
+M005797
+005798
+M005798
+005799
+M005799
+005800
+M005800
+005801
+M005801
+005802
+M005802
+005803
+M005803
+005804
+M005804
+005805
+M005805
+005806
+M005806
+005807
+M005807
+005808
+M005808
+005809
+M005809
+005810
+M005810
+005811
+M005811
+005812
+M005812
+005813
+M005813
+005814
+M005814
+005815
+M005815
+005816
+M005816
+005817
+M005817
+005818
+M005818
+005819
+M005819
+005820
+M005820
+005821
+M005821
+005822
+M005822
+005823
+M005823
+005858
+M005858
+005859
+M005859
+005860
+M005860
+005861
+M005861
+005862
+M005862
+005863
+M005863
+005864
+M005864
+005865
+M005865
+005866
+M005866
+005867
+M005867
+005868
+M005868
+005869
+M005869
+005870
+M005870
+005871
+M005871
+005872
+M005872
+005873
+M005873
+005874
+M005874
+005875
+M005875
+005876
+M005876
+005877
+M005877
+005878
+M005878
+005879
+M005879
+005880
+M005880
+005925
+M005925
+005926
+M005926
+005927
+M005927
+005928
+M005928
+005929
+M005929
+005938
+M005938
+005939
+M005939
+005940
+M005940
+005941
+M005941
+005942
+M005942
+005943
+M005943
+005944
+M005944
+005945
+M005945
+005946
+M005946
+005947
+M005947
+005948
+M005948
+005949
+M005949
+005950
+M005950
+005951
+M005951
+005952
+M005952
+005953
+M005953
+005954
+M005954
+005955
+M005955
+005956
+M005956
+005960
+M005960
+005961
+M005961
+005962
+M005962
+005963
+M005963
+005964
+M005964
+005965
+M005965
+005966
+M005966
+005967
+M005967
+005968
+M005968
+005969
+M005969
+005970
+M005970
+005971
+M005971
+005972
+M005972
+005973
+M005973
+005974
+M005974
+005975
+M005975
+005976
+M005976
+005977
+M005977
+005978
+M005978
+005979
+M005979
+005980
+M005980
+005981
+M005981
+005982
+M005982
+005983
+M005983
+005984
+M005984
+005985
+M005985
+005986
+M005986
+005990
+M005990
+005991
+M005991
+005992
+M005992
+005993
+M005993
+005994
+M005994
+005995
+M005995
+005996
+M005996
+005997
+M005997
+005998
+M005998
+005999
+M005999
+006000
+M006000
+006001
+M006001
+006002
+M006002
+006003
+M006003
+006004
+M006004
+006005
+M006005
+006006
+M006006
+006007
+M006007
+006008
+M006008
+006009
+M006009
+006010
+M006010
+006011
+M006011
+006012
+M006012
+006013
+M006013
+006014
+M006014
+006015
+M006015
+006016
+M006016
+006017
+M006017
+006018
+M006018
+006019
+M006019
+006020
+M006020
+006021
+M006021
+006046
+M006046
+006047
+M006047
+006048
+M006048
+006049
+M006049
+006050
+M006050
+006051
+M006051
+006052
+M006052
+006053
+M006053
+006054
+M006054
+006055
+M006055
+006056
+M006056
+006057
+M006057
+006058
+M006058
+006059
+M006059
+006060
+M006060
+006061
+M006061
+006062
+M006062
+006063
+M006063
+006064
+M006064
+006065
+M006065
+006066
+M006066
+006067
+M006067
+006068
+M006068
+006069
+M006069
+006070
+M006070
+006071
+M006071
+006072
+M006072
+006073
+M006073
+006075
+M006075
+006076
+M006076
+006077
+M006077
+006078
+M006078
+006079
+M006079
+006080
+M006080
+006081
+M006081
+006082
+M006082
+006083
+M006083
+006093
+M006093
+006094
+M006094
+006095
+M006095
+006096
+M006096
+006097
+M006097
+006098
+M006098
+006099
+M006099
+006100
+M006100
+006101
+M006101
+006102
+M006102
+006103
+M006103
+006104
+M006104
+006105
+M006105
+006106
+M006106
+006107
+M006107
+006108
+M006108
+006109
+M006109
+006110
+M006110
+006111
+M006111
+006112
+M006112
+006113
+M006113
+006114
+M006114
+006115
+M006115
+006116
+M006116
+006117
+M006117
+006118
+M006118
+006119
+M006119
+006120
+M006120
+006121
+M006121
+006122
+M006122
+006123
+M006123
+006124
+M006124
+006125
+M006125
+006126
+M006126
+006127
+M006127
+006128
+M006128
+006129
+M006129
+006130
+M006130
+006131
+M006131
+006132
+M006132
+006133
+M006133
+006134
+M006134
+006135
+M006135
+006136
+M006136
+006137
+M006137
+006138
+M006138
+006139
+M006139
+006140
+M006140
+006141
+M006141
+006142
+M006142
+006143
+M006143
+006144
+M006144
+006155
+M006155
+006156
+M006156
+006157
+M006157
+006158
+M006158
+006159
+M006159
+006160
+M006160
+006161
+M006161
+006162
+M006162
+006163
+M006163
+006164
+M006164
+006165
+M006165
+006166
+M006166
+006167
+M006167
+006168
+M006168
+006169
+M006169
+006170
+M006170
+006171
+M006171
+006172
+M006172
+006173
+M006173
+006174
+M006174
+006175
+M006175
+006176
+M006176
+006177
+M006177
+006178
+M006178
+006179
+M006179
+006180
+M006180
+006181
+M006181
+006182
+M006182
+006183
+M006183
+006184
+M006184
+006185
+M006185
+006186
+M006186
+006187
+M006187
+006188
+M006188
+006189
+M006189
+006190
+M006190
+006191
+M006191
+006192
+M006192
+006193
+M006193
+006194
+M006194
+006195
+M006195
+006196
+M006196
+006197
+M006197
+006198
+M006198
+006199
+M006199
+006200
+M006200
+006201
+M006201
+006202
+M006202
+006203
+M006203
+006204
+M006204
+006205
+M006205
+006206
+M006206
+006207
+M006207
+006208
+M006208
+006209
+M006209
+006210
+M006210
+006211
+M006211
+006212
+M006212
+006213
+M006213
+006214
+M006214
+006215
+M006215
+006216
+M006216
+006217
+M006217
+006218
+M006218
+006219
+M006219
+006220
+M006220
+006221
+M006221
+006222
+M006222
+006223
+M006223
+006224
+M006224
+006225
+M006225
+006226
+M006226
+006227
+M006227
+006228
+M006228
+006229
+M006229
+006230
+M006230
+006231
+M006231
+006232
+M006232
+006233
+M006233
+006234
+M006234
+006235
+M006235
+006236
+M006236
+006237
+M006237
+006238
+M006238
+006239
+M006239
+006240
+M006240
+006241
+M006241
+006242
+M006242
+006243
+M006243
+006244
+M006244
+006245
+M006245
+006246
+M006246
+006247
+M006247
+006248
+M006248
+006249
+M006249
+006250
+M006250
+006251
+M006251
+006252
+M006252
+006253
+M006253
+006254
+M006254
+006286
+M006286
+006287
+M006287
+006288
+M006288
+006289
+M006289
+006290
+M006290
+006291
+M006291
+006292
+M006292
+006293
+M006293
+006294
+M006294
+006295
+M006295
+006296
+M006296
+006297
+M006297
+006298
+M006298
+006299
+M006299
+006300
+M006300
+006301
+M006301
+006302
+M006302
+006303
+M006303
+006315
+M006315
+006316
+M006316
+006317
+M006317
+006318
+M006318
+006319
+M006319
+006320
+M006320
+006321
+M006321
+006322
+M006322
+006323
+M006323
+006324
+M006324
+006325
+M006325
+006326
+M006326
+006327
+M006327
+006328
+M006328
+006335
+M006335
+006336
+M006336
+006337
+M006337
+006338
+M006338
+006339
+M006339
+006340
+M006340
+006341
+M006341
+006342
+M006342
+006343
+M006343
+006344
+M006344
+006345
+M006345
+006346
+M006346
+006347
+M006347
+006348
+M006348
+006349
+M006349
+006350
+M006350
+006351
+M006351
+006352
+M006352
+006353
+M006353
+006354
+M006354
+006355
+M006355
+006356
+M006356
+006357
+M006357
+006358
+M006358
+006359
+M006359
+006361
+M006361
+006362
+M006362
+006363
+M006363
+006364
+M006364
+006365
+M006365
+006366
+M006366
+006367
+M006367
+006368
+M006368
+006369
+M006369
+006370
+M006370
+006371
+M006371
+006372
+M006372
+006373
+M006373
+006374
+M006374
+006375
+M006375
+006376
+M006376
+006377
+M006377
+006378
+M006378
+006379
+M006379
+006380
+M006380
+006381
+M006381
+006382
+M006382
+006383
+M006383
+006384
+M006384
+006385
+M006385
+006386
+M006386
+006387
+M006387
+006388
+M006388
+006389
+M006389
+006390
+M006390
+006391
+M006391
+006392
+M006392
+006393
+M006393
+006394
+M006394
+006395
+M006395
+006396
+M006396
+006397
+M006397
+006398
+M006398
+006399
+M006399
+006400
+M006400
+006401
+M006401
+006402
+M006402
+006403
+M006403
+006404
+M006404
+006405
+M006405
+006406
+M006406
+006407
+M006407
+006408
+M006408
+006409
+M006409
+006410
+M006410
+006411
+M006411
+006412
+M006412
+006413
+M006413
+006414
+M006414
+006416
+M006416
+006417
+M006417
+006418
+M006418
+006419
+M006419
+006420
+M006420
+006421
+M006421
+006422
+M006422
+006423
+M006423
+006424
+M006424
+006425
+M006425
+006426
+M006426
+006427
+M006427
+006428
+M006428
+006429
+M006429
+006430
+M006430
+006431
+M006431
+006432
+M006432
+006433
+M006433
+006434
+M006434
+006435
+M006435
+006436
+M006436
+006437
+M006437
+006438
+M006438
+006439
+M006439
+006440
+M006440
+006441
+M006441
+006442
+M006442
+006443
+M006443
+006444
+M006444
+006445
+M006445
+006446
+M006446
+006447
+M006447
+006448
+M006448
+006449
+M006449
+006450
+M006450
+006456
+M006456
+006457
+M006457
+006458
+M006458
+006459
+M006459
+006460
+M006460
+006461
+M006461
+006462
+M006462
+006463
+M006463
+006464
+M006464
+006465
+M006465
+006466
+M006466
+006467
+M006467
+006468
+M006468
+006469
+M006469
+006470
+M006470
+006471
+M006471
+006472
+M006472
+006473
+M006473
+006474
+M006474
+006475
+M006475
+006476
+M006476
+006477
+M006477
+006478
+M006478
+006479
+M006479
+006480
+M006480
+006481
+M006481
+006482
+M006482
+006483
+M006483
+006484
+M006484
+006485
+M006485
+006486
+M006486
+006487
+M006487
+006488
+M006488
+006489
+M006489
+006490
+M006490
+006491
+M006491
+006492
+M006492
+006493
+M006493
+006494
+M006494
+006495
+M006495
+006496
+M006496
+006497
+M006497
+006498
+M006498
+006499
+M006499
+006500
+M006500
+006501
+M006501
+006502
+M006502
+006503
+M006503
+006504
+M006504
+006505
+M006505
+006506
+M006506
+006507
+M006507
+006508
+M006508
+006509
+M006509
+006510
+M006510
+006511
+M006511
+006512
+M006512
+006513
+M006513
+006514
+M006514
+006515
+M006515
+006516
+M006516
+006517
+M006517
+006518
+M006518
+006519
+M006519
+006520
+M006520
+006521
+M006521
+006522
+M006522
+006523
+M006523
+006524
+M006524
+006525
+M006525
+006526
+M006526
+006527
+M006527
+006528
+M006528
+006529
+M006529
+006530
+M006530
+006531
+M006531
+006532
+M006532
+006533
+M006533
+006534
+M006534
+006535
+M006535
+006536
+M006536
+006537
+M006537
+006538
+M006538
+006539
+M006539
+006540
+M006540
+006541
+M006541
+006542
+M006542
+006543
+M006543
+006544
+M006544
+006545
+M006545
+006546
+M006546
+006547
+M006547
+006548
+M006548
+006549
+M006549
+006550
+M006550
+006551
+M006551
+006552
+M006552
+006553
+M006553
+006554
+M006554
+006555
+M006555
+006556
+M006556
+006557
+M006557
+006558
+M006558
+006559
+M006559
+006560
+M006560
+006561
+M006561
+006562
+M006562
+006563
+M006563
+006564
+M006564
+006565
+M006565
+006566
+M006566
+006567
+M006567
+006568
+M006568
+006569
+M006569
+006570
+M006570
+006571
+M006571
+006572
+M006572
+006573
+M006573
+006574
+M006574
+006575
+M006575
+006576
+M006576
+006577
+M006577
+006578
+M006578
+006579
+M006579
+006580
+M006580
+006581
+M006581
+006582
+M006582
+006583
+M006583
+006584
+M006584
+006585
+M006585
+006586
+M006586
+006587
+M006587
+006588
+M006588
+006589
+M006589
+006590
+M006590
+006591
+M006591
+006592
+M006592
+006593
+M006593
+006594
+M006594
+006595
+M006595
+006596
+M006596
+006597
+M006597
+006598
+M006598
+006599
+M006599
+006600
+M006600
+006601
+M006601
+006602
+M006602
+006603
+M006603
+006604
+M006604
+006605
+M006605
+006606
+M006606
+006607
+M006607
+006608
+M006608
+006609
+M006609
+006610
+M006610
+006611
+M006611
+006612
+M006612
+006613
+M006613
+006614
+M006614
+006615
+M006615
+006616
+M006616
+006627
+M006627
+006628
+M006628
+006629
+M006629
+006630
+M006630
+006631
+M006631
+006632
+M006632
+006636
+M006636
+006637
+M006637
+006638
+M006638
+006639
+M006639
+006640
+M006640
+006641
+M006641
+006642
+M006642
+006643
+M006643
+006644
+M006644
+006645
+M006645
+006646
+M006646
+006647
+M006647
+006648
+M006648
+006649
+M006649
+006650
+M006650
+006651
+M006651
+006652
+M006652
+006653
+M006653
+006654
+M006654
+006656
+M006656
+006657
+M006657
+006658
+M006658
+006659
+M006659
+006660
+M006660
+006661
+M006661
+006662
+M006662
+006663
+M006663
+006664
+M006664
+006665
+M006665
+006666
+M006666
+006667
+M006667
+006668
+M006668
+006669
+M006669
+006670
+M006670
+006671
+M006671
+006672
+M006672
+006673
+M006673
+006674
+M006674
+006675
+M006675
+006676
+M006676
+006677
+M006677
+006678
+M006678
+006679
+M006679
+006680
+M006680
+006681
+M006681
+006682
+M006682
+006683
+M006683
+006684
+M006684
+006685
+M006685
+006686
+M006686
+006687
+M006687
+006688
+M006688
+006689
+M006689
+006690
+M006690
+006691
+M006691
+006692
+M006692
+006693
+M006693
+006694
+M006694
+006695
+M006695
+006696
+M006696
+006697
+M006697
+006698
+M006698
+006699
+M006699
+006700
+M006700
+006701
+M006701
+006702
+M006702
+006703
+M006703
+006704
+M006704
+006705
+M006705
+006706
+M006706
+006707
+M006707
+006708
+M006708
+006709
+M006709
+006710
+M006710
+006711
+M006711
+006712
+M006712
+006713
+M006713
+006714
+M006714
+006715
+M006715
+006722
+M006722
+006723
+M006723
+006724
+M006724
+006725
+M006725
+006726
+M006726
+006727
+M006727
+006728
+M006728
+006729
+M006729
+006730
+M006730
+006731
+M006731
+006732
+M006732
+006733
+M006733
+006734
+M006734
+006735
+M006735
+006736
+M006736
+006737
+M006737
+006738
+M006738
+006739
+M006739
+006740
+M006740
+006741
+M006741
+006743
+M006743
+006744
+M006744
+006745
+M006745
+006746
+M006746
+006747
+M006747
+006748
+M006748
+006749
+M006749
+006750
+M006750
+006751
+M006751
+006752
+M006752
+006753
+M006753
+006754
+M006754
+006755
+M006755
+006756
+M006756
+006757
+M006757
+006758
+M006758
+006759
+M006759
+006760
+M006760
+006761
+M006761
+006762
+M006762
+006763
+M006763
+006764
+M006764
+006765
+M006765
+006766
+M006766
+006767
+M006767
+006768
+M006768
+006769
+M006769
+006770
+M006770
+006771
+M006771
+006772
+M006772
+006773
+M006773
+006774
+M006774
+006775
+M006775
+006776
+M006776
+006777
+M006777
+006778
+M006778
+006779
+M006779
+006780
+M006780
+006781
+M006781
+006782
+M006782
+006783
+M006783
+006784
+M006784
+006785
+M006785
+006786
+M006786
+006787
+M006787
+006788
+M006788
+006796
+M006796
+006797
+M006797
+006798
+M006798
+006799
+M006799
+006800
+M006800
+006801
+M006801
+006802
+M006802
+006803
+M006803
+006804
+M006804
+006805
+M006805
+006817
+M006817
+006818
+M006818
+006819
+M006819
+006820
+M006820
+006821
+M006821
+006822
+M006822
+006823
+M006823
+006824
+M006824
+006825
+M006825
+006826
+M006826
+006827
+M006827
+006828
+M006828
+006829
+M006829
+006830
+M006830
+006831
+M006831
+006832
+M006832
+006833
+M006833
+006834
+M006834
+006835
+M006835
+006836
+M006836
+006837
+M006837
+006838
+M006838
+006839
+M006839
+006840
+M006840
+006841
+M006841
+006842
+M006842
+006843
+M006843
+006844
+M006844
+006845
+M006845
+006846
+M006846
+006847
+M006847
+006848
+M006848
+006849
+M006849
+006850
+M006850
+006851
+M006851
+006852
+M006852
+006853
+M006853
+006854
+M006854
+006855
+M006855
+006856
+M006856
+006857
+M006857
+006858
+M006858
+006859
+M006859
+006860
+M006860
+006861
+M006861
+006862
+M006862
+006863
+M006863
+006864
+M006864
+006865
+M006865
+006866
+M006866
+006867
+M006867
+006868
+M006868
+006869
+M006869
+006870
+M006870
+006871
+M006871
+006872
+M006872
+006875
+M006875
+006876
+M006876
+006877
+M006877
+006878
+M006878
+006879
+M006879
+006880
+M006880
+006881
+M006881
+006882
+M006882
+006883
+M006883
+006884
+M006884
+006894
+M006894
+006895
+M006895
+006896
+M006896
+006897
+M006897
+006898
+M006898
+006899
+M006899
+006900
+M006900
+006937
+M006937
+006938
+M006938
+006939
+M006939
+006940
+M006940
+006941
+M006941
+006942
+M006942
+006943
+M006943
+006944
+M006944
+006945
+M006945
+006946
+M006946
+006947
+M006947
+006948
+M006948
+006949
+M006949
+006950
+M006950
+006951
+M006951
+006952
+M006952
+006953
+M006953
+006955
+M006955
+006956
+M006956
+006957
+M006957
+006958
+M006958
+006959
+M006959
+006960
+M006960
+006961
+M006961
+006962
+M006962
+006963
+M006963
+006964
+M006964
+006965
+M006965
+006966
+M006966
+006967
+M006967
+006968
+M006968
+006969
+M006969
+006970
+M006970
+006971
+M006971
+006972
+M006972
+006973
+M006973
+006974
+M006974
+006975
+M006975
+006976
+M006976
+006977
+M006977
+006978
+M006978
+006979
+M006979
+006980
+M006980
+006981
+M006981
+006982
+M006982
+006983
+M006983
+006984
+M006984
+006985
+M006985
+006986
+M006986
+006987
+M006987
+006988
+M006988
+006989
+M006989
+006990
+M006990
+006991
+M006991
+006992
+M006992
+006993
+M006993
+006994
+M006994
+006995
+M006995
+006996
+M006996
+006997
+M006997
+007005
+M007005
+007006
+M007006
+007007
+M007007
+007008
+M007008
+007009
+M007009
+007010
+M007010
+007011
+M007011
+007012
+M007012
+007013
+M007013
+007014
+M007014
+007015
+M007015
+007016
+M007016
+007017
+M007017
+007018
+M007018
+007019
+M007019
+007020
+M007020
+007021
+M007021
+007022
+M007022
+007023
+M007023
+007024
+M007024
+007025
+M007025
+007026
+M007026
+007027
+M007027
+007028
+M007028
+007029
+M007029
+007030
+M007030
+007031
+M007031
+007032
+M007032
+007033
+M007033
+007034
+M007034
+007035
+M007035
+007036
+M007036
+007037
+M007037
+007038
+M007038
+007039
+M007039
+007040
+M007040
+007041
+M007041
+007042
+M007042
+007043
+M007043
+007044
+M007044
+007045
+M007045
+007046
+M007046
+007047
+M007047
+007048
+M007048
+007049
+M007049
+007050
+M007050
+007051
+M007051
+007052
+M007052
+007053
+M007053
+007054
+M007054
+007055
+M007055
+007056
+M007056
+007057
+M007057
+007058
+M007058
+007059
+M007059
+007060
+M007060
+007066
+M007066
+007067
+M007067
+007068
+M007068
+007069
+M007069
+007070
+M007070
+007071
+M007071
+007072
+M007072
+007073
+M007073
+007074
+M007074
+007075
+M007075
+007076
+M007076
+007077
+M007077
+007078
+M007078
+007079
+M007079
+007080
+M007080
+007081
+M007081
+007082
+M007082
+007083
+M007083
+007084
+M007084
+007085
+M007085
+007086
+M007086
+007087
+M007087
+007088
+M007088
+007089
+M007089
+007090
+M007090
+007091
+M007091
+007092
+M007092
+007093
+M007093
+007094
+M007094
+007095
+M007095
+007096
+M007096
+007097
+M007097
+007098
+M007098
+007099
+M007099
+007100
+M007100
+007101
+M007101
+007102
+M007102
+007103
+M007103
+007104
+M007104
+007105
+M007105
+007113
+M007113
+007115
+M007115
+007116
+M007116
+007117
+M007117
+007118
+M007118
+007119
+M007119
+007120
+M007120
+007121
+M007121
+007122
+M007122
+007123
+M007123
+007124
+M007124
+007125
+M007125
+007126
+M007126
+007127
+M007127
+007128
+M007128
+007129
+M007129
+007130
+M007130
+007131
+M007131
+007132
+M007132
+007133
+M007133
+007134
+M007134
+007135
+M007135
+007136
+M007136
+007137
+M007137
+007138
+M007138
+007139
+M007139
+007140
+M007140
+007141
+M007141
+007142
+M007142
+007143
+M007143
+007144
+M007144
+007145
+M007145
+007146
+M007146
+007147
+M007147
+007148
+M007148
+007149
+M007149
+007150
+M007150
+007151
+M007151
+007152
+M007152
+007153
+M007153
+007154
+M007154
+007155
+M007155
+007156
+M007156
+007157
+M007157
+007158
+M007158
+007159
+M007159
+007160
+M007160
+007161
+M007161
+007162
+M007162
+007210
+M007210
+007211
+M007211
+007212
+M007212
+007213
+M007213
+007214
+M007214
+007215
+M007215
+007216
+M007216
+007217
+M007217
+007218
+M007218
+007219
+M007219
+007220
+M007220
+007221
+M007221
+007222
+M007222
+007223
+M007223
+007224
+M007224
+007225
+M007225
+007226
+M007226
+007227
+M007227
+007228
+M007228
+007229
+M007229
+007230
+M007230
+007231
+M007231
+007232
+M007232
+007233
+M007233
+007234
+M007234
+007235
+M007235
+007236
+M007236
+007237
+M007237
+007238
+M007238
+007239
+M007239
+007240
+M007240
+007241
+M007241
+007242
+M007242
+007243
+M007243
+007244
+M007244
+007245
+M007245
+007246
+M007246
+007247
+M007247
+007248
+M007248
+007249
+M007249
+007250
+M007250
+007251
+M007251
+007252
+M007252
+007253
+M007253
+007254
+M007254
+007255
+M007255
+007264
+M007264
+007265
+M007265
+007266
+M007266
+007267
+M007267
+007273
+M007273
+007274
+M007274
+007275
+M007275
+007276
+M007276
+007277
+M007277
+007278
+M007278
+007279
+M007279
+007280
+M007280
+007281
+M007281
+007282
+M007282
+007283
+M007283
+007284
+M007284
+007285
+M007285
+007286
+M007286
+007287
+M007287
+007288
+M007288
+007289
+M007289
+007290
+M007290
+007291
+M007291
+007292
+M007292
+007313
+M007313
+007314
+M007314
+007315
+M007315
+007316
+M007316
+007317
+M007317
+007318
+M007318
+007319
+M007319
+007320
+M007320
+007321
+M007321
+007322
+M007322
+007323
+M007323
+007324
+M007324
+007325
+M007325
+007326
+M007326
+007336
+M007336
+007337
+M007337
+007338
+M007338
+007339
+M007339
+007340
+M007340
+007359
+M007359
+007360
+M007360
+007361
+M007361
+007362
+M007362
+007363
+M007363
+007364
+M007364
+007365
+M007365
+007366
+M007366
+007367
+M007367
+007368
+M007368
+007372
+M007372
+007373
+M007373
+007374
+M007374
+007375
+M007375
+007376
+M007376
+007377
+M007377
+007378
+M007378
+007379
+M007379
+007380
+M007380
+007381
+M007381
+007382
+M007382
+007383
+M007383
+007384
+M007384
+007385
+M007385
+007386
+M007386
+007387
+M007387
+007388
+M007388
+007389
+M007389
+007390
+M007390
+007391
+M007391
+007392
+M007392
+007393
+M007393
+007394
+M007394
+007395
+M007395
+007396
+M007396
+007397
+M007397
+007398
+M007398
+007399
+M007399
+007400
+M007400
+007401
+M007401
+007402
+M007402
+007403
+M007403
+007404
+M007404
+007405
+M007405
+007406
+M007406
+007412
+M007412
+007413
+M007413
+007414
+M007414
+007415
+M007415
+007416
+M007416
+007443
+M007443
+007444
+M007444
+007445
+M007445
+007446
+M007446
+007447
+M007447
+007448
+M007448
+007449
+M007449
+007450
+M007450
+007451
+M007451
+007452
+M007452
+007453
+M007453
+007454
+M007454
+007455
+M007455
+007456
+M007456
+007457
+M007457
+007458
+M007458
+007459
+M007459
+007460
+M007460
+007461
+M007461
+007462
+M007462
+007463
+M007463
+007464
+M007464
+007465
+M007465
+007466
+M007466
+007467
+M007467
+007468
+M007468
+007469
+M007469
+007470
+M007470
+007471
+M007471
+007472
+M007472
+007473
+M007473
+007474
+M007474
+007475
+M007475
+007476
+M007476
+007477
+M007477
+007478
+M007478
+007479
+M007479
+007480
+M007480
+007481
+M007481
+007482
+M007482
+007483
+M007483
+007484
+M007484
+007485
+M007485
+007486
+M007486
+007487
+M007487
+007488
+M007488
+007489
+M007489
+007490
+M007490
+007491
+M007491
+007492
+M007492
+007493
+M007493
+007494
+M007494
+007495
+M007495
+007496
+M007496
+007497
+M007497
+007498
+M007498
+007499
+M007499
+007500
+M007500
+007501
+M007501
+007502
+M007502
+007503
+M007503
+007504
+M007504
+007505
+M007505
+007506
+M007506
+007507
+M007507
+007508
+M007508
+007509
+M007509
+007510
+M007510
+007511
+M007511
+007512
+M007512
+007513
+M007513
+007514
+M007514
+007515
+M007515
+007516
+M007516
+007517
+M007517
+007518
+M007518
+007519
+M007519
+007520
+M007520
+007521
+M007521
+007522
+M007522
+007523
+M007523
+007524
+M007524
+007525
+M007525
+007526
+M007526
+007527
+M007527
+007528
+M007528
+007529
+M007529
+007530
+M007530
+007531
+M007531
+007532
+M007532
+007533
+M007533
+007534
+M007534
+007535
+M007535
+007536
+M007536
+007537
+M007537
+007538
+M007538
+007539
+M007539
+007540
+M007540
+007541
+M007541
+007542
+M007542
+007543
+M007543
+007544
+M007544
+007545
+M007545
+007546
+M007546
+007547
+M007547
+007548
+M007548
+007549
+M007549
+007550
+M007550
+007551
+M007551
+007552
+M007552
+007553
+M007553
+007554
+M007554
+007555
+M007555
+007556
+M007556
+007557
+M007557
+007558
+M007558
+007559
+M007559
+007560
+M007560
+007561
+M007561
+007562
+M007562
+007563
+M007563
+007564
+M007564
+007565
+M007565
+007566
+M007566
+007567
+M007567
+007568
+M007568
+007569
+M007569
+007570
+M007570
+007571
+M007571
+007572
+M007572
+007573
+M007573
+007574
+M007574
+007575
+M007575
+007576
+M007576
+007577
+M007577
+007578
+M007578
+007579
+M007579
+007580
+M007580
+007586
+M007586
+007587
+M007587
+007588
+M007588
+007589
+M007589
+007590
+M007590
+007591
+M007591
+007592
+M007592
+007593
+M007593
+007594
+M007594
+007595
+M007595
+007596
+M007596
+007597
+M007597
+007598
+M007598
+007599
+M007599
+007600
+M007600
+007601
+M007601
+007602
+M007602
+007603
+M007603
+007604
+M007604
+007605
+M007605
+007606
+M007606
+007607
+M007607
+007608
+M007608
+007609
+M007609
+007610
+M007610
+007611
+M007611
+007612
+M007612
+007613
+M007613
+007614
+M007614
+007615
+M007615
+007616
+M007616
+007617
+M007617
+007618
+M007618
+007619
+M007619
+007620
+M007620
+007621
+M007621
+007622
+M007622
+007623
+M007623
+007624
+M007624
+007625
+M007625
+007626
+M007626
+007627
+M007627
+007628
+M007628
+007629
+M007629
+007630
+M007630
+007631
+M007631
+007632
+M007632
+007633
+M007633
+007634
+M007634
+007635
+M007635
+007636
+M007636
+007637
+M007637
+007638
+M007638
+007639
+M007639
+007640
+M007640
+007641
+M007641
+007642
+M007642
+007643
+M007643
+007644
+M007644
+007645
+M007645
+007646
+M007646
+007647
+M007647
+007648
+M007648
+007649
+M007649
+007650
+M007650
+007651
+M007651
+007652
+M007652
+007660
+M007660
+007661
+M007661
+007662
+M007662
+007663
+M007663
+007664
+M007664
+007665
+M007665
+007666
+M007666
+007667
+M007667
+007668
+M007668
+007669
+M007669
+007670
+M007670
+007671
+M007671
+007672
+M007672
+007673
+M007673
+007674
+M007674
+007675
+M007675
+007676
+M007676
+007677
+M007677
+007678
+M007678
+007679
+M007679
+007680
+M007680
+007681
+M007681
+007682
+M007682
+007683
+M007683
+007684
+M007684
+007685
+M007685
+007686
+M007686
+007687
+M007687
+007688
+M007688
+007689
+M007689
+007690
+M007690
+007691
+M007691
+007692
+M007692
+007693
+M007693
+007694
+M007694
+007695
+M007695
+007696
+M007696
+007705
+M007705
+007706
+M007706
+007707
+M007707
+007708
+M007708
+007709
+M007709
+007710
+M007710
+007711
+M007711
+007712
+M007712
+007713
+M007713
+007714
+M007714
+007715
+M007715
+007716
+M007716
+007717
+M007717
+007718
+M007718
+007719
+M007719
+007720
+M007720
+007721
+M007721
+007722
+M007722
+007723
+M007723
+007724
+M007724
+007725
+M007725
+007726
+M007726
+007727
+M007727
+007728
+M007728
+007729
+M007729
+007730
+M007730
+007731
+M007731
+007732
+M007732
+007733
+M007733
+007734
+M007734
+007735
+M007735
+007736
+M007736
+007737
+M007737
+007745
+M007745
+007746
+M007746
+007747
+M007747
+007748
+M007748
+007749
+M007749
+007750
+M007750
+007751
+M007751
+007752
+M007752
+007753
+M007753
+007754
+M007754
+007755
+M007755
+007756
+M007756
+007757
+M007757
+007788
+M007788
+007789
+M007789
+007790
+M007790
+007791
+M007791
+007792
+M007792
+007793
+M007793
+007794
+M007794
+007795
+M007795
+007796
+M007796
+007797
+M007797
+007798
+M007798
+007799
+M007799
+007805
+M007805
+007806
+M007806
+007807
+M007807
+007808
+M007808
+007809
+M007809
+007810
+M007810
+007811
+M007811
+007812
+M007812
+007814
+M007814
+007815
+M007815
+007816
+M007816
+007817
+M007817
+007818
+M007818
+007819
+M007819
+007820
+M007820
+007821
+M007821
+007822
+M007822
+007823
+M007823
+007824
+M007824
+007825
+M007825
+007826
+M007826
+007827
+M007827
+007828
+M007828
+007841
+M007841
+007842
+M007842
+007843
+M007843
+007844
+M007844
+007845
+M007845
+007846
+M007846
+007847
+M007847
+007848
+M007848
+007849
+M007849
+007855
+M007855
+007856
+M007856
+007857
+M007857
+007858
+M007858
+007859
+M007859
+007860
+M007860
+007861
+M007861
+007862
+M007862
+007863
+M007863
+007864
+M007864
+007865
+M007865
+007866
+M007866
+007867
+M007867
+007868
+M007868
+007869
+M007869
+007870
+M007870
+007871
+M007871
+007872
+M007872
+007873
+M007873
+007874
+M007874
+007875
+M007875
+007876
+M007876
+007877
+M007877
+007878
+M007878
+007879
+M007879
+007880
+M007880
+007881
+M007881
+007882
+M007882
+007883
+M007883
+007884
+M007884
+007885
+M007885
+007886
+M007886
+007887
+M007887
+007888
+M007888
+007889
+M007889
+007890
+M007890
+007891
+M007891
+007892
+M007892
+007893
+M007893
+007894
+M007894
+007895
+M007895
+007896
+M007896
+007897
+M007897
+007898
+M007898
+007899
+M007899
+007900
+M007900
+007901
+M007901
+007902
+M007902
+007903
+M007903
+007904
+M007904
+007911
+M007911
+007912
+M007912
+007913
+M007913
+007914
+M007914
+007915
+M007915
+007916
+M007916
+007917
+M007917
+007918
+M007918
+007919
+M007919
+007920
+M007920
+007921
+M007921
+007922
+M007922
+007923
+M007923
+007924
+M007924
+007925
+M007925
+007926
+M007926
+007927
+M007927
+007928
+M007928
+007929
+M007929
+007930
+M007930
+007931
+M007931
+007932
+M007932
+007933
+M007933
+007934
+M007934
+007935
+M007935
+007936
+M007936
+007937
+M007937
+007938
+M007938
+007939
+M007939
+007940
+M007940
+007941
+M007941
+007942
+M007942
+007948
+M007948
+007949
+M007949
+007950
+M007950
+007951
+M007951
+007952
+M007952
+007953
+M007953
+007954
+M007954
+007955
+M007955
+007956
+M007956
+007957
+M007957
+007958
+M007958
+007959
+M007959
+007960
+M007960
+007961
+M007961
+007962
+M007962
+007963
+M007963
+007964
+M007964
+007965
+M007965
+007966
+M007966
+007967
+M007967
+007968
+M007968
+007969
+M007969
+007970
+M007970
+007971
+M007971
+007972
+M007972
+007973
+M007973
+007974
+M007974
+007975
+M007975
+007976
+M007976
+007977
+M007977
+007978
+M007978
+007979
+M007979
+007980
+M007980
+007981
+M007981
+007982
+M007982
+007983
+M007983
+007984
+M007984
+007989
+M007989
+007990
+M007990
+007991
+M007991
+007992
+M007992
+007993
+M007993
+007994
+M007994
+007995
+M007995
+007996
+M007996
+007997
+M007997
+007998
+M007998
+007999
+M007999
+008000
+M008000
+008006
+M008006
+008007
+M008007
+008008
+M008008
+008009
+M008009
+008010
+M008010
+008011
+M008011
+008012
+M008012
+008013
+M008013
+008014
+M008014
+008015
+M008015
+008016
+M008016
+008017
+M008017
+008018
+M008018
+008019
+M008019
+008020
+M008020
+008021
+M008021
+008022
+M008022
+008023
+M008023
+008024
+M008024
+008025
+M008025
+008069
+M008069
+008070
+M008070
+008071
+M008071
+008072
+M008072
+008073
+M008073
+008074
+M008074
+008075
+M008075
+008076
+M008076
+008077
+M008077
+008078
+M008078
+008079
+M008079
+008080
+M008080
+008081
+M008081
+008082
+M008082
+008090
+M008090
+008091
+M008091
+008092
+M008092
+008093
+M008093
+008094
+M008094
+008095
+M008095
+008096
+M008096
+008097
+M008097
+008098
+M008098
+008099
+M008099
+008100
+M008100
+008101
+M008101
+008102
+M008102
+008103
+M008103
+008104
+M008104
+008105
+M008105
+008106
+M008106
+008107
+M008107
+008108
+M008108
+008109
+M008109
+008110
+M008110
+008111
+M008111
+008112
+M008112
+008113
+M008113
+008114
+M008114
+008115
+M008115
+008116
+M008116
+008117
+M008117
+008118
+M008118
+008119
+M008119
+008120
+M008120
+008121
+M008121
+008122
+M008122
+008123
+M008123
+008124
+M008124
+008125
+M008125
+008126
+M008126
+008132
+M008132
+008133
+M008133
+008134
+M008134
+008135
+M008135
+008136
+M008136
+008137
+M008137
+008138
+M008138
+008139
+M008139
+008140
+M008140
+008141
+M008141
+008143
+M008143
+008144
+M008144
+008145
+M008145
+008146
+M008146
+008147
+M008147
+008148
+M008148
+008149
+M008149
+008150
+M008150
+008151
+M008151
+008152
+M008152
+008153
+M008153
+008154
+M008154
+008155
+M008155
+008156
+M008156
+008157
+M008157
+008158
+M008158
+008159
+M008159
+008160
+M008160
+008161
+M008161
+008162
+M008162
+008163
+M008163
+008164
+M008164
+008165
+M008165
+008166
+M008166
+008167
+M008167
+008169
+M008169
+008170
+M008170
+008171
+M008171
+008172
+M008172
+008173
+M008173
+008174
+M008174
+008175
+M008175
+008176
+M008176
+008177
+M008177
+008178
+M008178
+008179
+M008179
+008180
+M008180
+008181
+M008181
+008182
+M008182
+008183
+M008183
+008184
+M008184
+008186
+M008186
+008187
+M008187
+008188
+M008188
+008189
+M008189
+008190
+M008190
+008191
+M008191
+008192
+M008192
+008193
+M008193
+008194
+M008194
+008195
+M008195
+008196
+M008196
+008197
+M008197
+008198
+M008198
+008199
+M008199
+008200
+M008200
+008201
+M008201
+008202
+M008202
+008203
+M008203
+008204
+M008204
+008205
+M008205
+008206
+M008206
+008207
+M008207
+008208
+M008208
+008209
+M008209
+008210
+M008210
+008211
+M008211
+008212
+M008212
+008213
+M008213
+008214
+M008214
+008215
+M008215
+008216
+M008216
+008217
+M008217
+008218
+M008218
+008219
+M008219
+008220
+M008220
+008221
+M008221
+008222
+M008222
+008223
+M008223
+008224
+M008224
+008225
+M008225
+008226
+M008226
+008227
+M008227
+008228
+M008228
+008229
+M008229
+008230
+M008230
+008231
+M008231
+008232
+M008232
+008233
+M008233
+008234
+M008234
+008235
+M008235
+008236
+M008236
+008237
+M008237
+008238
+M008238
+008239
+M008239
+008240
+M008240
+008241
+M008241
+008242
+M008242
+008243
+M008243
+008244
+M008244
+008245
+M008245
+008246
+M008246
+008247
+M008247
+008248
+M008248
+008249
+M008249
+008250
+M008250
+008251
+M008251
+008252
+M008252
+008253
+M008253
+008254
+M008254
+008255
+M008255
+008256
+M008256
+008257
+M008257
+008258
+M008258
+008259
+M008259
+008265
+M008265
+008266
+M008266
+008271
+M008271
+008272
+M008272
+008273
+M008273
+008274
+M008274
+008275
+M008275
+008276
+M008276
+008277
+M008277
+008278
+M008278
+008279
+M008279
+008280
+M008280
+008281
+M008281
+008282
+M008282
+008283
+M008283
+008284
+M008284
+008285
+M008285
+008286
+M008286
+008287
+M008287
+008288
+M008288
+008289
+M008289
+008290
+M008290
+008291
+M008291
+008292
+M008292
+008293
+M008293
+008294
+M008294
+008295
+M008295
+008296
+M008296
+008297
+M008297
+008298
+M008298
+008299
+M008299
+008300
+M008300
+008301
+M008301
+008302
+M008302
+008303
+M008303
+008304
+M008304
+008305
+M008305
+008306
+M008306
+008312
+M008312
+008313
+M008313
+008314
+M008314
+008315
+M008315
+008316
+M008316
+008392
+M008392
+008393
+M008393
+008394
+M008394
+008395
+M008395
+008407
+M008407
+008408
+M008408
+008409
+M008409
+008410
+M008410
+008411
+M008411
+008412
+M008412
+008416
+M008416
+008417
+M008417
+008418
+M008418
+008419
+M008419
+008420
+M008420
+008430
+M008430
+008431
+M008431
+008432
+M008432
+008433
+M008433
+008434
+M008434
+008435
+M008435
+008436
+M008436
+008437
+M008437
+008438
+M008438
+008439
+M008439
+008440
+M008440
+008441
+M008441
+008442
+M008442
+008443
+M008443
+008444
+M008444
+008445
+M008445
+008446
+M008446
+008447
+M008447
+008448
+M008448
+008449
+M008449
+008450
+M008450
+008451
+M008451
+008456
+M008456
+008457
+M008457
+008458
+M008458
+008459
+M008459
+008460
+M008460
+008461
+M008461
+008462
+M008462
+008463
+M008463
+008464
+M008464
+008465
+M008465
+008466
+M008466
+008467
+M008467
+008477
+M008477
+008478
+M008478
+008479
+M008479
+008480
+M008480
+008481
+M008481
+008482
+M008482
+008483
+M008483
+008484
+M008484
+008485
+M008485
+008486
+M008486
+008487
+M008487
+008488
+M008488
+008489
+M008489
+008490
+M008490
+008500
+M008500
+008501
+M008501
+008502
+M008502
+008503
+M008503
+008504
+M008504
+008505
+M008505
+008506
+M008506
+008507
+M008507
+008508
+M008508
+008509
+M008509
+008510
+M008510
+008511
+M008511
+008512
+M008512
+008513
+M008513
+008514
+M008514
+008515
+M008515
+008516
+M008516
+008517
+M008517
+008518
+M008518
+008519
+M008519
+008520
+M008520
+008521
+M008521
+008522
+M008522
+008523
+M008523
+008524
+M008524
+008525
+M008525
+008526
+M008526
+008527
+M008527
+008528
+M008528
+008529
+M008529
+008530
+M008530
+008531
+M008531
+008532
+M008532
+008533
+M008533
+008534
+M008534
+008535
+M008535
+008536
+M008536
+008537
+M008537
+008538
+M008538
+008539
+M008539
+008540
+M008540
+008541
+M008541
+008542
+M008542
+008543
+M008543
+008544
+M008544
+008545
+M008545
+008546
+M008546
+008547
+M008547
+008548
+M008548
+008549
+M008549
+008550
+M008550
+008551
+M008551
+008552
+M008552
+008553
+M008553
+008554
+M008554
+008555
+M008555
+008556
+M008556
+008557
+M008557
+008558
+M008558
+008559
+M008559
+008560
+M008560
+008561
+M008561
+008562
+M008562
+008563
+M008563
+008564
+M008564
+008565
+M008565
+008566
+M008566
+008567
+M008567
+008568
+M008568
+008569
+M008569
+008570
+M008570
+008571
+M008571
+008572
+M008572
+008573
+M008573
+008574
+M008574
+008575
+M008575
+008576
+M008576
+008577
+M008577
+008578
+M008578
+008579
+M008579
+008580
+M008580
+008581
+M008581
+008582
+M008582
+008583
+M008583
+008584
+M008584
+008585
+M008585
+008586
+M008586
+008587
+M008587
+008588
+M008588
+008589
+M008589
+008590
+M008590
+008598
+M008598
+008599
+M008599
+008600
+M008600
+008601
+M008601
+008602
+M008602
+008603
+M008603
+008604
+M008604
+008605
+M008605
+008606
+M008606
+008607
+M008607
+008608
+M008608
+008609
+M008609
+008610
+M008610
+008611
+M008611
+008612
+M008612
+008613
+M008613
+008614
+M008614
+008615
+M008615
+008616
+M008616
+008617
+M008617
+008618
+M008618
+008619
+M008619
+008620
+M008620
+008621
+M008621
+008622
+M008622
+008623
+M008623
+008624
+M008624
+008625
+M008625
+008626
+M008626
+008627
+M008627
+008628
+M008628
+008629
+M008629
+008630
+M008630
+008631
+M008631
+008632
+M008632
+008633
+M008633
+008634
+M008634
+008635
+M008635
+008636
+M008636
+008637
+M008637
+008638
+M008638
+008639
+M008639
+008640
+M008640
+008641
+M008641
+008642
+M008642
+008643
+M008643
+008644
+M008644
+008645
+M008645
+008646
+M008646
+008647
+M008647
+008648
+M008648
+008649
+M008649
+008655
+M008655
+008656
+M008656
+008657
+M008657
+008658
+M008658
+008659
+M008659
+008665
+M008665
+008666
+M008666
+008667
+M008667
+008672
+M008672
+008673
+M008673
+008674
+M008674
+008675
+M008675
+008676
+M008676
+008699
+M008699
+008700
+M008700
+008701
+M008701
+008702
+M008702
+008703
+M008703
+008704
+M008704
+008705
+M008705
+008706
+M008706
+008707
+M008707
+008708
+M008708
+008709
+M008709
+008710
+M008710
+008712
+M008712
+008713
+M008713
+008714
+M008714
+008715
+M008715
+008716
+M008716
+008717
+M008717
+008718
+M008718
+008719
+M008719
+008720
+M008720
+008721
+M008721
+008722
+M008722
+008723
+M008723
+008724
+M008724
+008725
+M008725
+008726
+M008726
+008727
+M008727
+008728
+M008728
+008730
+M008730
+008731
+M008731
+008732
+M008732
+008733
+M008733
+008734
+M008734
+008735
+M008735
+008736
+M008736
+008737
+M008737
+008738
+M008738
+008739
+M008739
+008740
+M008740
+008741
+M008741
+008742
+M008742
+008743
+M008743
+008744
+M008744
+008745
+M008745
+008746
+M008746
+008747
+M008747
+008748
+M008748
+008749
+M008749
+008750
+M008750
+008751
+M008751
+008752
+M008752
+008753
+M008753
+008754
+M008754
+008755
+M008755
+008756
+M008756
+008757
+M008757
+008758
+M008758
+008759
+M008759
+008760
+M008760
+008761
+M008761
+008762
+M008762
+008763
+M008763
+008764
+M008764
+008765
+M008765
+008766
+M008766
+008767
+M008767
+008768
+M008768
+008769
+M008769
+008770
+M008770
+008771
+M008771
+008772
+M008772
+008773
+M008773
+008774
+M008774
+008775
+M008775
+008776
+M008776
+008777
+M008777
+008791
+M008791
+008792
+M008792
+008793
+M008793
+008794
+M008794
+008795
+M008795
+008796
+M008796
+008797
+M008797
+008798
+M008798
+008799
+M008799
+008800
+M008800
+008801
+M008801
+008802
+M008802
+008803
+M008803
+008804
+M008804
+008805
+M008805
+008806
+M008806
+008807
+M008807
+008808
+M008808
+008809
+M008809
+008810
+M008810
+008811
+M008811
+008812
+M008812
+008813
+M008813
+008814
+M008814
+008815
+M008815
+008816
+M008816
+008817
+M008817
+008818
+M008818
+008819
+M008819
+008820
+M008820
+008821
+M008821
+008822
+M008822
+008823
+M008823
+008825
+M008825
+008826
+M008826
+008827
+M008827
+008828
+M008828
+008829
+M008829
+008830
+M008830
+008831
+M008831
+008832
+M008832
+008833
+M008833
+008834
+M008834
+008835
+M008835
+008836
+M008836
+008837
+M008837
+008838
+M008838
+008839
+M008839
+008840
+M008840
+008841
+M008841
+008842
+M008842
+008843
+M008843
+008846
+M008846
+008847
+M008847
+008848
+M008848
+008849
+M008849
+008850
+M008850
+008851
+M008851
+008852
+M008852
+008853
+M008853
+008854
+M008854
+008855
+M008855
+008856
+M008856
+008857
+M008857
+008858
+M008858
+008859
+M008859
+008860
+M008860
+008861
+M008861
+008862
+M008862
+008891
+M008891
+008892
+M008892
+008893
+M008893
+008894
+M008894
+008895
+M008895
+008896
+M008896
+008897
+M008897
+008898
+M008898
+008899
+M008899
+008900
+M008900
+008901
+M008901
+008902
+M008902
+008903
+M008903
+008904
+M008904
+008905
+M008905
+008906
+M008906
+008907
+M008907
+008908
+M008908
+008909
+M008909
+008910
+M008910
+008911
+M008911
+008912
+M008912
+008913
+M008913
+008914
+M008914
+008915
+M008915
+008916
+M008916
+008917
+M008917
+008918
+M008918
+008919
+M008919
+008920
+M008920
+008921
+M008921
+008922
+M008922
+008923
+M008923
+008924
+M008924
+008925
+M008925
+008926
+M008926
+008927
+M008927
+008928
+M008928
+008929
+M008929
+008930
+M008930
+008931
+M008931
+008932
+M008932
+008933
+M008933
+008934
+M008934
+008935
+M008935
+008962
+M008962
+008963
+M008963
+008964
+M008964
+008965
+M008965
+008966
+M008966
+008967
+M008967
+008968
+M008968
+008969
+M008969
+008970
+M008970
+008971
+M008971
+008972
+M008972
+008973
+M008973
+008974
+M008974
+008975
+M008975
+008976
+M008976
+008977
+M008977
+008978
+M008978
+008979
+M008979
+008980
+M008980
+008981
+M008981
+008982
+M008982
+008983
+M008983
+008984
+M008984
+008985
+M008985
+008986
+M008986
+008987
+M008987
+008988
+M008988
+008989
+M008989
+008990
+M008990
+008991
+M008991
+008992
+M008992
+008993
+M008993
+008994
+M008994
+008995
+M008995
+008996
+M008996
+008997
+M008997
+008998
+M008998
+008999
+M008999
+009000
+M009000
+009001
+M009001
+009032
+M009032
+009033
+M009033
+009034
+M009034
+009035
+M009035
+009036
+M009036
+009037
+M009037
+009038
+M009038
+009039
+M009039
+009040
+M009040
+009041
+M009041
+009042
+M009042
+009043
+M009043
+009044
+M009044
+009045
+M009045
+009046
+M009046
+009047
+M009047
+009048
+M009048
+009049
+M009049
+009050
+M009050
+009051
+M009051
+009063
+M009063
+009064
+M009064
+009065
+M009065
+009066
+M009066
+009067
+M009067
+009068
+M009068
+009069
+M009069
+009070
+M009070
+009071
+M009071
+009072
+M009072
+009073
+M009073
+009074
+M009074
+009075
+M009075
+009076
+M009076
+009077
+M009077
+009078
+M009078
+009079
+M009079
+009080
+M009080
+009081
+M009081
+009082
+M009082
+009083
+M009083
+009084
+M009084
+009085
+M009085
+009086
+M009086
+009087
+M009087
+009088
+M009088
+009104
+M009104
+009105
+M009105
+009106
+M009106
+009107
+M009107
+009108
+M009108
+009109
+M009109
+009120
+M009120
+009121
+M009121
+009122
+M009122
+009123
+M009123
+009124
+M009124
+009125
+M009125
+009126
+M009126
+009140
+M009140
+009141
+M009141
+009142
+M009142
+009143
+M009143
+009144
+M009144
+009145
+M009145
+009146
+M009146
+009147
+M009147
+009148
+M009148
+009149
+M009149
+009150
+M009150
+009151
+M009151
+009152
+M009152
+009153
+M009153
+009154
+M009154
+009155
+M009155
+009156
+M009156
+009157
+M009157
+009158
+M009158
+009159
+M009159
+009160
+M009160
+009161
+M009161
+009162
+M009162
+009163
+M009163
+009164
+M009164
+009165
+M009165
+009166
+M009166
+009167
+M009167
+009168
+M009168
+009169
+M009169
+009172
+M009172
+009173
+M009173
+009174
+M009174
+009175
+M009175
+009176
+M009176
+009177
+M009177
+009178
+M009178
+009179
+M009179
+009180
+M009180
+009181
+M009181
+009183
+M009183
+009184
+M009184
+009185
+M009185
+009186
+M009186
+009187
+M009187
+009188
+M009188
+009189
+M009189
+009190
+M009190
+009191
+M009191
+009192
+M009192
+009193
+M009193
+009194
+M009194
+009195
+M009195
+009196
+M009196
+009197
+M009197
+009198
+M009198
+009199
+M009199
+009200
+M009200
+009201
+M009201
+009202
+M009202
+009203
+M009203
+009204
+M009204
+009205
+M009205
+009206
+M009206
+009207
+M009207
+009208
+M009208
+009209
+M009209
+009210
+M009210
+009211
+M009211
+009212
+M009212
+009213
+M009213
+009214
+M009214
+009215
+M009215
+009216
+M009216
+009217
+M009217
+009218
+M009218
+009219
+M009219
+009220
+M009220
+009221
+M009221
+009222
+M009222
+009223
+M009223
+009224
+M009224
+009225
+M009225
+009226
+M009226
+009227
+M009227
+009228
+M009228
+009229
+M009229
+009230
+M009230
+009231
+M009231
+009232
+M009232
+009233
+M009233
+009234
+M009234
+009235
+M009235
+009236
+M009236
+009237
+M009237
+009238
+M009238
+009239
+M009239
+009240
+M009240
+009241
+M009241
+009249
+M009249
+009250
+M009250
+009251
+M009251
+009252
+M009252
+009253
+M009253
+009254
+M009254
+009255
+M009255
+009256
+M009256
+009257
+M009257
+009258
+M009258
+009259
+M009259
+009260
+M009260
+009261
+M009261
+009262
+M009262
+009263
+M009263
+009264
+M009264
+009265
+M009265
+009266
+M009266
+009267
+M009267
+009268
+M009268
+009269
+M009269
+009287
+M009287
+009288
+M009288
+009289
+M009289
+009290
+M009290
+009291
+M009291
+009292
+M009292
+009293
+M009293
+009294
+M009294
+009295
+M009295
+009296
+M009296
+009297
+M009297
+009302
+M009302
+009303
+M009303
+009304
+M009304
+009305
+M009305
+009306
+M009306
+009307
+M009307
+009308
+M009308
+009309
+M009309
+009310
+M009310
+009311
+M009311
+009312
+M009312
+009313
+M009313
+009324
+M009324
+009325
+M009325
+009326
+M009326
+009327
+M009327
+009328
+M009328
+009329
+M009329
+009330
+M009330
+009331
+M009331
+009332
+M009332
+009333
+M009333
+009334
+M009334
+009335
+M009335
+009336
+M009336
+009337
+M009337
+009338
+M009338
+009339
+M009339
+009340
+M009340
+009341
+M009341
+009342
+M009342
+009343
+M009343
+009344
+M009344
+009345
+M009345
+009346
+M009346
+009347
+M009347
+009348
+M009348
+009349
+M009349
+009350
+M009350
+009351
+M009351
+009352
+M009352
+009353
+M009353
+009354
+M009354
+009355
+M009355
+009368
+M009368
+009369
+M009369
+009370
+M009370
+009371
+M009371
+009372
+M009372
+009373
+M009373
+009374
+M009374
+009375
+M009375
+009376
+M009376
+009377
+M009377
+009378
+M009378
+009379
+M009379
+009380
+M009380
+009381
+M009381
+009382
+M009382
+009383
+M009383
+009384
+M009384
+009385
+M009385
+009386
+M009386
+009387
+M009387
+009393
+M009393
+009394
+M009394
+009395
+M009395
+009396
+M009396
+009397
+M009397
+009398
+M009398
+009399
+M009399
+009400
+M009400
+009416
+M009416
+009417
+M009417
+009418
+M009418
+009419
+M009419
+009420
+M009420
+009421
+M009421
+009422
+M009422
+009423
+M009423
+009424
+M009424
+009425
+M009425
+009426
+M009426
+009427
+M009427
+009428
+M009428
+009429
+M009429
+009430
+M009430
+009431
+M009431
+009432
+M009432
+009447
+M009447
+009448
+M009448
+009449
+M009449
+009450
+M009450
+009451
+M009451
+009452
+M009452
+009453
+M009453
+009454
+M009454
+009455
+M009455
+009456
+M009456
+009457
+M009457
+009458
+M009458
+009459
+M009459
+009460
+M009460
+009461
+M009461
+009462
+M009462
+009463
+M009463
+009464
+M009464
+009465
+M009465
+009466
+M009466
+009467
+M009467
+009468
+M009468
+009469
+M009469
+009470
+M009470
+009471
+M009471
+009472
+M009472
+009477
+M009477
+009478
+M009478
+009479
+M009479
+009480
+M009480
+009481
+M009481
+009482
+M009482
+009483
+M009483
+009484
+M009484
+009485
+M009485
+009486
+M009486
+009487
+M009487
+009488
+M009488
+009489
+M009489
+009490
+M009490
+009491
+M009491
+009492
+M009492
+009493
+M009493
+009494
+M009494
+009495
+M009495
+009496
+M009496
+009497
+M009497
+009498
+M009498
+009499
+M009499
+009500
+M009500
+009501
+M009501
+009502
+M009502
+009504
+M009504
+009505
+M009505
+009506
+M009506
+009507
+M009507
+009508
+M009508
+009509
+M009509
+009510
+M009510
+009511
+M009511
+009512
+M009512
+009513
+M009513
+009514
+M009514
+009515
+M009515
+009516
+M009516
+009517
+M009517
+009518
+M009518
+009519
+M009519
+009520
+M009520
+009521
+M009521
+009522
+M009522
+009523
+M009523
+009524
+M009524
+009525
+M009525
+009530
+M009530
+009531
+M009531
+009532
+M009532
+009533
+M009533
+009534
+M009534
+009535
+M009535
+009536
+M009536
+009540
+M009540
+009541
+M009541
+009542
+M009542
+009543
+M009543
+009544
+M009544
+009545
+M009545
+009546
+M009546
+009547
+M009547
+009548
+M009548
+009549
+M009549
+009550
+M009550
+009551
+M009551
+009552
+M009552
+009553
+M009553
+009554
+M009554
+009555
+M009555
+009556
+M009556
+009557
+M009557
+009558
+M009558
+009559
+M009559
+009560
+M009560
+009561
+M009561
+009562
+M009562
+009563
+M009563
+009564
+M009564
+009565
+M009565
+009566
+M009566
+009567
+M009567
+009568
+M009568
+009569
+M009569
+009570
+M009570
+009571
+M009571
+009618
+M009618
+009619
+M009619
+009620
+M009620
+009621
+M009621
+009622
+M009622
+009623
+M009623
+009624
+M009624
+009641
+M009641
+009642
+M009642
+009643
+M009643
+009644
+M009644
+009645
+M009645
+009646
+M009646
+009647
+M009647
+009648
+M009648
+009649
+M009649
+009650
+M009650
+009651
+M009651
+009652
+M009652
+009653
+M009653
+009654
+M009654
+009655
+M009655
+009656
+M009656
+009657
+M009657
+009658
+M009658
+009659
+M009659
+009660
+M009660
+009661
+M009661
+009662
+M009662
+009663
+M009663
+009664
+M009664
+009665
+M009665
+009666
+M009666
+009667
+M009667
+009668
+M009668
+009669
+M009669
+009670
+M009670
+009671
+M009671
+009672
+M009672
+009673
+M009673
+009674
+M009674
+009675
+M009675
+009676
+M009676
+009711
+M009711
+009712
+M009712
+009714
+M009714
+009715
+M009715
+009716
+M009716
+009717
+M009717
+009718
+M009718
+009719
+M009719
+009729
+M009729
+009730
+M009730
+009731
+M009731
+009732
+M009732
+009733
+M009733
+009734
+M009734
+009735
+M009735
+009736
+M009736
+009737
+M009737
+009738
+M009738
+009739
+M009739
+009740
+M009740
+009741
+M009741
+009742
+M009742
+009743
+M009743
+009744
+M009744
+009745
+M009745
+009746
+M009746
+009747
+M009747
+009748
+M009748
+009749
+M009749
+009750
+M009750
+009751
+M009751
+009752
+M009752
+009753
+M009753
+009754
+M009754
+009755
+M009755
+009756
+M009756
+009757
+M009757
+009758
+M009758
+009759
+M009759
+009760
+M009760
+009761
+M009761
+009762
+M009762
+009763
+M009763
+009764
+M009764
+009765
+M009765
+009773
+M009773
+009774
+M009774
+009775
+M009775
+009776
+M009776
+009777
+M009777
+009778
+M009778
+009779
+M009779
+009780
+M009780
+009781
+M009781
+009782
+M009782
+009783
+M009783
+009784
+M009784
+009785
+M009785
+009786
+M009786
+009787
+M009787
+009788
+M009788
+009789
+M009789
+009790
+M009790
+009791
+M009791
+009792
+M009792
+009793
+M009793
+009794
+M009794
+009795
+M009795
+009796
+M009796
+009797
+M009797
+009798
+M009798
+009799
+M009799
+009800
+M009800
+009801
+M009801
+009802
+M009802
+009803
+M009803
+009804
+M009804
+009805
+M009805
+009812
+M009812
+009813
+M009813
+009814
+M009814
+009815
+M009815
+009816
+M009816
+009817
+M009817
+009818
+M009818
+009819
+M009819
+009820
+M009820
+009830
+M009830
+009831
+M009831
+009832
+M009832
+009833
+M009833
+009841
+M009841
+009842
+M009842
+009843
+M009843
+009844
+M009844
+009845
+M009845
+009846
+M009846
+009847
+M009847
+009848
+M009848
+009849
+M009849
+009850
+M009850
+009851
+M009851
+009852
+M009852
+009853
+M009853
+009854
+M009854
+009855
+M009855
+009856
+M009856
+009857
+M009857
+009858
+M009858
+009859
+M009859
+009860
+M009860
+009861
+M009861
+009862
+M009862
+009863
+M009863
+009864
+M009864
+009865
+M009865
+009866
+M009866
+009867
+M009867
+009868
+M009868
+009869
+M009869
+009870
+M009870
+009871
+M009871
+009872
+M009872
+009873
+M009873
+009874
+M009874
+009875
+M009875
+009876
+M009876
+009877
+M009877
+009878
+M009878
+009879
+M009879
+009880
+M009880
+009881
+M009881
+009882
+M009882
+009883
+M009883
+009884
+M009884
+009885
+M009885
+009886
+M009886
+009887
+M009887
+009888
+M009888
+009889
+M009889
+009890
+M009890
+009891
+M009891
+009892
+M009892
+009893
+M009893
+009894
+M009894
+009895
+M009895
+009896
+M009896
+009897
+M009897
+009898
+M009898
+009899
+M009899
+009900
+M009900
+009901
+M009901
+009902
+M009902
+009903
+M009903
+009904
+M009904
+009905
+M009905
+009906
+M009906
+009907
+M009907
+009908
+M009908
+009909
+M009909
+009910
+M009910
+009911
+M009911
+009912
+M009912
+009913
+M009913
+009914
+M009914
+009915
+M009915
+009916
+M009916
+009917
+M009917
+009918
+M009918
+009919
+M009919
+009920
+M009920
+009921
+M009921
+009922
+M009922
+009923
+M009923
+009924
+M009924
+009925
+M009925
+009926
+M009926
+009927
+M009927
+009928
+M009928
+009929
+M009929
+009930
+M009930
+009931
+M009931
+009932
+M009932
+009933
+M009933
+009934
+M009934
+009935
+M009935
+009936
+M009936
+009937
+M009937
+009938
+M009938
+009939
+M009939
+009940
+M009940
+009941
+M009941
+009942
+M009942
+009943
+M009943
+009944
+M009944
+009945
+M009945
+009946
+M009946
+009947
+M009947
+009948
+M009948
+009995
+M009995
+009996
+M009996
+009997
+M009997
+009998
+M009998
+009999
+M009999
+010000
+M010000
+010001
+M010001
+010002
+M010002
+010003
+M010003
+010004
+M010004
+010005
+M010005
+010006
+M010006
+010007
+M010007
+010008
+M010008
+010009
+M010009
+010010
+M010010
+010011
+M010011
+010012
+M010012
+010013
+M010013
+010014
+M010014
+010015
+M010015
+010016
+M010016
+010017
+M010017
+010018
+M010018
+010019
+M010019
+010020
+M010020
+010021
+M010021
+010022
+M010022
+010023
+M010023
+010024
+M010024
+010025
+M010025
+010026
+M010026
+010027
+M010027
+010028
+M010028
+010029
+M010029
+010030
+M010030
+010031
+M010031
+010032
+M010032
+010033
+M010033
+010034
+M010034
+010035
+M010035
+010036
+M010036
+010037
+M010037
+010038
+M010038
+010039
+M010039
+010040
+M010040
+010041
+M010041
+010042
+M010042
+010043
+M010043
+010044
+M010044
+010046
+M010046
+010048
+M010048
+010049
+M010049
+010050
+M010050
+010051
+M010051
+010052
+M010052
+010053
+M010053
+010054
+M010054
+010056
+M010056
+010057
+M010057
+010058
+M010058
+010059
+M010059
+010060
+M010060
+010061
+M010061
+010062
+M010062
+010063
+M010063
+010071
+M010071
+010072
+M010072
+010073
+M010073
+010074
+M010074
+010075
+M010075
+010076
+M010076
+010077
+M010077
+010078
+M010078
+010079
+M010079
+010117
+M010117
+010118
+M010118
+010119
+M010119
+010120
+M010120
+010146
+M010146
+010147
+M010147
+010148
+M010148
+010149
+M010149
+010150
+M010150
+010151
+M010151
+010152
+M010152
+010153
+M010153
+010154
+M010154
+010155
+M010155
+010156
+M010156
+010157
+M010157
+010158
+M010158
+010159
+M010159
+010160
+M010160
+010161
+M010161
+010162
+M010162
+010163
+M010163
+010164
+M010164
+010165
+M010165
+010166
+M010166
+010167
+M010167
+010168
+M010168
+010169
+M010169
+010170
+M010170
+010171
+M010171
+010172
+M010172
+010173
+M010173
+010174
+M010174
+010175
+M010175
+010176
+M010176
+010177
+M010177
+010178
+M010178
+010179
+M010179
+010180
+M010180
+010181
+M010181
+010182
+M010182
+010183
+M010183
+010184
+M010184
+010185
+M010185
+010194
+M010194
+010195
+M010195
+010203
+M010203
+010204
+M010204
+010205
+M010205
+010206
+M010206
+010207
+M010207
+010208
+M010208
+010209
+M010209
+010210
+M010210
+010211
+M010211
+010212
+M010212
+010213
+M010213
+010218
+M010218
+010219
+M010219
+010220
+M010220
+010221
+M010221
+010222
+M010222
+010223
+M010223
+010224
+M010224
+010225
+M010225
+010226
+M010226
+010227
+M010227
+010228
+M010228
+010229
+M010229
+010230
+M010230
+010231
+M010231
+010232
+M010232
+010233
+M010233
+010234
+M010234
+010235
+M010235
+010236
+M010236
+010237
+M010237
+010238
+M010238
+010239
+M010239
+010257
+M010257
+010258
+M010258
+010259
+M010259
+010260
+M010260
+010261
+M010261
+010262
+M010262
+010263
+M010263
+010270
+M010270
+010271
+M010271
+010272
+M010272
+010273
+M010273
+010274
+M010274
+010275
+M010275
+010276
+M010276
+010277
+M010277
+010278
+M010278
+010279
+M010279
+010280
+M010280
+010281
+M010281
+010282
+M010282
+010283
+M010283
+010284
+M010284
+010285
+M010285
+010286
+M010286
+010287
+M010287
+010288
+M010288
+010289
+M010289
+010290
+M010290
+010291
+M010291
+010300
+M010300
+010301
+M010301
+010302
+M010302
+010303
+M010303
+010304
+M010304
+010305
+M010305
+010306
+M010306
+010307
+M010307
+010308
+M010308
+010309
+M010309
+010310
+M010310
+010311
+M010311
+010312
+M010312
+010313
+M010313
+010314
+M010314
+010315
+M010315
+010316
+M010316
+010317
+M010317
+010318
+M010318
+010319
+M010319
+010320
+M010320
+010321
+M010321
+010322
+M010322
+010323
+M010323
+010324
+M010324
+010325
+M010325
+010326
+M010326
+010327
+M010327
+010328
+M010328
+010329
+M010329
+010330
+M010330
+010331
+M010331
+010332
+M010332
+010333
+M010333
+010334
+M010334
+010335
+M010335
+010336
+M010336
+010337
+M010337
+010338
+M010338
+010339
+M010339
+010340
+M010340
+010341
+M010341
+010342
+M010342
+010343
+M010343
+010344
+M010344
+010345
+M010345
+010346
+M010346
+010347
+M010347
+010348
+M010348
+010349
+M010349
+010350
+M010350
+010351
+M010351
+010352
+M010352
+010353
+M010353
+010354
+M010354
+010355
+M010355
+010356
+M010356
+010357
+M010357
+010358
+M010358
+010359
+M010359
+010360
+M010360
+010361
+M010361
+010362
+M010362
+010363
+M010363
+010364
+M010364
+010365
+M010365
+010366
+M010366
+010367
+M010367
+010368
+M010368
+010369
+M010369
+010370
+M010370
+010371
+M010371
+010372
+M010372
+010373
+M010373
+010374
+M010374
+010375
+M010375
+010376
+M010376
+010377
+M010377
+010378
+M010378
+010379
+M010379
+010380
+M010380
+010381
+M010381
+010382
+M010382
+010383
+M010383
+010384
+M010384
+010385
+M010385
+010386
+M010386
+010387
+M010387
+010388
+M010388
+010389
+M010389
+010390
+M010390
+010391
+M010391
+010392
+M010392
+010393
+M010393
+010394
+M010394
+010395
+M010395
+010396
+M010396
+010397
+M010397
+010398
+M010398
+010399
+M010399
+010400
+M010400
+010401
+M010401
+010402
+M010402
+010403
+M010403
+010404
+M010404
+010405
+M010405
+010406
+M010406
+010407
+M010407
+010411
+M010411
+010412
+M010412
+010413
+M010413
+010414
+M010414
+010421
+M010421
+010422
+M010422
+010423
+M010423
+010424
+M010424
+010425
+M010425
+010426
+M010426
+010427
+M010427
+010428
+M010428
+010429
+M010429
+010430
+M010430
+010431
+M010431
+010432
+M010432
+010442
+M010442
+010443
+M010443
+010444
+M010444
+010445
+M010445
+010446
+M010446
+010447
+M010447
+010448
+M010448
+010449
+M010449
+010450
+M010450
+010451
+M010451
+010452
+M010452
+010453
+M010453
+010454
+M010454
+010455
+M010455
+010456
+M010456
+010457
+M010457
+010458
+M010458
+010459
+M010459
+010460
+M010460
+010461
+M010461
+010462
+M010462
+010463
+M010463
+010464
+M010464
+010465
+M010465
+010466
+M010466
+010467
+M010467
+010468
+M010468
+010469
+M010469
+010470
+M010470
+010471
+M010471
+010472
+M010472
+010473
+M010473
+010474
+M010474
+010475
+M010475
+010476
+M010476
+010477
+M010477
+010478
+M010478
+010479
+M010479
+010480
+M010480
+010481
+M010481
+010482
+M010482
+010483
+M010483
+010484
+M010484
+010485
+M010485
+010486
+M010486
+010487
+M010487
+010488
+M010488
+010499
+M010499
+010500
+M010500
+010501
+M010501
+010502
+M010502
+010503
+M010503
+010510
+M010510
+010511
+M010511
+010512
+M010512
+010513
+M010513
+010514
+M010514
+010515
+M010515
+010516
+M010516
+010517
+M010517
+010518
+M010518
+010554
+M010554
+010555
+M010555
+010556
+M010556
+010557
+M010557
+010558
+M010558
+010559
+M010559
+010560
+M010560
+010561
+M010561
+010562
+M010562
+010563
+M010563
+010564
+M010564
+010565
+M010565
+010566
+M010566
+010567
+M010567
+010568
+M010568
+010569
+M010569
+010570
+M010570
+010571
+M010571
+010572
+M010572
+010573
+M010573
+010574
+M010574
+010575
+M010575
+010576
+M010576
+010577
+M010577
+010578
+M010578
+010579
+M010579
+010580
+M010580
+010581
+M010581
+010582
+M010582
+010583
+M010583
+010590
+M010590
+010591
+M010591
+010592
+M010592
+010593
+M010593
+010594
+M010594
+010605
+M010605
+010606
+M010606
+010607
+M010607
+010608
+M010608
+010609
+M010609
+010610
+M010610
+010621
+M010621
+010622
+M010622
+010623
+M010623
+010624
+M010624
+010625
+M010625
+010626
+M010626
+010627
+M010627
+010628
+M010628
+010629
+M010629
+010630
+M010630
+010631
+M010631
+010632
+M010632
+010633
+M010633
+010634
+M010634
+010635
+M010635
+010636
+M010636
+010637
+M010637
+010638
+M010638
+010639
+M010639
+010640
+M010640
+010641
+M010641
+010642
+M010642
+010643
+M010643
+010644
+M010644
+010645
+M010645
+010646
+M010646
+010647
+M010647
+010648
+M010648
+010649
+M010649
+010650
+M010650
+010651
+M010651
+010652
+M010652
+010653
+M010653
+010654
+M010654
+010655
+M010655
+010656
+M010656
+010657
+M010657
+010658
+M010658
+010659
+M010659
+010660
+M010660
+010661
+M010661
+010662
+M010662
+010663
+M010663
+010664
+M010664
+010665
+M010665
+010666
+M010666
+010667
+M010667
+010668
+M010668
+010669
+M010669
+010670
+M010670
+010671
+M010671
+010672
+M010672
+010673
+M010673
+010674
+M010674
+010675
+M010675
+010676
+M010676
+010677
+M010677
+010678
+M010678
+010679
+M010679
+010680
+M010680
+010681
+M010681
+010682
+M010682
+010683
+M010683
+010684
+M010684
+010685
+M010685
+010686
+M010686
+010687
+M010687
+010688
+M010688
+010689
+M010689
+010690
+M010690
+010691
+M010691
+010692
+M010692
+010693
+M010693
+010694
+M010694
+010695
+M010695
+010696
+M010696
+010697
+M010697
+010698
+M010698
+010699
+M010699
+010700
+M010700
+010701
+M010701
+010702
+M010702
+010703
+M010703
+010704
+M010704
+010705
+M010705
+010706
+M010706
+010707
+M010707
+010708
+M010708
+010709
+M010709
+010710
+M010710
+010711
+M010711
+010712
+M010712
+010713
+M010713
+010714
+M010714
+010715
+M010715
+010716
+M010716
+010717
+M010717
+010718
+M010718
+010719
+M010719
+010720
+M010720
+010721
+M010721
+010722
+M010722
+010723
+M010723
+010724
+M010724
+010725
+M010725
+010726
+M010726
+010727
+M010727
+010728
+M010728
+010729
+M010729
+010730
+M010730
+010731
+M010731
+010732
+M010732
+010733
+M010733
+010734
+M010734
+010735
+M010735
+010736
+M010736
+010737
+M010737
+010738
+M010738
+010739
+M010739
+010740
+M010740
+010741
+M010741
+010742
+M010742
+010744
+M010744
+010745
+M010745
+010746
+M010746
+010747
+M010747
+010748
+M010748
+010749
+M010749
+010750
+M010750
+010751
+M010751
+010752
+M010752
+010753
+M010753
+010754
+M010754
+010755
+M010755
+010756
+M010756
+010757
+M010757
+010758
+M010758
+010759
+M010759
+010760
+M010760
+010761
+M010761
+010762
+M010762
+010763
+M010763
+010764
+M010764
+010765
+M010765
+010766
+M010766
+010767
+M010767
+010768
+M010768
+010769
+M010769
+010770
+M010770
+010771
+M010771
+010772
+M010772
+010773
+M010773
+010774
+M010774
+010775
+M010775
+010776
+M010776
+010777
+M010777
+010778
+M010778
+010779
+M010779
+010780
+M010780
+010781
+M010781
+010782
+M010782
+010792
+M010792
+010793
+M010793
+010794
+M010794
+010795
+M010795
+010796
+M010796
+010797
+M010797
+010798
+M010798
+010799
+M010799
+010805
+M010805
+010806
+M010806
+010807
+M010807
+010808
+M010808
+010809
+M010809
+010810
+M010810
+010811
+M010811
+010812
+M010812
+010813
+M010813
+010814
+M010814
+010815
+M010815
+010816
+M010816
+010817
+M010817
+010818
+M010818
+010819
+M010819
+010820
+M010820
+010821
+M010821
+010822
+M010822
+010823
+M010823
+010824
+M010824
+010825
+M010825
+010826
+M010826
+010827
+M010827
+010828
+M010828
+010829
+M010829
+010830
+M010830
+010831
+M010831
+010832
+M010832
+010833
+M010833
+010834
+M010834
+010835
+M010835
+010836
+M010836
+010837
+M010837
+010838
+M010838
+010839
+M010839
+010840
+M010840
+010841
+M010841
+010842
+M010842
+010843
+M010843
+010844
+M010844
+010845
+M010845
+010846
+M010846
+010847
+M010847
+010848
+M010848
+010849
+M010849
+010850
+M010850
+010851
+M010851
+010852
+M010852
+010853
+M010853
+010854
+M010854
+010887
+M010887
+010888
+M010888
+010890
+M010890
+010891
+M010891
+010892
+M010892
+010893
+M010893
+010894
+M010894
+010895
+M010895
+010896
+M010896
+010897
+M010897
+010898
+M010898
+010899
+M010899
+010900
+M010900
+010901
+M010901
+010902
+M010902
+010903
+M010903
+010905
+M010905
+010906
+M010906
+010907
+M010907
+010908
+M010908
+010909
+M010909
+010910
+M010910
+010911
+M010911
+010912
+M010912
+010913
+M010913
+010914
+M010914
+010916
+M010916
+010917
+M010917
+010918
+M010918
+010919
+M010919
+010920
+M010920
+010921
+M010921
+010922
+M010922
+010923
+M010923
+010924
+M010924
+010925
+M010925
+010926
+M010926
+010927
+M010927
+010928
+M010928
+010929
+M010929
+010930
+M010930
+010931
+M010931
+010932
+M010932
+010933
+M010933
+010934
+M010934
+010935
+M010935
+010936
+M010936
+010937
+M010937
+010938
+M010938
+010939
+M010939
+010940
+M010940
+010941
+M010941
+010942
+M010942
+010943
+M010943
+010944
+M010944
+010945
+M010945
+010946
+M010946
+010947
+M010947
+010948
+M010948
+010949
+M010949
+010950
+M010950
+010951
+M010951
+010952
+M010952
+010953
+M010953
+010976
+M010976
+010977
+M010977
+010978
+M010978
+010979
+M010979
+010980
+M010980
+010981
+M010981
+010982
+M010982
+010983
+M010983
+010984
+M010984
+010985
+M010985
+010986
+M010986
+010987
+M010987
+010988
+M010988
+010989
+M010989
+010991
+M010991
+010992
+M010992
+010993
+M010993
+010994
+M010994
+010995
+M010995
+010996
+M010996
+010997
+M010997
+010998
+M010998
+010999
+M010999
+011000
+M011000
+011001
+M011001
+011002
+M011002
+011003
+M011003
+011004
+M011004
+011005
+M011005
+011006
+M011006
+011007
+M011007
+011008
+M011008
+011009
+M011009
+011010
+M011010
+011011
+M011011
+011012
+M011012
+011020
+M011020
+011021
+M011021
+011022
+M011022
+011023
+M011023
+011024
+M011024
+011025
+M011025
+011026
+M011026
+011027
+M011027
+011028
+M011028
+011029
+M011029
+011030
+M011030
+011031
+M011031
+011032
+M011032
+011033
+M011033
+011034
+M011034
+011035
+M011035
+011036
+M011036
+011037
+M011037
+011038
+M011038
+011039
+M011039
+011040
+M011040
+011041
+M011041
+011042
+M011042
+011043
+M011043
+011044
+M011044
+011045
+M011045
+011046
+M011046
+011047
+M011047
+011048
+M011048
+011049
+M011049
+011050
+M011050
+011051
+M011051
+011052
+M011052
+011053
+M011053
+011054
+M011054
+011055
+M011055
+011056
+M011056
+011057
+M011057
+011058
+M011058
+011059
+M011059
+011060
+M011060
+011061
+M011061
+011062
+M011062
+011063
+M011063
+011064
+M011064
+011065
+M011065
+011066
+M011066
+011067
+M011067
+011068
+M011068
+011069
+M011069
+011070
+M011070
+011071
+M011071
+011072
+M011072
+011073
+M011073
+011074
+M011074
+011075
+M011075
+011076
+M011076
+011077
+M011077
+011078
+M011078
+011079
+M011079
+011080
+M011080
+011081
+M011081
+011082
+M011082
+011083
+M011083
+011084
+M011084
+011085
+M011085
+011086
+M011086
+011087
+M011087
+011088
+M011088
+011089
+M011089
+011090
+M011090
+011091
+M011091
+011092
+M011092
+011093
+M011093
+011094
+M011094
+011095
+M011095
+011096
+M011096
+011097
+M011097
+011098
+M011098
+011099
+M011099
+011100
+M011100
+011101
+M011101
+011102
+M011102
+011105
+M011105
+011106
+M011106
+011107
+M011107
+011108
+M011108
+011109
+M011109
+011110
+M011110
+011111
+M011111
+011112
+M011112
+011113
+M011113
+011114
+M011114
+011115
+M011115
+011116
+M011116
+011117
+M011117
+011118
+M011118
+011119
+M011119
+011120
+M011120
+011121
+M011121
+011122
+M011122
+011123
+M011123
+011200
+M011200
+011201
+M011201
+011202
+M011202
+011203
+M011203
+011204
+M011204
+011205
+M011205
+011206
+M011206
+011207
+M011207
+011208
+M011208
+011220
+M011220
+011221
+M011221
+011222
+M011222
+011223
+M011223
+011224
+M011224
+011225
+M011225
+011226
+M011226
+011227
+M011227
+011228
+M011228
+011229
+M011229
+011230
+M011230
+011231
+M011231
+011232
+M011232
+011233
+M011233
+011234
+M011234
+011235
+M011235
+011236
+M011236
+011237
+M011237
+011238
+M011238
+011239
+M011239
+011240
+M011240
+011241
+M011241
+011242
+M011242
+011243
+M011243
+011244
+M011244
+011245
+M011245
+011246
+M011246
+011247
+M011247
+011248
+M011248
+011249
+M011249
+011250
+M011250
+011251
+M011251
+011252
+M011252
+011253
+M011253
+011254
+M011254
+011255
+M011255
+011256
+M011256
+011257
+M011257
+011258
+M011258
+011259
+M011259
+011260
+M011260
+011261
+M011261
+011262
+M011262
+011263
+M011263
+011264
+M011264
+011265
+M011265
+011267
+M011267
+011268
+M011268
+011269
+M011269
+011270
+M011270
+011271
+M011271
+011272
+M011272
+011273
+M011273
+011274
+M011274
+011275
+M011275
+011276
+M011276
+011277
+M011277
+011278
+M011278
+011279
+M011279
+011280
+M011280
+011281
+M011281
+011282
+M011282
+011283
+M011283
+011284
+M011284
+011285
+M011285
+011286
+M011286
+011287
+M011287
+011288
+M011288
+011289
+M011289
+011290
+M011290
+011298
+M011298
+011299
+M011299
+011300
+M011300
+011301
+M011301
+011302
+M011302
+011303
+M011303
+011304
+M011304
+011305
+M011305
+011306
+M011306
+011307
+M011307
+011308
+M011308
+011309
+M011309
+011310
+M011310
+011311
+M011311
+011312
+M011312
+011313
+M011313
+011314
+M011314
+011315
+M011315
+011316
+M011316
+011317
+M011317
+011318
+M011318
+011319
+M011319
+011320
+M011320
+011321
+M011321
+011322
+M011322
+011323
+M011323
+011324
+M011324
+011325
+M011325
+011326
+M011326
+011327
+M011327
+011328
+M011328
+011329
+M011329
+011330
+M011330
+011331
+M011331
+011332
+M011332
+011333
+M011333
+011334
+M011334
+011335
+M011335
+011336
+M011336
+011337
+M011337
+011338
+M011338
+011339
+M011339
+011340
+M011340
+011341
+M011341
+011342
+M011342
+011343
+M011343
+011344
+M011344
+011345
+M011345
+011346
+M011346
+011347
+M011347
+011348
+M011348
+011349
+M011349
+011350
+M011350
+011351
+M011351
+011352
+M011352
+011353
+M011353
+011354
+M011354
+011355
+M011355
+011356
+M011356
+011357
+M011357
+011358
+M011358
+011359
+M011359
+011360
+M011360
+011361
+M011361
+011362
+M011362
+011363
+M011363
+011423
+M011423
+011424
+M011424
+011425
+M011425
+011426
+M011426
+011427
+M011427
+011428
+M011428
+011429
+M011429
+011430
+M011430
+011431
+M011431
+011432
+M011432
+011433
+M011433
+011434
+M011434
+011435
+M011435
+011436
+M011436
+011437
+M011437
+011438
+M011438
+011439
+M011439
+011440
+M011440
+011441
+M011441
+011442
+M011442
+011443
+M011443
+011444
+M011444
+011445
+M011445
+011446
+M011446
+011447
+M011447
+011448
+M011448
+011449
+M011449
+011450
+M011450
+011452
+M011452
+011453
+M011453
+011454
+M011454
+011455
+M011455
+011456
+M011456
+011457
+M011457
+011458
+M011458
+011459
+M011459
+011460
+M011460
+011461
+M011461
+011462
+M011462
+011463
+M011463
+011464
+M011464
+011465
+M011465
+011466
+M011466
+011467
+M011467
+011468
+M011468
+011469
+M011469
+011470
+M011470
+011471
+M011471
+011472
+M011472
+011473
+M011473
+011474
+M011474
+011475
+M011475
+011476
+M011476
+011477
+M011477
+011478
+M011478
+011479
+M011479
+011480
+M011480
+011481
+M011481
+011482
+M011482
+011483
+M011483
+011484
+M011484
+011485
+M011485
+011486
+M011486
+011487
+M011487
+011488
+M011488
+011489
+M011489
+011490
+M011490
+011491
+M011491
+011492
+M011492
+011493
+M011493
+011494
+M011494
+011495
+M011495
+011496
+M011496
+011497
+M011497
+011498
+M011498
+011499
+M011499
+011500
+M011500
+011501
+M011501
+011502
+M011502
+011503
+M011503
+011504
+M011504
+011505
+M011505
+011506
+M011506
+011507
+M011507
+011508
+M011508
+011509
+M011509
+011510
+M011510
+011515
+M011515
+011516
+M011516
+011517
+M011517
+011518
+M011518
+011519
+M011519
+011520
+M011520
+011521
+M011521
+011522
+M011522
+011523
+M011523
+011529
+M011529
+011530
+M011530
+011531
+M011531
+011532
+M011532
+011533
+M011533
+011534
+M011534
+011535
+M011535
+011536
+M011536
+011537
+M011537
+011538
+M011538
+011539
+M011539
+011540
+M011540
+011541
+M011541
+011542
+M011542
+011543
+M011543
+011544
+M011544
+011545
+M011545
+011546
+M011546
+011547
+M011547
+011548
+M011548
+011549
+M011549
+011550
+M011550
+011551
+M011551
+011552
+M011552
+011553
+M011553
+011554
+M011554
+011555
+M011555
+011556
+M011556
+011557
+M011557
+011558
+M011558
+011559
+M011559
+011560
+M011560
+011561
+M011561
+011562
+M011562
+011563
+M011563
+011564
+M011564
+011565
+M011565
+011566
+M011566
+011567
+M011567
+011568
+M011568
+011569
+M011569
+011570
+M011570
+011571
+M011571
+011572
+M011572
+011573
+M011573
+011574
+M011574
+011575
+M011575
+011576
+M011576
+011577
+M011577
+011578
+M011578
+011579
+M011579
+011580
+M011580
+011581
+M011581
+011582
+M011582
+011583
+M011583
+011584
+M011584
+011585
+M011585
+011586
+M011586
+011587
+M011587
+011588
+M011588
+011590
+M011590
+011591
+M011591
+011592
+M011592
+011593
+M011593
+011594
+M011594
+011595
+M011595
+011596
+M011596
+011597
+M011597
+011598
+M011598
+011599
+M011599
+011600
+M011600
+011601
+M011601
+011602
+M011602
+011603
+M011603
+011604
+M011604
+011605
+M011605
+011606
+M011606
+011607
+M011607
+011608
+M011608
+011609
+M011609
+011610
+M011610
+011611
+M011611
+011612
+M011612
+011613
+M011613
+011614
+M011614
+011621
+M011621
+011622
+M011622
+011623
+M011623
+011624
+M011624
+011625
+M011625
+011626
+M011626
+011627
+M011627
+011628
+M011628
+011629
+M011629
+011630
+M011630
+011631
+M011631
+011632
+M011632
+011633
+M011633
+011634
+M011634
+011635
+M011635
+011636
+M011636
+011637
+M011637
+011638
+M011638
+011639
+M011639
+011640
+M011640
+011641
+M011641
+011642
+M011642
+011665
+M011665
+011666
+M011666
+011667
+M011667
+011668
+M011668
+011669
+M011669
+011670
+M011670
+011671
+M011671
+011672
+M011672
+011673
+M011673
+011674
+M011674
+011675
+M011675
+011676
+M011676
+011677
+M011677
+011678
+M011678
+011679
+M011679
+011680
+M011680
+011685
+M011685
+011686
+M011686
+011687
+M011687
+011688
+M011688
+011689
+M011689
+011690
+M011690
+011691
+M011691
+011693
+M011693
+011694
+M011694
+011695
+M011695
+011696
+M011696
+011697
+M011697
+011698
+M011698
+011699
+M011699
+011700
+M011700
+011701
+M011701
+011702
+M011702
+011703
+M011703
+011704
+M011704
+011705
+M011705
+011706
+M011706
+011707
+M011707
+011708
+M011708
+011709
+M011709
+011718
+M011718
+011719
+M011719
+011720
+M011720
+011721
+M011721
+011722
+M011722
+011723
+M011723
+011724
+M011724
+011725
+M011725
+011726
+M011726
+011730
+M011730
+011731
+M011731
+011732
+M011732
+011733
+M011733
+011734
+M011734
+011735
+M011735
+011736
+M011736
+011737
+M011737
+011738
+M011738
+011739
+M011739
+011745
+M011745
+011746
+M011746
+011747
+M011747
+011748
+M011748
+011749
+M011749
+011750
+M011750
+011751
+M011751
+011752
+M011752
+011753
+M011753
+011754
+M011754
+011755
+M011755
+011756
+M011756
+011757
+M011757
+011758
+M011758
+011759
+M011759
+011760
+M011760
+011761
+M011761
+011762
+M011762
+011763
+M011763
+011764
+M011764
+011765
+M011765
+011766
+M011766
+011767
+M011767
+011768
+M011768
+011769
+M011769
+011770
+M011770
+011771
+M011771
+011772
+M011772
+011773
+M011773
+011774
+M011774
+011824
+M011824
+011825
+M011825
+011826
+M011826
+011827
+M011827
+011828
+M011828
+011829
+M011829
+011830
+M011830
+011831
+M011831
+011832
+M011832
+011833
+M011833
+011834
+M011834
+011835
+M011835
+011836
+M011836
+011837
+M011837
+011838
+M011838
+011839
+M011839
+011840
+M011840
+011841
+M011841
+011842
+M011842
+011843
+M011843
+011844
+M011844
+011845
+M011845
+011846
+M011846
+011847
+M011847
+011848
+M011848
+011849
+M011849
+011850
+M011850
+011851
+M011851
+011852
+M011852
+011853
+M011853
+011854
+M011854
+011855
+M011855
+011856
+M011856
+011857
+M011857
+011858
+M011858
+011859
+M011859
+011860
+M011860
+011861
+M011861
+011862
+M011862
+011863
+M011863
+011864
+M011864
+011865
+M011865
+011866
+M011866
+011867
+M011867
+011868
+M011868
+011869
+M011869
+011870
+M011870
+011871
+M011871
+011872
+M011872
+011873
+M011873
+011874
+M011874
+011875
+M011875
+011876
+M011876
+011877
+M011877
+011878
+M011878
+011879
+M011879
+011880
+M011880
+011881
+M011881
+011882
+M011882
+011883
+M011883
+011884
+M011884
+011885
+M011885
+011886
+M011886
+011887
+M011887
+011888
+M011888
+011889
+M011889
+011890
+M011890
+011891
+M011891
+011892
+M011892
+011893
+M011893
+011894
+M011894
+011895
+M011895
+011896
+M011896
+011897
+M011897
+011898
+M011898
+011899
+M011899
+011900
+M011900
+011901
+M011901
+011902
+M011902
+011903
+M011903
+011904
+M011904
+011905
+M011905
+011906
+M011906
+011907
+M011907
+011908
+M011908
+011909
+M011909
+011910
+M011910
+011911
+M011911
+011912
+M011912
+011913
+M011913
+011914
+M011914
+011915
+M011915
+011916
+M011916
+011917
+M011917
+011918
+M011918
+011919
+M011919
+011920
+M011920
+011921
+M011921
+011922
+M011922
+011923
+M011923
+011924
+M011924
+011925
+M011925
+011926
+M011926
+011945
+M011945
+011946
+M011946
+011947
+M011947
+011948
+M011948
+011949
+M011949
+011950
+M011950
+011951
+M011951
+011952
+M011952
+011953
+M011953
+011954
+M011954
+011955
+M011955
+011956
+M011956
+011957
+M011957
+011958
+M011958
+011959
+M011959
+011960
+M011960
+011961
+M011961
+011962
+M011962
+011963
+M011963
+011964
+M011964
+011965
+M011965
+011966
+M011966
+011967
+M011967
+011968
+M011968
+011969
+M011969
+011970
+M011970
+011971
+M011971
+011972
+M011972
+011973
+M011973
+011975
+M011975
+011976
+M011976
+011977
+M011977
+011978
+M011978
+011979
+M011979
+011980
+M011980
+011981
+M011981
+011982
+M011982
+011983
+M011983
+011984
+M011984
+011985
+M011985
+011986
+M011986
+011987
+M011987
+011988
+M011988
+011989
+M011989
+011990
+M011990
+011991
+M011991
+011992
+M011992
+011993
+M011993
+011994
+M011994
+011995
+M011995
+011996
+M011996
+011997
+M011997
+011998
+M011998
+011999
+M011999
+012000
+M012000
+012001
+M012001
+012002
+M012002
+012003
+M012003
+012004
+M012004
+012005
+M012005
+012015
+M012015
+012016
+M012016
+012017
+M012017
+012018
+M012018
+012019
+M012019
+012020
+M012020
+012021
+M012021
+012022
+M012022
+012023
+M012023
+012024
+M012024
+012025
+M012025
+012026
+M012026
+012027
+M012027
+012028
+M012028
+012029
+M012029
+012030
+M012030
+012031
+M012031
+012032
+M012032
+012033
+M012033
+012034
+M012034
+012035
+M012035
+012040
+M012040
+012041
+M012041
+012042
+M012042
+012043
+M012043
+012044
+M012044
+012045
+M012045
+012046
+M012046
+012053
+M012053
+012054
+M012054
+012055
+M012055
+012056
+M012056
+012057
+M012057
+012058
+M012058
+012059
+M012059
+012060
+M012060
+012061
+M012061
+012062
+M012062
+012063
+M012063
+012064
+M012064
+012065
+M012065
+012066
+M012066
+012075
+M012075
+012076
+M012076
+012077
+M012077
+012078
+M012078
+012079
+M012079
+012080
+M012080
+012081
+M012081
+012082
+M012082
+012083
+M012083
+012084
+M012084
+012085
+M012085
+012086
+M012086
+012087
+M012087
+012088
+M012088
+012089
+M012089
+012090
+M012090
+012091
+M012091
+012092
+M012092
+012093
+M012093
+012094
+M012094
+012095
+M012095
+012096
+M012096
+012097
+M012097
+012098
+M012098
+012099
+M012099
+012100
+M012100
+012101
+M012101
+012102
+M012102
+012103
+M012103
+012104
+M012104
+012105
+M012105
+012106
+M012106
+012107
+M012107
+012108
+M012108
+012109
+M012109
+012110
+M012110
+012111
+M012111
+012112
+M012112
+012113
+M012113
+012114
+M012114
+012115
+M012115
+012116
+M012116
+012117
+M012117
+012118
+M012118
+012119
+M012119
+012120
+M012120
+012121
+M012121
+012122
+M012122
+012123
+M012123
+012124
+M012124
+012125
+M012125
+012126
+M012126
+012127
+M012127
+012128
+M012128
+012129
+M012129
+012130
+M012130
+012131
+M012131
+012132
+M012132
+012133
+M012133
+012134
+M012134
+012135
+M012135
+012157
+M012157
+012158
+M012158
+012159
+M012159
+012160
+M012160
+012161
+M012161
+012162
+M012162
+012163
+M012163
+012164
+M012164
+012165
+M012165
+012166
+M012166
+012167
+M012167
+012168
+M012168
+012170
+M012170
+012171
+M012171
+012172
+M012172
+012173
+M012173
+012174
+M012174
+012175
+M012175
+012176
+M012176
+012177
+M012177
+012178
+M012178
+012179
+M012179
+012193
+M012193
+012194
+M012194
+012195
+M012195
+012196
+M012196
+012197
+M012197
+012198
+M012198
+012199
+M012199
+012200
+M012200
+012201
+M012201
+012202
+M012202
+012203
+M012203
+012204
+M012204
+012205
+M012205
+012206
+M012206
+012207
+M012207
+012208
+M012208
+012209
+M012209
+012210
+M012210
+012211
+M012211
+012212
+M012212
+012213
+M012213
+012214
+M012214
+012215
+M012215
+012216
+M012216
+012217
+M012217
+012218
+M012218
+012219
+M012219
+012220
+M012220
+012221
+M012221
+012222
+M012222
+012223
+M012223
+012224
+M012224
+012225
+M012225
+012226
+M012226
+012227
+M012227
+012228
+M012228
+012229
+M012229
+012230
+M012230
+012231
+M012231
+012233
+M012233
+012234
+M012234
+012235
+M012235
+012239
+M012239
+012240
+M012240
+012241
+M012241
+012242
+M012242
+012243
+M012243
+012244
+M012244
+012245
+M012245
+012246
+M012246
+012247
+M012247
+012248
+M012248
+012249
+M012249
+012250
+M012250
+012251
+M012251
+012252
+M012252
+012253
+M012253
+012254
+M012254
+012255
+M012255
+012256
+M012256
+012257
+M012257
+012258
+M012258
+012259
+M012259
+012260
+M012260
+012261
+M012261
+012262
+M012262
+012263
+M012263
+012264
+M012264
+012265
+M012265
+012266
+M012266
+012267
+M012267
+012268
+M012268
+012269
+M012269
+012270
+M012270
+012271
+M012271
+012272
+M012272
+012273
+M012273
+012274
+M012274
+012275
+M012275
+012276
+M012276
+012277
+M012277
+012278
+M012278
+012279
+M012279
+012280
+M012280
+012281
+M012281
+012282
+M012282
+012283
+M012283
+012284
+M012284
+012285
+M012285
+012286
+M012286
+012287
+M012287
+012288
+M012288
+012289
+M012289
+012290
+M012290
+012291
+M012291
+012292
+M012292
+012293
+M012293
+012294
+M012294
+012295
+M012295
+012296
+M012296
+012297
+M012297
+012298
+M012298
+012299
+M012299
+012300
+M012300
+012301
+M012301
+012309
+M012309
+012310
+M012310
+012311
+M012311
+012326
+M012326
+012327
+M012327
+012328
+M012328
+012329
+M012329
+012330
+M012330
+012331
+M012331
+012332
+M012332
+012333
+M012333
+012334
+M012334
+012335
+M012335
+012336
+M012336
+012337
+M012337
+012338
+M012338
+012339
+M012339
+012340
+M012340
+012341
+M012341
+012342
+M012342
+012343
+M012343
+012344
+M012344
+012345
+M012345
+012346
+M012346
+012347
+M012347
+012348
+M012348
+012349
+M012349
+012350
+M012350
+012351
+M012351
+012352
+M012352
+012353
+M012353
+012354
+M012354
+012355
+M012355
+012356
+M012356
+012357
+M012357
+012358
+M012358
+012359
+M012359
+012373
+M012373
+012374
+M012374
+012375
+M012375
+012376
+M012376
+012377
+M012377
+012391
+M012391
+012392
+M012392
+012393
+M012393
+012394
+M012394
+012395
+M012395
+012403
+M012403
+012404
+M012404
+012405
+M012405
+012406
+M012406
+012407
+M012407
+012408
+M012408
+012409
+M012409
+012410
+M012410
+012411
+M012411
+012412
+M012412
+012413
+M012413
+012414
+M012414
+012415
+M012415
+012416
+M012416
+012417
+M012417
+012418
+M012418
+012424
+M012424
+012425
+M012425
+012432
+M012432
+012433
+M012433
+012434
+M012434
+012435
+M012435
+012436
+M012436
+012437
+M012437
+012438
+M012438
+012439
+M012439
+012440
+M012440
+012441
+M012441
+012442
+M012442
+012443
+M012443
+012444
+M012444
+012445
+M012445
+012446
+M012446
+012447
+M012447
+012448
+M012448
+012449
+M012449
+012450
+M012450
+012451
+M012451
+012452
+M012452
+012453
+M012453
+012454
+M012454
+012468
+M012468
+012469
+M012469
+012470
+M012470
+012471
+M012471
+012472
+M012472
+012473
+M012473
+012474
+M012474
+012475
+M012475
+012476
+M012476
+012477
+M012477
+012478
+M012478
+012479
+M012479
+012480
+M012480
+012481
+M012481
+012482
+M012482
+012484
+M012484
+012485
+M012485
+012486
+M012486
+012487
+M012487
+012488
+M012488
+012489
+M012489
+012490
+M012490
+012491
+M012491
+012492
+M012492
+012493
+M012493
+012494
+M012494
+012495
+M012495
+012496
+M012496
+012497
+M012497
+012498
+M012498
+012499
+M012499
+012500
+M012500
+012501
+M012501
+012502
+M012502
+012503
+M012503
+012504
+M012504
+012505
+M012505
+012506
+M012506
+012507
+M012507
+012508
+M012508
+012509
+M012509
+012536
+M012536
+012537
+M012537
+012538
+M012538
+012539
+M012539
+012540
+M012540
+012541
+M012541
+012542
+M012542
+012543
+M012543
+012544
+M012544
+012545
+M012545
+012546
+M012546
+012547
+M012547
+012548
+M012548
+012555
+M012555
+012556
+M012556
+012557
+M012557
+012558
+M012558
+012559
+M012559
+012566
+M012566
+012567
+M012567
+012568
+M012568
+012569
+M012569
+012570
+M012570
+012571
+M012571
+012572
+M012572
+012573
+M012573
+012574
+M012574
+012575
+M012575
+012576
+M012576
+012577
+M012577
+012578
+M012578
+012579
+M012579
+012580
+M012580
+012581
+M012581
+012582
+M012582
+012583
+M012583
+012584
+M012584
+012585
+M012585
+012586
+M012586
+012587
+M012587
+012588
+M012588
+012589
+M012589
+012590
+M012590
+012591
+M012591
+012592
+M012592
+012593
+M012593
+012594
+M012594
+012595
+M012595
+012596
+M012596
+012597
+M012597
+012598
+M012598
+012599
+M012599
+012600
+M012600
+012601
+M012601
+012602
+M012602
+012603
+M012603
+012604
+M012604
+012605
+M012605
+012615
+M012615
+012616
+M012616
+012617
+M012617
+012618
+M012618
+012619
+M012619
+012620
+M012620
+012621
+M012621
+012622
+M012622
+012623
+M012623
+012624
+M012624
+012625
+M012625
+012626
+M012626
+012627
+M012627
+012628
+M012628
+012629
+M012629
+012630
+M012630
+012631
+M012631
+012632
+M012632
+012633
+M012633
+012634
+M012634
+012635
+M012635
+012636
+M012636
+012637
+M012637
+012638
+M012638
+012639
+M012639
+012640
+M012640
+012641
+M012641
+012642
+M012642
+012643
+M012643
+012644
+M012644
+012645
+M012645
+012646
+M012646
+012647
+M012647
+012648
+M012648
+012649
+M012649
+012650
+M012650
+012651
+M012651
+012652
+M012652
+012674
+M012674
+012675
+M012675
+012676
+M012676
+012677
+M012677
+012678
+M012678
+012679
+M012679
+012680
+M012680
+012681
+M012681
+012682
+M012682
+012683
+M012683
+012684
+M012684
+012685
+M012685
+012686
+M012686
+012687
+M012687
+012688
+M012688
+012689
+M012689
+012690
+M012690
+012699
+M012699
+012700
+M012700
+012701
+M012701
+012703
+M012703
+012704
+M012704
+012705
+M012705
+012706
+M012706
+012707
+M012707
+012708
+M012708
+012709
+M012709
+012710
+M012710
+012711
+M012711
+012712
+M012712
+012713
+M012713
+012714
+M012714
+012738
+M012738
+012739
+M012739
+012740
+M012740
+012741
+M012741
+012742
+M012742
+012743
+M012743
+012744
+M012744
+012745
+M012745
+012746
+M012746
+012747
+M012747
+012748
+M012748
+012749
+M012749
+012750
+M012750
+012751
+M012751
+012752
+M012752
+012753
+M012753
+012754
+M012754
+012755
+M012755
+012756
+M012756
+012757
+M012757
+012758
+M012758
+012759
+M012759
+012760
+M012760
+012761
+M012761
+012762
+M012762
+012763
+M012763
+012764
+M012764
+012765
+M012765
+012766
+M012766
+012767
+M012767
+012768
+M012768
+012769
+M012769
+012770
+M012770
+012771
+M012771
+012773
+M012773
+012774
+M012774
+012775
+M012775
+012776
+M012776
+012777
+M012777
+012778
+M012778
+012779
+M012779
+012780
+M012780
+012781
+M012781
+012782
+M012782
+012783
+M012783
+012784
+M012784
+012785
+M012785
+012786
+M012786
+012787
+M012787
+012788
+M012788
+012789
+M012789
+012790
+M012790
+012791
+M012791
+012792
+M012792
+012793
+M012793
+012794
+M012794
+012795
+M012795
+012796
+M012796
+012797
+M012797
+012798
+M012798
+012799
+M012799
+012800
+M012800
+012801
+M012801
+012802
+M012802
+012803
+M012803
+012804
+M012804
+012805
+M012805
+012806
+M012806
+012807
+M012807
+012808
+M012808
+012809
+M012809
+012810
+M012810
+012811
+M012811
+012812
+M012812
+012813
+M012813
+012820
+M012820
+012821
+M012821
+012822
+M012822
+012823
+M012823
+012824
+M012824
+012825
+M012825
+012826
+M012826
+012827
+M012827
+012828
+M012828
+012829
+M012829
+012830
+M012830
+012831
+M012831
+012832
+M012832
+012833
+M012833
+012834
+M012834
+012835
+M012835
+012836
+M012836
+012837
+M012837
+012838
+M012838
+012839
+M012839
+012840
+M012840
+012841
+M012841
+012842
+M012842
+012843
+M012843
+012844
+M012844
+012845
+M012845
+012846
+M012846
+012847
+M012847
+012848
+M012848
+012849
+M012849
+012850
+M012850
+012851
+M012851
+012852
+M012852
+012853
+M012853
+012854
+M012854
+012855
+M012855
+012856
+M012856
+012857
+M012857
+012858
+M012858
+012859
+M012859
+012860
+M012860
+012861
+M012861
+012862
+M012862
+012863
+M012863
+012864
+M012864
+012865
+M012865
+012866
+M012866
+012867
+M012867
+012868
+M012868
+012869
+M012869
+012870
+M012870
+012871
+M012871
+012872
+M012872
+012873
+M012873
+012874
+M012874
+012875
+M012875
+012876
+M012876
+012877
+M012877
+012878
+M012878
+012879
+M012879
+012880
+M012880
+012881
+M012881
+012882
+M012882
+012883
+M012883
+012884
+M012884
+012885
+M012885
+012886
+M012886
+012887
+M012887
+012888
+M012888
+012889
+M012889
+012890
+M012890
+012891
+M012891
+012892
+M012892
+012893
+M012893
+012894
+M012894
+012895
+M012895
+012896
+M012896
+012897
+M012897
+012898
+M012898
+012904
+M012904
+012905
+M012905
+012906
+M012906
+012907
+M012907
+012908
+M012908
+012909
+M012909
+012910
+M012910
+012911
+M012911
+012912
+M012912
+012913
+M012913
+012914
+M012914
+012915
+M012915
+012916
+M012916
+012917
+M012917
+012918
+M012918
+012919
+M012919
+012920
+M012920
+012921
+M012921
+012922
+M012922
+012923
+M012923
+012924
+M012924
+012925
+M012925
+012926
+M012926
+012927
+M012927
+012928
+M012928
+012929
+M012929
+012930
+M012930
+012931
+M012931
+012932
+M012932
+012933
+M012933
+012934
+M012934
+012935
+M012935
+012940
+M012940
+012941
+M012941
+012942
+M012942
+012943
+M012943
+012944
+M012944
+012945
+M012945
+012946
+M012946
+012947
+M012947
+012948
+M012948
+012949
+M012949
+012950
+M012950
+012951
+M012951
+012952
+M012952
+012953
+M012953
+012954
+M012954
+012955
+M012955
+012956
+M012956
+012957
+M012957
+012958
+M012958
+012959
+M012959
+012960
+M012960
+012961
+M012961
+012962
+M012962
+012963
+M012963
+012964
+M012964
+012965
+M012965
+012966
+M012966
+012967
+M012967
+012968
+M012968
+012969
+M012969
+012970
+M012970
+012971
+M012971
+012972
+M012972
+012973
+M012973
+012974
+M012974
+012975
+M012975
+012976
+M012976
+012977
+M012977
+012978
+M012978
+012979
+M012979
+012980
+M012980
+012981
+M012981
+012982
+M012982
+012983
+M012983
+012984
+M012984
+012985
+M012985
+012986
+M012986
+012987
+M012987
+012988
+M012988
+012989
+M012989
+012990
+M012990
+012991
+M012991
+012992
+M012992
+012993
+M012993
+012994
+M012994
+012995
+M012995
+012996
+M012996
+012997
+M012997
+012998
+M012998
+012999
+M012999
+013000
+M013000
+013001
+M013001
+013002
+M013002
+013003
+M013003
+013004
+M013004
+013005
+M013005
+013006
+M013006
+013007
+M013007
+013008
+M013008
+013009
+M013009
+013010
+M013010
+013011
+M013011
+013012
+M013012
+013013
+M013013
+013014
+M013014
+013015
+M013015
+013016
+M013016
+013017
+M013017
+013018
+M013018
+013019
+M013019
+013020
+M013020
+013021
+M013021
+013022
+M013022
+013023
+M013023
+013024
+M013024
+013025
+M013025
+013026
+M013026
+013027
+M013027
+013028
+M013028
+013029
+M013029
+013030
+M013030
+013031
+M013031
+013032
+M013032
+013033
+M013033
+013034
+M013034
+013035
+M013035
+013036
+M013036
+013037
+M013037
+013038
+M013038
+013039
+M013039
+013045
+M013045
+013046
+M013046
+013047
+M013047
+013048
+M013048
+013049
+M013049
+013050
+M013050
+013051
+M013051
+013052
+M013052
+013053
+M013053
+013054
+M013054
+013055
+M013055
+013056
+M013056
+013057
+M013057
+013058
+M013058
+013059
+M013059
+013060
+M013060
+013061
+M013061
+013062
+M013062
+013063
+M013063
+013064
+M013064
+013065
+M013065
+013102
+M013102
+013103
+M013103
+013104
+M013104
+013105
+M013105
+013106
+M013106
+013107
+M013107
+013108
+M013108
+013109
+M013109
+013110
+M013110
+013111
+M013111
+013112
+M013112
+013113
+M013113
+013114
+M013114
+013115
+M013115
+013116
+M013116
+013117
+M013117
+013118
+M013118
+013119
+M013119
+013120
+M013120
+013121
+M013121
+013122
+M013122
+013123
+M013123
+013124
+M013124
+013132
+M013132
+013133
+M013133
+013134
+M013134
+013135
+M013135
+013136
+M013136
+013137
+M013137
+013138
+M013138
+013139
+M013139
+013140
+M013140
+013141
+M013141
+013142
+M013142
+013143
+M013143
+013144
+M013144
+013145
+M013145
+013146
+M013146
+013147
+M013147
+013148
+M013148
+013149
+M013149
+013150
+M013150
+013162
+M013162
+013163
+M013163
+013164
+M013164
+013165
+M013165
+013166
+M013166
+013167
+M013167
+013172
+M013172
+013173
+M013173
+013174
+M013174
+013175
+M013175
+013176
+M013176
+013177
+M013177
+013178
+M013178
+013179
+M013179
+013180
+M013180
+013181
+M013181
+013182
+M013182
+013183
+M013183
+013184
+M013184
+013185
+M013185
+013186
+M013186
+013187
+M013187
+013188
+M013188
+013197
+M013197
+013198
+M013198
+013199
+M013199
+013200
+M013200
+013201
+M013201
+013202
+M013202
+013203
+M013203
+013204
+M013204
+013205
+M013205
+013206
+M013206
+013207
+M013207
+013208
+M013208
+013209
+M013209
+013210
+M013210
+013211
+M013211
+013212
+M013212
+013213
+M013213
+013214
+M013214
+013215
+M013215
+013216
+M013216
+013217
+M013217
+013218
+M013218
+013219
+M013219
+013220
+M013220
+013221
+M013221
+013222
+M013222
+013223
+M013223
+013232
+M013232
+013233
+M013233
+013234
+M013234
+013235
+M013235
+013236
+M013236
+013237
+M013237
+013238
+M013238
+013239
+M013239
+013240
+M013240
+013241
+M013241
+013242
+M013242
+013243
+M013243
+013281
+M013281
+013282
+M013282
+013283
+M013283
+013284
+M013284
+013285
+M013285
+013286
+M013286
+013287
+M013287
+013288
+M013288
+013289
+M013289
+013290
+M013290
+013291
+M013291
+013292
+M013292
+013293
+M013293
+013294
+M013294
+013295
+M013295
+013296
+M013296
+013302
+M013302
+013303
+M013303
+013304
+M013304
+013305
+M013305
+013306
+M013306
+013307
+M013307
+013308
+M013308
+013309
+M013309
+013310
+M013310
+013311
+M013311
+013312
+M013312
+013313
+M013313
+013314
+M013314
+013315
+M013315
+013318
+M013318
+013319
+M013319
+013320
+M013320
+013321
+M013321
+013322
+M013322
+013323
+M013323
+013324
+M013324
+013325
+M013325
+013326
+M013326
+013327
+M013327
+013328
+M013328
+013329
+M013329
+013330
+M013330
+013331
+M013331
+013332
+M013332
+013333
+M013333
+013334
+M013334
+013335
+M013335
+013336
+M013336
+013337
+M013337
+013338
+M013338
+013339
+M013339
+013340
+M013340
+013341
+M013341
+013342
+M013342
+013343
+M013343
+013344
+M013344
+013345
+M013345
+013346
+M013346
+013347
+M013347
+013348
+M013348
+013349
+M013349
+013350
+M013350
+013351
+M013351
+013352
+M013352
+013353
+M013353
+013354
+M013354
+013355
+M013355
+013356
+M013356
+013357
+M013357
+013358
+M013358
+013359
+M013359
+013360
+M013360
+013361
+M013361
+013362
+M013362
+013363
+M013363
+013364
+M013364
+013365
+M013365
+013366
+M013366
+013367
+M013367
+013368
+M013368
+013369
+M013369
+013370
+M013370
+013371
+M013371
+013372
+M013372
+013373
+M013373
+013374
+M013374
+013375
+M013375
+013376
+M013376
+013377
+M013377
+013378
+M013378
+013379
+M013379
+013380
+M013380
+013381
+M013381
+013382
+M013382
+013383
+M013383
+013384
+M013384
+013385
+M013385
+013386
+M013386
+013387
+M013387
+013388
+M013388
+013407
+M013407
+013408
+M013408
+013409
+M013409
+013410
+M013410
+013411
+M013411
+013412
+M013412
+013413
+M013413
+013414
+M013414
+013415
+M013415
+013416
+M013416
+013417
+M013417
+013418
+M013418
+013419
+M013419
+013420
+M013420
+013421
+M013421
+013422
+M013422
+013423
+M013423
+013424
+M013424
+013425
+M013425
+013426
+M013426
+013427
+M013427
+013428
+M013428
+013429
+M013429
+013430
+M013430
+013431
+M013431
+013432
+M013432
+013433
+M013433
+013434
+M013434
+013435
+M013435
+013436
+M013436
+013437
+M013437
+013438
+M013438
+013439
+M013439
+013440
+M013440
+013441
+M013441
+013442
+M013442
+013443
+M013443
+013444
+M013444
+013445
+M013445
+013446
+M013446
+013447
+M013447
+013448
+M013448
+013449
+M013449
+013450
+M013450
+013451
+M013451
+013452
+M013452
+013453
+M013453
+013454
+M013454
+013455
+M013455
+013456
+M013456
+013457
+M013457
+013458
+M013458
+013459
+M013459
+013460
+M013460
+013461
+M013461
+013462
+M013462
+013463
+M013463
+013464
+M013464
+013467
+M013467
+013468
+M013468
+013469
+M013469
+013470
+M013470
+013471
+M013471
+013472
+M013472
+013473
+M013473
+013474
+M013474
+013475
+M013475
+013476
+M013476
+013477
+M013477
+013478
+M013478
+013479
+M013479
+013480
+M013480
+013481
+M013481
+013482
+M013482
+013483
+M013483
+013484
+M013484
+013485
+M013485
+013486
+M013486
+013487
+M013487
+013488
+M013488
+013489
+M013489
+013490
+M013490
+013491
+M013491
+013492
+M013492
+013493
+M013493
+013494
+M013494
+013495
+M013495
+013496
+M013496
+013497
+M013497
+013498
+M013498
+013499
+M013499
+013500
+M013500
+013501
+M013501
+013502
+M013502
+013503
+M013503
+013504
+M013504
+013505
+M013505
+013508
+M013508
+013509
+M013509
+013510
+M013510
+013511
+M013511
+013512
+M013512
+013513
+M013513
+013514
+M013514
+013515
+M013515
+013516
+M013516
+013517
+M013517
+013518
+M013518
+013519
+M013519
+013520
+M013520
+013521
+M013521
+013522
+M013522
+013523
+M013523
+013524
+M013524
+013525
+M013525
+013526
+M013526
+013527
+M013527
+013528
+M013528
+013529
+M013529
+013530
+M013530
+013531
+M013531
+013532
+M013532
+013533
+M013533
+013534
+M013534
+013535
+M013535
+013536
+M013536
+013537
+M013537
+013538
+M013538
+013539
+M013539
+013540
+M013540
+013541
+M013541
+013542
+M013542
+013543
+M013543
+013544
+M013544
+013545
+M013545
+013546
+M013546
+013547
+M013547
+013548
+M013548
+013549
+M013549
+013550
+M013550
+013551
+M013551
+013552
+M013552
+013553
+M013553
+013554
+M013554
+013555
+M013555
+013556
+M013556
+013557
+M013557
+013558
+M013558
+013559
+M013559
+013560
+M013560
+013561
+M013561
+013562
+M013562
+013563
+M013563
+013564
+M013564
+013565
+M013565
+013566
+M013566
+013567
+M013567
+013568
+M013568
+013569
+M013569
+013570
+M013570
+013571
+M013571
+013572
+M013572
+013573
+M013573
+013574
+M013574
+013575
+M013575
+013576
+M013576
+013584
+M013584
+013585
+M013585
+013586
+M013586
+013587
+M013587
+013588
+M013588
+013589
+M013589
+013590
+M013590
+013591
+M013591
+013592
+M013592
+013593
+M013593
+013594
+M013594
+013595
+M013595
+013596
+M013596
+013597
+M013597
+013598
+M013598
+013599
+M013599
+013600
+M013600
+013601
+M013601
+013602
+M013602
+013603
+M013603
+013604
+M013604
+013605
+M013605
+013606
+M013606
+013607
+M013607
+013608
+M013608
+013609
+M013609
+013610
+M013610
+013611
+M013611
+013612
+M013612
+013613
+M013613
+013614
+M013614
+013615
+M013615
+013616
+M013616
+013617
+M013617
+013618
+M013618
+013619
+M013619
+013620
+M013620
+013621
+M013621
+013622
+M013622
+013623
+M013623
+013624
+M013624
+013625
+M013625
+013626
+M013626
+013627
+M013627
+013628
+M013628
+013629
+M013629
+013630
+M013630
+013631
+M013631
+013632
+M013632
+013633
+M013633
+013634
+M013634
+013635
+M013635
+013636
+M013636
+013637
+M013637
+013638
+M013638
+013639
+M013639
+013640
+M013640
+013641
+M013641
+013642
+M013642
+013643
+M013643
+013644
+M013644
+013645
+M013645
+013646
+M013646
+013647
+M013647
+013648
+M013648
+013649
+M013649
+013650
+M013650
+013651
+M013651
+013652
+M013652
+013653
+M013653
+013654
+M013654
+013655
+M013655
+013656
+M013656
+013657
+M013657
+013658
+M013658
+013659
+M013659
+013660
+M013660
+013661
+M013661
+013662
+M013662
+013663
+M013663
+013664
+M013664
+013668
+M013668
+013669
+M013669
+013670
+M013670
+013671
+M013671
+013672
+M013672
+013673
+M013673
+013674
+M013674
+013675
+M013675
+013676
+M013676
+013677
+M013677
+013678
+M013678
+013679
+M013679
+013680
+M013680
+013681
+M013681
+013682
+M013682
+013683
+M013683
+013684
+M013684
+013685
+M013685
+013686
+M013686
+013687
+M013687
+013688
+M013688
+013689
+M013689
+013690
+M013690
+013691
+M013691
+013692
+M013692
+013693
+M013693
+013694
+M013694
+013695
+M013695
+013696
+M013696
+013697
+M013697
+013698
+M013698
+013699
+M013699
+013700
+M013700
+013701
+M013701
+013702
+M013702
+013703
+M013703
+013704
+M013704
+013705
+M013705
+013706
+M013706
+013707
+M013707
+013708
+M013708
+013709
+M013709
+013710
+M013710
+013711
+M013711
+013712
+M013712
+013713
+M013713
+013714
+M013714
+013715
+M013715
+013716
+M013716
+013717
+M013717
+013718
+M013718
+013719
+M013719
+013720
+M013720
+013721
+M013721
+013722
+M013722
+013723
+M013723
+013729
+M013729
+013730
+M013730
+013731
+M013731
+013732
+M013732
+013733
+M013733
+013734
+M013734
+013735
+M013735
+013783
+M013783
+013784
+M013784
+013785
+M013785
+013795
+M013795
+013796
+M013796
+013797
+M013797
+013798
+M013798
+013799
+M013799
+013803
+M013803
+013804
+M013804
+013805
+M013805
+013806
+M013806
+013807
+M013807
+013808
+M013808
+013809
+M013809
+013810
+M013810
+013811
+M013811
+013812
+M013812
+013813
+M013813
+013814
+M013814
+013815
+M013815
+013816
+M013816
+013817
+M013817
+013818
+M013818
+013819
+M013819
+013820
+M013820
+013821
+M013821
+013822
+M013822
+013823
+M013823
+013824
+M013824
+013825
+M013825
+013826
+M013826
+013832
+M013832
+013833
+M013833
+013834
+M013834
+013835
+M013835
+013836
+M013836
+013837
+M013837
+013838
+M013838
+013839
+M013839
+013840
+M013840
+013841
+M013841
+013842
+M013842
+013843
+M013843
+013844
+M013844
+013845
+M013845
+013846
+M013846
+013847
+M013847
+013848
+M013848
+013849
+M013849
+013850
+M013850
+013851
+M013851
+013852
+M013852
+013853
+M013853
+013854
+M013854
+013855
+M013855
+013856
+M013856
+013857
+M013857
+013858
+M013858
+013859
+M013859
+013860
+M013860
+013861
+M013861
+013862
+M013862
+013863
+M013863
+013864
+M013864
+013871
+M013871
+013872
+M013872
+013873
+M013873
+013874
+M013874
+013875
+M013875
+013876
+M013876
+013877
+M013877
+013878
+M013878
+013879
+M013879
+013880
+M013880
+013881
+M013881
+013882
+M013882
+013883
+M013883
+013884
+M013884
+013885
+M013885
+013886
+M013886
+013887
+M013887
+013888
+M013888
+013889
+M013889
+013890
+M013890
+013891
+M013891
+013892
+M013892
+013893
+M013893
+013926
+M013926
+013927
+M013927
+013928
+M013928
+013929
+M013929
+013930
+M013930
+013931
+M013931
+013932
+M013932
+013933
+M013933
+013934
+M013934
+013935
+M013935
+013936
+M013936
+013937
+M013937
+013938
+M013938
+013939
+M013939
+013940
+M013940
+013941
+M013941
+013942
+M013942
+013963
+M013963
+013964
+M013964
+013965
+M013965
+013966
+M013966
+013967
+M013967
+013968
+M013968
+013969
+M013969
+013970
+M013970
+013971
+M013971
+013972
+M013972
+013973
+M013973
+013974
+M013974
+013975
+M013975
+014002
+M014002
+014003
+M014003
+014004
+M014004
+014005
+M014005
+014006
+M014006
+014007
+M014007
+014008
+M014008
+014009
+M014009
+014010
+M014010
+014011
+M014011
+014018
+M014018
+014019
+M014019
+014020
+M014020
+014021
+M014021
+014022
+M014022
+014023
+M014023
+014024
+M014024
+014025
+M014025
+014026
+M014026
+014027
+M014027
+014028
+M014028
+014029
+M014029
+014030
+M014030
+014031
+M014031
+014032
+M014032
+014033
+M014033
+014034
+M014034
+014035
+M014035
+014036
+M014036
+014037
+M014037
+014038
+M014038
+014039
+M014039
+014040
+M014040
+014041
+M014041
+014042
+M014042
+014043
+M014043
+014044
+M014044
+014045
+M014045
+014046
+M014046
+014047
+M014047
+014048
+M014048
+014049
+M014049
+014050
+M014050
+014051
+M014051
+014052
+M014052
+014053
+M014053
+014054
+M014054
+014055
+M014055
+014056
+M014056
+014057
+M014057
+014058
+M014058
+014059
+M014059
+014060
+M014060
+014061
+M014061
+014062
+M014062
+014063
+M014063
+014064
+M014064
+014065
+M014065
+014066
+M014066
+014067
+M014067
+014068
+M014068
+014069
+M014069
+014070
+M014070
+014071
+M014071
+014072
+M014072
+014073
+M014073
+014074
+M014074
+014075
+M014075
+014076
+M014076
+014077
+M014077
+014078
+M014078
+014079
+M014079
+014080
+M014080
+014081
+M014081
+014082
+M014082
+014083
+M014083
+014084
+M014084
+014085
+M014085
+014086
+M014086
+014087
+M014087
+014088
+M014088
+014089
+M014089
+014090
+M014090
+014091
+M014091
+014092
+M014092
+014093
+M014093
+014094
+M014094
+014095
+M014095
+014096
+M014096
+014097
+M014097
+014098
+M014098
+014099
+M014099
+014100
+M014100
+014101
+M014101
+014102
+M014102
+014103
+M014103
+014104
+M014104
+014105
+M014105
+014106
+M014106
+014107
+M014107
+014108
+M014108
+014109
+M014109
+014110
+M014110
+014111
+M014111
+014112
+M014112
+014113
+M014113
+014142
+M014142
+014143
+M014143
+014144
+M014144
+014145
+M014145
+014146
+M014146
+014147
+M014147
+014148
+M014148
+014149
+M014149
+014150
+M014150
+014151
+M014151
+014152
+M014152
+014153
+M014153
+014154
+M014154
+014155
+M014155
+014156
+M014156
+014157
+M014157
+014158
+M014158
+014159
+M014159
+014160
+M014160
+014161
+M014161
+014162
+M014162
+014163
+M014163
+014164
+M014164
+014165
+M014165
+014166
+M014166
+014167
+M014167
+014168
+M014168
+014169
+M014169
+014170
+M014170
+014171
+M014171
+014172
+M014172
+014173
+M014173
+014174
+M014174
+014175
+M014175
+014176
+M014176
+014177
+M014177
+014178
+M014178
+014179
+M014179
+014180
+M014180
+014181
+M014181
+014182
+M014182
+014183
+M014183
+014184
+M014184
+014185
+M014185
+014186
+M014186
+014187
+M014187
+014188
+M014188
+014189
+M014189
+014190
+M014190
+014191
+M014191
+014192
+M014192
+014193
+M014193
+014194
+M014194
+014195
+M014195
+014196
+M014196
+014197
+M014197
+014198
+M014198
+014199
+M014199
+014200
+M014200
+014201
+M014201
+014202
+M014202
+014203
+M014203
+014204
+M014204
+014205
+M014205
+014206
+M014206
+014207
+M014207
+014208
+M014208
+014209
+M014209
+014210
+M014210
+014211
+M014211
+014212
+M014212
+014213
+M014213
+014214
+M014214
+014215
+M014215
+014216
+M014216
+014217
+M014217
+014218
+M014218
+014219
+M014219
+014220
+M014220
+014221
+M014221
+014222
+M014222
+014223
+M014223
+014224
+M014224
+014225
+M014225
+014226
+M014226
+014227
+M014227
+014228
+M014228
+014229
+M014229
+014230
+M014230
+014231
+M014231
+014232
+M014232
+014233
+M014233
+014234
+M014234
+014236
+M014236
+014237
+M014237
+014238
+M014238
+014239
+M014239
+014240
+M014240
+014241
+M014241
+014242
+M014242
+014243
+M014243
+014244
+M014244
+014245
+M014245
+014246
+M014246
+014247
+M014247
+014248
+M014248
+014249
+M014249
+014250
+M014250
+014251
+M014251
+014252
+M014252
+014253
+M014253
+014254
+M014254
+014255
+M014255
+014256
+M014256
+014257
+M014257
+014258
+M014258
+014259
+M014259
+014260
+M014260
+014261
+M014261
+014262
+M014262
+014263
+M014263
+014264
+M014264
+014265
+M014265
+014266
+M014266
+014267
+M014267
+014268
+M014268
+014269
+M014269
+014270
+M014270
+014271
+M014271
+014272
+M014272
+014273
+M014273
+014274
+M014274
+014275
+M014275
+014276
+M014276
+014277
+M014277
+014278
+M014278
+014279
+M014279
+014280
+M014280
+014281
+M014281
+014282
+M014282
+014283
+M014283
+014284
+M014284
+014292
+M014292
+014293
+M014293
+014294
+M014294
+014295
+M014295
+014296
+M014296
+014297
+M014297
+014298
+M014298
+014299
+M014299
+014300
+M014300
+014301
+M014301
+014302
+M014302
+014303
+M014303
+014304
+M014304
+014305
+M014305
+014306
+M014306
+014307
+M014307
+014308
+M014308
+014309
+M014309
+014310
+M014310
+014311
+M014311
+014312
+M014312
+014313
+M014313
+014314
+M014314
+014315
+M014315
+014316
+M014316
+014317
+M014317
+014318
+M014318
+014319
+M014319
+014320
+M014320
+014322
+M014322
+014323
+M014323
+014324
+M014324
+014325
+M014325
+014326
+M014326
+014327
+M014327
+014328
+M014328
+014329
+M014329
+014330
+M014330
+014332
+M014332
+014333
+M014333
+014334
+M014334
+014335
+M014335
+014336
+M014336
+014337
+M014337
+014338
+M014338
+014339
+M014339
+014340
+M014340
+014341
+M014341
+014342
+M014342
+014343
+M014343
+014344
+M014344
+014345
+M014345
+014346
+M014346
+014347
+M014347
+014348
+M014348
+014355
+M014355
+014356
+M014356
+014357
+M014357
+014358
+M014358
+014359
+M014359
+014360
+M014360
+014361
+M014361
+014362
+M014362
+014363
+M014363
+014364
+M014364
+014365
+M014365
+014366
+M014366
+014367
+M014367
+014368
+M014368
+014369
+M014369
+014370
+M014370
+014371
+M014371
+014372
+M014372
+014373
+M014373
+014374
+M014374
+014375
+M014375
+014376
+M014376
+014377
+M014377
+014378
+M014378
+014379
+M014379
+014401
+M014401
+014402
+M014402
+014403
+M014403
+014404
+M014404
+014405
+M014405
+014428
+M014428
+014429
+M014429
+014430
+M014430
+014431
+M014431
+014432
+M014432
+014433
+M014433
+014434
+M014434
+014435
+M014435
+014436
+M014436
+014437
+M014437
+014438
+M014438
+014439
+M014439
+014440
+M014440
+014441
+M014441
+014442
+M014442
+014443
+M014443
+014444
+M014444
+014445
+M014445
+014446
+M014446
+014447
+M014447
+014448
+M014448
+014449
+M014449
+014450
+M014450
+014451
+M014451
+014452
+M014452
+014453
+M014453
+014454
+M014454
+014455
+M014455
+014456
+M014456
+014457
+M014457
+014458
+M014458
+014459
+M014459
+014460
+M014460
+014461
+M014461
+014462
+M014462
+014463
+M014463
+014464
+M014464
+014483
+M014483
+014484
+M014484
+014485
+M014485
+014486
+M014486
+014487
+M014487
+014488
+M014488
+014489
+M014489
+014490
+M014490
+014491
+M014491
+014492
+M014492
+014495
+M014495
+014496
+M014496
+014497
+M014497
+014498
+M014498
+014499
+M014499
+014500
+M014500
+014501
+M014501
+014502
+M014502
+014503
+M014503
+014504
+M014504
+014505
+M014505
+014506
+M014506
+014507
+M014507
+014508
+M014508
+014509
+M014509
+014510
+M014510
+014511
+M014511
+014512
+M014512
+014513
+M014513
+014514
+M014514
+014515
+M014515
+014516
+M014516
+014517
+M014517
+014518
+M014518
+014519
+M014519
+014520
+M014520
+014521
+M014521
+014522
+M014522
+014523
+M014523
+014524
+M014524
+014525
+M014525
+014526
+M014526
+014527
+M014527
+014528
+M014528
+014529
+M014529
+014530
+M014530
+014531
+M014531
+014540
+M014540
+014541
+M014541
+014542
+M014542
+014543
+M014543
+014544
+M014544
+014545
+M014545
+014546
+M014546
+014547
+M014547
+014548
+M014548
+014549
+M014549
+014550
+M014550
+014551
+M014551
+014552
+M014552
+014553
+M014553
+014554
+M014554
+014555
+M014555
+014556
+M014556
+014557
+M014557
+014558
+M014558
+014559
+M014559
+014560
+M014560
+014561
+M014561
+014562
+M014562
+014563
+M014563
+014579
+M014579
+014580
+M014580
+014581
+M014581
+014582
+M014582
+014583
+M014583
+014584
+M014584
+014585
+M014585
+014586
+M014586
+014587
+M014587
+014588
+M014588
+014589
+M014589
+014590
+M014590
+014591
+M014591
+014592
+M014592
+014593
+M014593
+014594
+M014594
+014595
+M014595
+014596
+M014596
+014597
+M014597
+014598
+M014598
+014599
+M014599
+014600
+M014600
+014601
+M014601
+014602
+M014602
+014603
+M014603
+014604
+M014604
+014605
+M014605
+014606
+M014606
+014607
+M014607
+014608
+M014608
+014609
+M014609
+014610
+M014610
+014611
+M014611
+014612
+M014612
+014613
+M014613
+014614
+M014614
+014615
+M014615
+014616
+M014616
+014617
+M014617
+014618
+M014618
+014619
+M014619
+014620
+M014620
+014621
+M014621
+014622
+M014622
+014623
+M014623
+014624
+M014624
+014625
+M014625
+014626
+M014626
+014627
+M014627
+014643
+M014643
+014644
+M014644
+014645
+M014645
+014646
+M014646
+014647
+M014647
+014648
+M014648
+014649
+M014649
+014650
+M014650
+014651
+M014651
+014652
+M014652
+014653
+M014653
+014655
+M014655
+014656
+M014656
+014657
+M014657
+014658
+M014658
+014659
+M014659
+014660
+M014660
+014661
+M014661
+014662
+M014662
+014663
+M014663
+014664
+M014664
+014665
+M014665
+014666
+M014666
+014667
+M014667
+014672
+M014672
+014673
+M014673
+014674
+M014674
+014675
+M014675
+014695
+M014695
+014696
+M014696
+014697
+M014697
+014698
+M014698
+014699
+M014699
+014700
+M014700
+014701
+M014701
+014702
+M014702
+014703
+M014703
+014704
+M014704
+014705
+M014705
+014706
+M014706
+014707
+M014707
+014708
+M014708
+014709
+M014709
+014710
+M014710
+014711
+M014711
+014712
+M014712
+014713
+M014713
+014714
+M014714
+014715
+M014715
+014716
+M014716
+014717
+M014717
+014718
+M014718
+014719
+M014719
+014720
+M014720
+014721
+M014721
+014722
+M014722
+014723
+M014723
+014724
+M014724
+014725
+M014725
+014726
+M014726
+014727
+M014727
+014728
+M014728
+014729
+M014729
+014730
+M014730
+014731
+M014731
+014732
+M014732
+014733
+M014733
+014734
+M014734
+014735
+M014735
+014736
+M014736
+014737
+M014737
+014738
+M014738
+014739
+M014739
+014740
+M014740
+014741
+M014741
+014742
+M014742
+014743
+M014743
+014744
+M014744
+014745
+M014745
+014746
+M014746
+014747
+M014747
+014748
+M014748
+014749
+M014749
+014750
+M014750
+014751
+M014751
+014752
+M014752
+014753
+M014753
+014754
+M014754
+014755
+M014755
+014756
+M014756
+014757
+M014757
+014758
+M014758
+014759
+M014759
+014760
+M014760
+014761
+M014761
+014762
+M014762
+014763
+M014763
+014764
+M014764
+014765
+M014765
+014778
+M014778
+014779
+M014779
+014780
+M014780
+014781
+M014781
+014782
+M014782
+014783
+M014783
+014784
+M014784
+014785
+M014785
+014786
+M014786
+014787
+M014787
+014788
+M014788
+014789
+M014789
+014790
+M014790
+014791
+M014791
+014792
+M014792
+014793
+M014793
+014794
+M014794
+014795
+M014795
+014796
+M014796
+014797
+M014797
+014798
+M014798
+014799
+M014799
+014800
+M014800
+014801
+M014801
+014802
+M014802
+014803
+M014803
+014804
+M014804
+014805
+M014805
+014806
+M014806
+014807
+M014807
+014808
+M014808
+014809
+M014809
+014819
+M014819
+014820
+M014820
+014821
+M014821
+014822
+M014822
+014823
+M014823
+014824
+M014824
+014825
+M014825
+014826
+M014826
+014827
+M014827
+014828
+M014828
+014829
+M014829
+014830
+M014830
+014831
+M014831
+014832
+M014832
+014833
+M014833
+014834
+M014834
+014835
+M014835
+014836
+M014836
+014854
+M014854
+014855
+M014855
+014856
+M014856
+014857
+M014857
+014858
+M014858
+014859
+M014859
+014860
+M014860
+014861
+M014861
+014862
+M014862
+014863
+M014863
+014864
+M014864
+014865
+M014865
+014866
+M014866
+014867
+M014867
+014868
+M014868
+014869
+M014869
+014870
+M014870
+014871
+M014871
+014872
+M014872
+014873
+M014873
+014874
+M014874
+014875
+M014875
+014876
+M014876
+014877
+M014877
+014878
+M014878
+014879
+M014879
+014880
+M014880
+014881
+M014881
+014882
+M014882
+014883
+M014883
+014884
+M014884
+014885
+M014885
+014886
+M014886
+014887
+M014887
+014888
+M014888
+014889
+M014889
+014890
+M014890
+014891
+M014891
+014892
+M014892
+014893
+M014893
+014894
+M014894
+014895
+M014895
+014896
+M014896
+014904
+M014904
+014905
+M014905
+014906
+M014906
+014907
+M014907
+014908
+M014908
+014909
+M014909
+014910
+M014910
+014911
+M014911
+014912
+M014912
+014913
+M014913
+014914
+M014914
+014915
+M014915
+014916
+M014916
+014927
+M014927
+014928
+M014928
+014929
+M014929
+014930
+M014930
+014931
+M014931
+014932
+M014932
+014940
+M014940
+014941
+M014941
+014942
+M014942
+014943
+M014943
+014962
+M014962
+014963
+M014963
+014964
+M014964
+014965
+M014965
+014966
+M014966
+014967
+M014967
+014968
+M014968
+014969
+M014969
+014970
+M014970
+014971
+M014971
+014972
+M014972
+014973
+M014973
+014974
+M014974
+014975
+M014975
+014976
+M014976
+014977
+M014977
+014978
+M014978
+014979
+M014979
+014980
+M014980
+014981
+M014981
+014982
+M014982
+014983
+M014983
+014984
+M014984
+014985
+M014985
+014986
+M014986
+014987
+M014987
+014988
+M014988
+014989
+M014989
+014990
+M014990
+014991
+M014991
+014992
+M014992
+014993
+M014993
+014994
+M014994
+014995
+M014995
+014996
+M014996
+014997
+M014997
+014998
+M014998
+014999
+M014999
+015000
+M015000
+015001
+M015001
+015003
+M015003
+015004
+M015004
+015005
+M015005
+015006
+M015006
+015007
+M015007
+015009
+M015009
+015010
+M015010
+015011
+M015011
+015012
+M015012
+015013
+M015013
+015014
+M015014
+015015
+M015015
+015016
+M015016
+015017
+M015017
+015018
+M015018
+015019
+M015019
+015021
+M015021
+015022
+M015022
+015023
+M015023
+015025
+M015025
+015026
+M015026
+015027
+M015027
+015028
+M015028
+015029
+M015029
+015031
+M015031
+015033
+M015033
+015035
+M015035
+015036
+M015036
+015037
+M015037
+015038
+M015038
+015039
+M015039
+015040
+M015040
+015041
+M015041
+015042
+M015042
+015043
+M015043
+015044
+M015044
+015045
+M015045
+015046
+M015046
+015047
+M015047
+015048
+M015048
+015049
+M015049
+015050
+M015050
+015051
+M015051
+015052
+M015052
+015053
+M015053
+015054
+M015054
+015055
+M015055
+015056
+M015056
+015057
+M015057
+015058
+M015058
+015059
+M015059
+015060
+M015060
+015061
+M015061
+015062
+M015062
+015063
+M015063
+015064
+M015064
+015065
+M015065
+015066
+M015066
+015067
+M015067
+015068
+M015068
+015069
+M015069
+015070
+M015070
+015071
+M015071
+015072
+M015072
+015073
+M015073
+015074
+M015074
+015075
+M015075
+015076
+M015076
+015077
+M015077
+015078
+M015078
+015079
+M015079
+015080
+M015080
+015081
+M015081
+015082
+M015082
+015083
+M015083
+015084
+M015084
+015085
+M015085
+015086
+M015086
+015087
+M015087
+015088
+M015088
+015089
+M015089
+015090
+M015090
+015091
+M015091
+015092
+M015092
+015093
+M015093
+015094
+M015094
+015095
+M015095
+015096
+M015096
+015097
+M015097
+015098
+M015098
+015099
+M015099
+015100
+M015100
+015101
+M015101
+015102
+M015102
+015103
+M015103
+015104
+M015104
+015105
+M015105
+015106
+M015106
+015107
+M015107
+015108
+M015108
+015109
+M015109
+015110
+M015110
+015111
+M015111
+015112
+M015112
+015137
+M015137
+015138
+M015138
+015139
+M015139
+015140
+M015140
+015141
+M015141
+015148
+M015148
+015149
+M015149
+015150
+M015150
+015151
+M015151
+015152
+M015152
+015153
+M015153
+015154
+M015154
+015155
+M015155
+015174
+M015174
+015175
+M015175
+015176
+M015176
+015177
+M015177
+015178
+M015178
+015179
+M015179
+015180
+M015180
+015181
+M015181
+015182
+M015182
+015183
+M015183
+015184
+M015184
+015185
+M015185
+015186
+M015186
+015187
+M015187
+015188
+M015188
+015189
+M015189
+015190
+M015190
+015191
+M015191
+015192
+M015192
+015193
+M015193
+015194
+M015194
+015195
+M015195
+015196
+M015196
+015197
+M015197
+015198
+M015198
+015199
+M015199
+015200
+M015200
+015201
+M015201
+015202
+M015202
+015203
+M015203
+015204
+M015204
+015205
+M015205
+015206
+M015206
+015207
+M015207
+015208
+M015208
+015209
+M015209
+015210
+M015210
+015211
+M015211
+015212
+M015212
+015213
+M015213
+015214
+M015214
+015215
+M015215
+015216
+M015216
+015247
+M015247
+015248
+M015248
+015249
+M015249
+015250
+M015250
+015251
+M015251
+015252
+M015252
+015253
+M015253
+015254
+M015254
+015255
+M015255
+015256
+M015256
+015257
+M015257
+015258
+M015258
+015259
+M015259
+015260
+M015260
+015261
+M015261
+015262
+M015262
+015263
+M015263
+015264
+M015264
+015265
+M015265
+015266
+M015266
+015267
+M015267
+015268
+M015268
+015269
+M015269
+015270
+M015270
+015278
+M015278
+015279
+M015279
+015280
+M015280
+015281
+M015281
+015282
+M015282
+015283
+M015283
+015284
+M015284
+015285
+M015285
+015286
+M015286
+015287
+M015287
+015288
+M015288
+015289
+M015289
+015290
+M015290
+015291
+M015291
+015292
+M015292
+015293
+M015293
+015294
+M015294
+015295
+M015295
+015296
+M015296
+015297
+M015297
+015298
+M015298
+015299
+M015299
+015300
+M015300
+015330
+M015330
+015331
+M015331
+015332
+M015332
+015333
+M015333
+015334
+M015334
+015340
+M015340
+015341
+M015341
+015342
+M015342
+015343
+M015343
+015344
+M015344
+015345
+M015345
+015346
+M015346
+015347
+M015347
+015348
+M015348
+015349
+M015349
+015350
+M015350
+015351
+M015351
+015352
+M015352
+015353
+M015353
+015354
+M015354
+015355
+M015355
+015356
+M015356
+015357
+M015357
+015358
+M015358
+015359
+M015359
+015360
+M015360
+015361
+M015361
+015362
+M015362
+015363
+M015363
+015364
+M015364
+015365
+M015365
+015366
+M015366
+015367
+M015367
+015368
+M015368
+015369
+M015369
+015370
+M015370
+015371
+M015371
+015372
+M015372
+015378
+M015378
+015379
+M015379
+015380
+M015380
+015381
+M015381
+015382
+M015382
+015383
+M015383
+015384
+M015384
+015385
+M015385
+015386
+M015386
+015387
+M015387
+015388
+M015388
+015389
+M015389
+015390
+M015390
+015391
+M015391
+015392
+M015392
+015393
+M015393
+015394
+M015394
+015395
+M015395
+015396
+M015396
+015397
+M015397
+015398
+M015398
+015399
+M015399
+015400
+M015400
+015401
+M015401
+015402
+M015402
+015403
+M015403
+015404
+M015404
+015405
+M015405
+015406
+M015406
+015407
+M015407
+015408
+M015408
+015409
+M015409
+015410
+M015410
+015411
+M015411
+015412
+M015412
+015413
+M015413
+015414
+M015414
+015415
+M015415
+015416
+M015416
+015417
+M015417
+015418
+M015418
+015419
+M015419
+015420
+M015420
+015421
+M015421
+015422
+M015422
+015423
+M015423
+015424
+M015424
+015425
+M015425
+015426
+M015426
+015436
+M015436
+015437
+M015437
+015438
+M015438
+015439
+M015439
+015440
+M015440
+015441
+M015441
+015442
+M015442
+015443
+M015443
+015444
+M015444
+015445
+M015445
+015446
+M015446
+015447
+M015447
+015448
+M015448
+015449
+M015449
+015450
+M015450
+015451
+M015451
+015452
+M015452
+015453
+M015453
+015454
+M015454
+015455
+M015455
+015456
+M015456
+015457
+M015457
+015458
+M015458
+015459
+M015459
+015460
+M015460
+015461
+M015461
+015462
+M015462
+015463
+M015463
+015464
+M015464
+015465
+M015465
+015466
+M015466
+015467
+M015467
+015468
+M015468
+015469
+M015469
+015470
+M015470
+015471
+M015471
+015472
+M015472
+015473
+M015473
+015474
+M015474
+015475
+M015475
+015476
+M015476
+015477
+M015477
+015478
+M015478
+015479
+M015479
+015480
+M015480
+015481
+M015481
+015482
+M015482
+015483
+M015483
+015484
+M015484
+015485
+M015485
+015486
+M015486
+015487
+M015487
+015488
+M015488
+015489
+M015489
+015490
+M015490
+015491
+M015491
+015492
+M015492
+015493
+M015493
+015494
+M015494
+015495
+M015495
+015496
+M015496
+015497
+M015497
+015498
+M015498
+015499
+M015499
+015500
+M015500
+015501
+M015501
+015502
+M015502
+015503
+M015503
+015504
+M015504
+015505
+M015505
+015506
+M015506
+015507
+M015507
+015508
+M015508
+015520
+M015520
+015521
+M015521
+015522
+M015522
+015523
+M015523
+015524
+M015524
+015525
+M015525
+015526
+M015526
+015527
+M015527
+015528
+M015528
+015529
+M015529
+015530
+M015530
+015531
+M015531
+015532
+M015532
+015533
+M015533
+015534
+M015534
+015535
+M015535
+015536
+M015536
+015537
+M015537
+015538
+M015538
+015539
+M015539
+015540
+M015540
+015541
+M015541
+015542
+M015542
+015543
+M015543
+015544
+M015544
+015545
+M015545
+015546
+M015546
+015547
+M015547
+015548
+M015548
+015549
+M015549
+015550
+M015550
+015551
+M015551
+015552
+M015552
+015553
+M015553
+015554
+M015554
+015555
+M015555
+015556
+M015556
+015557
+M015557
+015558
+M015558
+015559
+M015559
+015560
+M015560
+015561
+M015561
+015562
+M015562
+015563
+M015563
+015572
+M015572
+015573
+M015573
+015574
+M015574
+015575
+M015575
+015576
+M015576
+015577
+M015577
+015578
+M015578
+015579
+M015579
+015580
+M015580
+015581
+M015581
+015582
+M015582
+015583
+M015583
+015584
+M015584
+015585
+M015585
+015586
+M015586
+015587
+M015587
+015588
+M015588
+015589
+M015589
+015590
+M015590
+015591
+M015591
+015592
+M015592
+015593
+M015593
+015594
+M015594
+015595
+M015595
+015596
+M015596
+015597
+M015597
+015598
+M015598
+015599
+M015599
+015600
+M015600
+015601
+M015601
+015602
+M015602
+015603
+M015603
+015604
+M015604
+015605
+M015605
+015606
+M015606
+015607
+M015607
+015608
+M015608
+015609
+M015609
+015610
+M015610
+015611
+M015611
+015612
+M015612
+015613
+M015613
+015614
+M015614
+015615
+M015615
+015635
+M015635
+015636
+M015636
+015637
+M015637
+015638
+M015638
+015639
+M015639
+015640
+M015640
+015641
+M015641
+015642
+M015642
+015643
+M015643
+015727
+M015727
+015728
+M015728
+015729
+M015729
+015730
+M015730
+015731
+M015731
+015732
+M015732
+015746
+M015746
+015747
+M015747
+015748
+M015748
+015749
+M015749
+015750
+M015750
+015751
+M015751
+015752
+M015752
+015753
+M015753
+015754
+M015754
+015755
+M015755
+015756
+M015756
+015757
+M015757
+015758
+M015758
+015759
+M015759
+015760
+M015760
+015761
+M015761
+015762
+M015762
+015763
+M015763
+015764
+M015764
+015765
+M015765
+015766
+M015766
+015767
+M015767
+015768
+M015768
+015769
+M015769
+015770
+M015770
+015771
+M015771
+015772
+M015772
+015773
+M015773
+015774
+M015774
+015775
+M015775
+015776
+M015776
+015777
+M015777
+015778
+M015778
+015783
+M015783
+015784
+M015784
+015785
+M015785
+015786
+M015786
+015787
+M015787
+015788
+M015788
+015789
+M015789
+015790
+M015790
+015791
+M015791
+015792
+M015792
+015793
+M015793
+015794
+M015794
+015795
+M015795
+015796
+M015796
+015797
+M015797
+015798
+M015798
+015799
+M015799
+015800
+M015800
+015812
+M015812
+015813
+M015813
+015814
+M015814
+015815
+M015815
+015816
+M015816
+015817
+M015817
+015818
+M015818
+015819
+M015819
+015820
+M015820
+015821
+M015821
+015822
+M015822
+015823
+M015823
+015824
+M015824
+015825
+M015825
+015826
+M015826
+015827
+M015827
+015828
+M015828
+015829
+M015829
+015830
+M015830
+015831
+M015831
+015832
+M015832
+015833
+M015833
+015834
+M015834
+015835
+M015835
+015836
+M015836
+015837
+M015837
+015838
+M015838
+015839
+M015839
+015840
+M015840
+015841
+M015841
+015842
+M015842
+015843
+M015843
+015844
+M015844
+015845
+M015845
+015846
+M015846
+015847
+M015847
+015848
+M015848
+015849
+M015849
+015850
+M015850
+015851
+M015851
+015852
+M015852
+015853
+M015853
+015854
+M015854
+015855
+M015855
+015856
+M015856
+015857
+M015857
+015858
+M015858
+015859
+M015859
+015860
+M015860
+015861
+M015861
+015862
+M015862
+015863
+M015863
+015864
+M015864
+015865
+M015865
+015866
+M015866
+015867
+M015867
+015868
+M015868
+015869
+M015869
+015870
+M015870
+015871
+M015871
+015872
+M015872
+015873
+M015873
+015874
+M015874
+015875
+M015875
+015876
+M015876
+015877
+M015877
+015878
+M015878
+015879
+M015879
+015880
+M015880
+015881
+M015881
+015882
+M015882
+015883
+M015883
+015884
+M015884
+015885
+M015885
+015886
+M015886
+015887
+M015887
+015888
+M015888
+015889
+M015889
+015890
+M015890
+015891
+M015891
+015892
+M015892
+015893
+M015893
+015894
+M015894
+015895
+M015895
+015896
+M015896
+015897
+M015897
+015898
+M015898
+015899
+M015899
+015900
+M015900
+015901
+M015901
+015902
+M015902
+015903
+M015903
+015904
+M015904
+015905
+M015905
+015906
+M015906
+015907
+M015907
+015908
+M015908
+015909
+M015909
+015910
+M015910
+015911
+M015911
+015912
+M015912
+015913
+M015913
+015914
+M015914
+015915
+M015915
+015916
+M015916
+015917
+M015917
+015918
+M015918
+015919
+M015919
+015920
+M015920
+015921
+M015921
+015922
+M015922
+015923
+M015923
+015924
+M015924
+015925
+M015925
+015926
+M015926
+015927
+M015927
+015928
+M015928
+015929
+M015929
+015930
+M015930
+015931
+M015931
+015939
+M015939
+015940
+M015940
+015941
+M015941
+015942
+M015942
+015943
+M015943
+015944
+M015944
+015955
+M015955
+015956
+M015956
+015957
+M015957
+015958
+M015958
+015959
+M015959
+015960
+M015960
+015961
+M015961
+015962
+M015962
+015963
+M015963
+015964
+M015964
+015965
+M015965
+015966
+M015966
+015967
+M015967
+015968
+M015968
+015969
+M015969
+015970
+M015970
+015971
+M015971
+015972
+M015972
+015973
+M015973
+015974
+M015974
+015975
+M015975
+015976
+M015976
+015977
+M015977
+015978
+M015978
+015979
+M015979
+016023
+M016023
+016024
+M016024
+016025
+M016025
+016026
+M016026
+016027
+M016027
+016028
+M016028
+016029
+M016029
+016030
+M016030
+016031
+M016031
+016032
+M016032
+016033
+M016033
+016034
+M016034
+016035
+M016035
+016036
+M016036
+016037
+M016037
+016038
+M016038
+016039
+M016039
+016040
+M016040
+016041
+M016041
+016042
+M016042
+016043
+M016043
+016044
+M016044
+016045
+M016045
+016046
+M016046
+016047
+M016047
+016048
+M016048
+016049
+M016049
+016050
+M016050
+016051
+M016051
+016052
+M016052
+016053
+M016053
+016054
+M016054
+016055
+M016055
+016056
+M016056
+016057
+M016057
+016058
+M016058
+016059
+M016059
+016060
+M016060
+016061
+M016061
+016062
+M016062
+016063
+M016063
+016064
+M016064
+016065
+M016065
+016066
+M016066
+016067
+M016067
+016068
+M016068
+016069
+M016069
+016070
+M016070
+016071
+M016071
+016072
+M016072
+016073
+M016073
+016074
+M016074
+016075
+M016075
+016076
+M016076
+016077
+M016077
+016078
+M016078
+016079
+M016079
+016080
+M016080
+016081
+M016081
+016082
+M016082
+016083
+M016083
+016084
+M016084
+016085
+M016085
+016086
+M016086
+016087
+M016087
+016088
+M016088
+016089
+M016089
+016090
+M016090
+016091
+M016091
+016092
+M016092
+016093
+M016093
+016094
+M016094
+016095
+M016095
+016096
+M016096
+016100
+M016100
+016101
+M016101
+016102
+M016102
+016103
+M016103
+016104
+M016104
+016105
+M016105
+016106
+M016106
+016107
+M016107
+016108
+M016108
+016109
+M016109
+016110
+M016110
+016151
+M016151
+016152
+M016152
+016153
+M016153
+016154
+M016154
+016155
+M016155
+016156
+M016156
+016157
+M016157
+016158
+M016158
+016159
+M016159
+016160
+M016160
+016161
+M016161
+016162
+M016162
+016163
+M016163
+016164
+M016164
+016165
+M016165
+016166
+M016166
+016167
+M016167
+016168
+M016168
+016169
+M016169
+016170
+M016170
+016171
+M016171
+016172
+M016172
+016173
+M016173
+016174
+M016174
+016175
+M016175
+016176
+M016176
+016177
+M016177
+016178
+M016178
+016179
+M016179
+016180
+M016180
+016181
+M016181
+016182
+M016182
+016183
+M016183
+016184
+M016184
+016185
+M016185
+016186
+M016186
+016187
+M016187
+016188
+M016188
+016189
+M016189
+016190
+M016190
+016191
+M016191
+016192
+M016192
+016193
+M016193
+016194
+M016194
+016195
+M016195
+016196
+M016196
+016197
+M016197
+016198
+M016198
+016199
+M016199
+016200
+M016200
+016201
+M016201
+016202
+M016202
+016203
+M016203
+016204
+M016204
+016205
+M016205
+016206
+M016206
+016207
+M016207
+016208
+M016208
+016209
+M016209
+016210
+M016210
+016211
+M016211
+016212
+M016212
+016213
+M016213
+016214
+M016214
+016215
+M016215
+016216
+M016216
+016217
+M016217
+016218
+M016218
+016219
+M016219
+016226
+M016226
+016227
+M016227
+016228
+M016228
+016229
+M016229
+016230
+M016230
+016231
+M016231
+016232
+M016232
+016238
+M016238
+016239
+M016239
+016240
+M016240
+016241
+M016241
+016242
+M016242
+016243
+M016243
+016244
+M016244
+016245
+M016245
+016246
+M016246
+016247
+M016247
+016248
+M016248
+016249
+M016249
+016250
+M016250
+016251
+M016251
+016252
+M016252
+016253
+M016253
+016254
+M016254
+016255
+M016255
+016256
+M016256
+016257
+M016257
+016258
+M016258
+016259
+M016259
+016260
+M016260
+016261
+M016261
+016262
+M016262
+016263
+M016263
+016264
+M016264
+016265
+M016265
+016266
+M016266
+016274
+M016274
+016275
+M016275
+016276
+M016276
+016277
+M016277
+016278
+M016278
+016279
+M016279
+016280
+M016280
+016291
+M016291
+016292
+M016292
+016293
+M016293
+016294
+M016294
+016295
+M016295
+016296
+M016296
+016297
+M016297
+016298
+M016298
+016299
+M016299
+016300
+M016300
+016301
+M016301
+016302
+M016302
+016303
+M016303
+016304
+M016304
+016305
+M016305
+016306
+M016306
+016307
+M016307
+016308
+M016308
+016309
+M016309
+016310
+M016310
+016311
+M016311
+016312
+M016312
+016313
+M016313
+016314
+M016314
+016315
+M016315
+016316
+M016316
+016317
+M016317
+016318
+M016318
+016319
+M016319
+016320
+M016320
+016321
+M016321
+016322
+M016322
+016323
+M016323
+016324
+M016324
+016325
+M016325
+016326
+M016326
+016327
+M016327
+016328
+M016328
+016329
+M016329
+016330
+M016330
+016331
+M016331
+016332
+M016332
+016333
+M016333
+016334
+M016334
+016335
+M016335
+016336
+M016336
+016337
+M016337
+016338
+M016338
+016339
+M016339
+016340
+M016340
+016341
+M016341
+016342
+M016342
+016343
+M016343
+016350
+M016350
+016351
+M016351
+016352
+M016352
+016353
+M016353
+016354
+M016354
+016355
+M016355
+016356
+M016356
+016357
+M016357
+016358
+M016358
+016359
+M016359
+016360
+M016360
+016361
+M016361
+016362
+M016362
+016363
+M016363
+016364
+M016364
+016365
+M016365
+016366
+M016366
+016367
+M016367
+016368
+M016368
+016369
+M016369
+016370
+M016370
+016371
+M016371
+016372
+M016372
+016373
+M016373
+016374
+M016374
+016375
+M016375
+016376
+M016376
+016377
+M016377
+016378
+M016378
+016379
+M016379
+016380
+M016380
+016381
+M016381
+016382
+M016382
+016383
+M016383
+016384
+M016384
+016385
+M016385
+016386
+M016386
+016392
+M016392
+016393
+M016393
+016394
+M016394
+016395
+M016395
+016396
+M016396
+016397
+M016397
+016398
+M016398
+016399
+M016399
+016400
+M016400
+016401
+M016401
+016402
+M016402
+016403
+M016403
+016411
+M016411
+016412
+M016412
+016413
+M016413
+016414
+M016414
+016415
+M016415
+016416
+M016416
+016417
+M016417
+016418
+M016418
+016419
+M016419
+016420
+M016420
+016421
+M016421
+016422
+M016422
+016423
+M016423
+016424
+M016424
+016425
+M016425
+016426
+M016426
+016427
+M016427
+016428
+M016428
+016429
+M016429
+016430
+M016430
+016431
+M016431
+016432
+M016432
+016433
+M016433
+016434
+M016434
+016435
+M016435
+016436
+M016436
+016437
+M016437
+016438
+M016438
+016439
+M016439
+016440
+M016440
+016441
+M016441
+016442
+M016442
+016443
+M016443
+016460
+M016460
+016461
+M016461
+016462
+M016462
+016463
+M016463
+016464
+M016464
+016470
+M016470
+016471
+M016471
+016472
+M016472
+016473
+M016473
+016474
+M016474
+016532
+M016532
+016533
+M016533
+016534
+M016534
+016535
+M016535
+016536
+M016536
+016537
+M016537
+016540
+M016540
+016541
+M016541
+016542
+M016542
+016543
+M016543
+016544
+M016544
+016545
+M016545
+016546
+M016546
+016547
+M016547
+016548
+M016548
+016549
+M016549
+016550
+M016550
+016551
+M016551
+016552
+M016552
+016553
+M016553
+016554
+M016554
+016555
+M016555
+016556
+M016556
+016557
+M016557
+016558
+M016558
+016559
+M016559
+016560
+M016560
+016561
+M016561
+016562
+M016562
+016563
+M016563
+016564
+M016564
+016565
+M016565
+016566
+M016566
+016567
+M016567
+016568
+M016568
+016569
+M016569
+016570
+M016570
+016571
+M016571
+016572
+M016572
+016573
+M016573
+016574
+M016574
+016575
+M016575
+016576
+M016576
+016577
+M016577
+016578
+M016578
+016579
+M016579
+016580
+M016580
+016581
+M016581
+016582
+M016582
+016583
+M016583
+016584
+M016584
+016585
+M016585
+016586
+M016586
+016587
+M016587
+016588
+M016588
+016598
+M016598
+016599
+M016599
+016600
+M016600
+016601
+M016601
+016602
+M016602
+016603
+M016603
+016604
+M016604
+016605
+M016605
+016606
+M016606
+016607
+M016607
+016608
+M016608
+016609
+M016609
+016610
+M016610
+016611
+M016611
+016612
+M016612
+016613
+M016613
+016614
+M016614
+016615
+M016615
+016616
+M016616
+016617
+M016617
+016618
+M016618
+016619
+M016619
+016620
+M016620
+016621
+M016621
+016622
+M016622
+016623
+M016623
+016624
+M016624
+016625
+M016625
+016626
+M016626
+016627
+M016627
+016628
+M016628
+016629
+M016629
+016630
+M016630
+016631
+M016631
+016632
+M016632
+016633
+M016633
+016634
+M016634
+016635
+M016635
+016636
+M016636
+016637
+M016637
+016638
+M016638
+016639
+M016639
+016640
+M016640
+016641
+M016641
+016642
+M016642
+016653
+M016653
+016654
+M016654
+016655
+M016655
+016656
+M016656
+016657
+M016657
+016658
+M016658
+016659
+M016659
+016660
+M016660
+016661
+M016661
+016662
+M016662
+016663
+M016663
+016664
+M016664
+016665
+M016665
+016666
+M016666
+016667
+M016667
+016668
+M016668
+016669
+M016669
+016670
+M016670
+016671
+M016671
+016672
+M016672
+016673
+M016673
+016674
+M016674
+016675
+M016675
+016676
+M016676
+016677
+M016677
+016678
+M016678
+016679
+M016679
+016680
+M016680
+016681
+M016681
+016682
+M016682
+016683
+M016683
+016684
+M016684
+016685
+M016685
+016686
+M016686
+016702
+M016702
+016703
+M016703
+016704
+M016704
+016710
+M016710
+016711
+M016711
+016712
+M016712
+016713
+M016713
+016714
+M016714
+016715
+M016715
+016716
+M016716
+016717
+M016717
+016718
+M016718
+016719
+M016719
+016720
+M016720
+016721
+M016721
+016722
+M016722
+016723
+M016723
+016737
+M016737
+016738
+M016738
+016739
+M016739
+016740
+M016740
+016741
+M016741
+016742
+M016742
+016743
+M016743
+016744
+M016744
+016745
+M016745
+016746
+M016746
+016747
+M016747
+016748
+M016748
+016749
+M016749
+016750
+M016750
+016751
+M016751
+016752
+M016752
+016753
+M016753
+016754
+M016754
+016755
+M016755
+016756
+M016756
+016757
+M016757
+016758
+M016758
+016759
+M016759
+016760
+M016760
+016761
+M016761
+016762
+M016762
+016763
+M016763
+016764
+M016764
+016765
+M016765
+016766
+M016766
+016767
+M016767
+016768
+M016768
+016769
+M016769
+016770
+M016770
+016771
+M016771
+016772
+M016772
+016773
+M016773
+016774
+M016774
+016775
+M016775
+016776
+M016776
+016777
+M016777
+016778
+M016778
+016779
+M016779
+016780
+M016780
+016781
+M016781
+016782
+M016782
+016783
+M016783
+016784
+M016784
+016785
+M016785
+016789
+M016789
+016790
+M016790
+016791
+M016791
+016792
+M016792
+016793
+M016793
+016794
+M016794
+016795
+M016795
+016796
+M016796
+016797
+M016797
+016798
+M016798
+016799
+M016799
+016800
+M016800
+016801
+M016801
+016802
+M016802
+016803
+M016803
+016804
+M016804
+016813
+M016813
+016814
+M016814
+016815
+M016815
+016816
+M016816
+016817
+M016817
+016818
+M016818
+016819
+M016819
+016820
+M016820
+016821
+M016821
+016822
+M016822
+016823
+M016823
+016824
+M016824
+016825
+M016825
+016826
+M016826
+016827
+M016827
+016828
+M016828
+016829
+M016829
+016830
+M016830
+016831
+M016831
+016832
+M016832
+016833
+M016833
+016834
+M016834
+016835
+M016835
+016836
+M016836
+016837
+M016837
+016838
+M016838
+016839
+M016839
+016840
+M016840
+016841
+M016841
+016849
+M016849
+016850
+M016850
+016851
+M016851
+016852
+M016852
+016853
+M016853
+016854
+M016854
+016855
+M016855
+016856
+M016856
+016857
+M016857
+016868
+M016868
+016869
+M016869
+016870
+M016870
+016871
+M016871
+016872
+M016872
+016873
+M016873
+016874
+M016874
+016875
+M016875
+016876
+M016876
+016877
+M016877
+016878
+M016878
+016879
+M016879
+016880
+M016880
+016881
+M016881
+016882
+M016882
+016883
+M016883
+016884
+M016884
+016885
+M016885
+016886
+M016886
+016887
+M016887
+016888
+M016888
+016889
+M016889
+016890
+M016890
+016891
+M016891
+016892
+M016892
+016893
+M016893
+016894
+M016894
+016895
+M016895
+016896
+M016896
+016897
+M016897
+016898
+M016898
+016899
+M016899
+016900
+M016900
+016901
+M016901
+016902
+M016902
+016903
+M016903
+016904
+M016904
+016905
+M016905
+016906
+M016906
+016907
+M016907
+016908
+M016908
+016909
+M016909
+016910
+M016910
+016911
+M016911
+016912
+M016912
+016913
+M016913
+016914
+M016914
+016915
+M016915
+016916
+M016916
+016917
+M016917
+016918
+M016918
+016919
+M016919
+016920
+M016920
+016921
+M016921
+016922
+M016922
+016923
+M016923
+016924
+M016924
+016925
+M016925
+016926
+M016926
+016927
+M016927
+016928
+M016928
+016929
+M016929
+016930
+M016930
+016931
+M016931
+016932
+M016932
+016933
+M016933
+016934
+M016934
+016935
+M016935
+016936
+M016936
+016937
+M016937
+016938
+M016938
+016939
+M016939
+016940
+M016940
+016941
+M016941
+016944
+M016944
+016945
+M016945
+016946
+M016946
+016947
+M016947
+016948
+M016948
+016949
+M016949
+016950
+M016950
+016951
+M016951
+016952
+M016952
+016953
+M016953
+016954
+M016954
+016955
+M016955
+016956
+M016956
+016957
+M016957
+016958
+M016958
+016959
+M016959
+016960
+M016960
+016970
+M016970
+016971
+M016971
+016972
+M016972
+016979
+M016979
+016980
+M016980
+016981
+M016981
+016982
+M016982
+016983
+M016983
+016984
+M016984
+016985
+M016985
+016986
+M016986
+016987
+M016987
+016988
+M016988
+016989
+M016989
+016990
+M016990
+016991
+M016991
+016992
+M016992
+016993
+M016993
+016994
+M016994
+016995
+M016995
+016996
+M016996
+016997
+M016997
+016998
+M016998
+016999
+M016999
+017000
+M017000
+017001
+M017001
+017002
+M017002
+017003
+M017003
+017004
+M017004
+017005
+M017005
+017006
+M017006
+017007
+M017007
+017008
+M017008
+017009
+M017009
+017010
+M017010
+017011
+M017011
+017012
+M017012
+017013
+M017013
+017014
+M017014
+017015
+M017015
+017016
+M017016
+017017
+M017017
+017018
+M017018
+017019
+M017019
+017020
+M017020
+017021
+M017021
+017022
+M017022
+017024
+M017024
+017025
+M017025
+017026
+M017026
+017027
+M017027
+017028
+M017028
+017029
+M017029
+017030
+M017030
+017031
+M017031
+017032
+M017032
+017036
+M017036
+017037
+M017037
+017038
+M017038
+017039
+M017039
+017040
+M017040
+017041
+M017041
+017042
+M017042
+017043
+M017043
+017044
+M017044
+017045
+M017045
+017046
+M017046
+017047
+M017047
+017048
+M017048
+017049
+M017049
+017050
+M017050
+017051
+M017051
+017052
+M017052
+017053
+M017053
+017054
+M017054
+017055
+M017055
+017056
+M017056
+017057
+M017057
+017058
+M017058
+017059
+M017059
+017060
+M017060
+017061
+M017061
+017062
+M017062
+017063
+M017063
+017064
+M017064
+017065
+M017065
+017066
+M017066
+017067
+M017067
+017068
+M017068
+017069
+M017069
+017070
+M017070
+017071
+M017071
+017072
+M017072
+017073
+M017073
+017092
+M017092
+017093
+M017093
+017094
+M017094
+017095
+M017095
+017096
+M017096
+017097
+M017097
+017098
+M017098
+017099
+M017099
+017100
+M017100
+017101
+M017101
+017102
+M017102
+017103
+M017103
+017104
+M017104
+017105
+M017105
+017106
+M017106
+017107
+M017107
+017108
+M017108
+017109
+M017109
+017110
+M017110
+017111
+M017111
+017112
+M017112
+017113
+M017113
+017114
+M017114
+017115
+M017115
+017116
+M017116
+017117
+M017117
+017118
+M017118
+017119
+M017119
+017120
+M017120
+017121
+M017121
+017122
+M017122
+017123
+M017123
+017124
+M017124
+017125
+M017125
+017126
+M017126
+017127
+M017127
+017128
+M017128
+017129
+M017129
+017130
+M017130
+017131
+M017131
+017132
+M017132
+017140
+M017140
+017141
+M017141
+017142
+M017142
+017150
+M017150
+017151
+M017151
+017152
+M017152
+017153
+M017153
+017154
+M017154
+017155
+M017155
+017156
+M017156
+017157
+M017157
+017158
+M017158
+017159
+M017159
+017160
+M017160
+017161
+M017161
+017162
+M017162
+017163
+M017163
+017164
+M017164
+017165
+M017165
+017166
+M017166
+017167
+M017167
+017168
+M017168
+017169
+M017169
+017170
+M017170
+017171
+M017171
+017172
+M017172
+017173
+M017173
+017174
+M017174
+017175
+M017175
+017176
+M017176
+017177
+M017177
+017178
+M017178
+017179
+M017179
+017180
+M017180
+017181
+M017181
+017182
+M017182
+017183
+M017183
+017184
+M017184
+017185
+M017185
+017186
+M017186
+017187
+M017187
+017188
+M017188
+017189
+M017189
+017190
+M017190
+017191
+M017191
+017192
+M017192
+017193
+M017193
+017194
+M017194
+017195
+M017195
+017196
+M017196
+017197
+M017197
+017198
+M017198
+017199
+M017199
+017200
+M017200
+017201
+M017201
+017202
+M017202
+017203
+M017203
+017204
+M017204
+017205
+M017205
+017206
+M017206
+017207
+M017207
+017208
+M017208
+017209
+M017209
+017210
+M017210
+017211
+M017211
+017215
+M017215
+017216
+M017216
+017217
+M017217
+017218
+M017218
+017219
+M017219
+017220
+M017220
+017221
+M017221
+017222
+M017222
+017223
+M017223
+017224
+M017224
+017225
+M017225
+017226
+M017226
+017227
+M017227
+017228
+M017228
+017229
+M017229
+017230
+M017230
+017231
+M017231
+017232
+M017232
+017233
+M017233
+017234
+M017234
+017235
+M017235
+017236
+M017236
+017237
+M017237
+017238
+M017238
+017239
+M017239
+017240
+M017240
+017241
+M017241
+017242
+M017242
+017243
+M017243
+017244
+M017244
+017245
+M017245
+017246
+M017246
+017247
+M017247
+017248
+M017248
+017249
+M017249
+017250
+M017250
+017251
+M017251
+017252
+M017252
+017253
+M017253
+017254
+M017254
+017255
+M017255
+017256
+M017256
+017257
+M017257
+017258
+M017258
+017259
+M017259
+017260
+M017260
+017262
+M017262
+017263
+M017263
+017264
+M017264
+017265
+M017265
+017266
+M017266
+017267
+M017267
+017268
+M017268
+017269
+M017269
+017270
+M017270
+017271
+M017271
+017272
+M017272
+017273
+M017273
+017274
+M017274
+017275
+M017275
+017276
+M017276
+017277
+M017277
+017278
+M017278
+017279
+M017279
+017280
+M017280
+017281
+M017281
+017282
+M017282
+017283
+M017283
+017284
+M017284
+017285
+M017285
+017286
+M017286
+017287
+M017287
+017288
+M017288
+017289
+M017289
+017290
+M017290
+017291
+M017291
+017292
+M017292
+017293
+M017293
+017294
+M017294
+017295
+M017295
+017296
+M017296
+017297
+M017297
+017298
+M017298
+017331
+M017331
+017332
+M017332
+017333
+M017333
+017334
+M017334
+017335
+M017335
+017336
+M017336
+017337
+M017337
+017338
+M017338
+017339
+M017339
+017340
+M017340
+017341
+M017341
+017342
+M017342
+017343
+M017343
+017344
+M017344
+017345
+M017345
+017346
+M017346
+017347
+M017347
+017348
+M017348
+017349
+M017349
+017350
+M017350
+017351
+M017351
+017352
+M017352
+017353
+M017353
+017354
+M017354
+017355
+M017355
+017356
+M017356
+017357
+M017357
+017358
+M017358
+017359
+M017359
+017360
+M017360
+017361
+M017361
+017362
+M017362
+017363
+M017363
+017364
+M017364
+017365
+M017365
+017366
+M017366
+017367
+M017367
+017368
+M017368
+017369
+M017369
+017370
+M017370
+017371
+M017371
+017372
+M017372
+017373
+M017373
+017374
+M017374
+017375
+M017375
+017376
+M017376
+017377
+M017377
+017378
+M017378
+017379
+M017379
+017380
+M017380
+017381
+M017381
+017382
+M017382
+017383
+M017383
+017384
+M017384
+017385
+M017385
+017386
+M017386
+017390
+M017390
+017391
+M017391
+017392
+M017392
+017393
+M017393
+017407
+M017407
+017408
+M017408
+017409
+M017409
+017410
+M017410
+017411
+M017411
+017412
+M017412
+017413
+M017413
+017414
+M017414
+017415
+M017415
+017416
+M017416
+017417
+M017417
+017418
+M017418
+017419
+M017419
+017420
+M017420
+017428
+M017428
+017429
+M017429
+017430
+M017430
+017431
+M017431
+017432
+M017432
+017433
+M017433
+017434
+M017434
+017435
+M017435
+017436
+M017436
+017437
+M017437
+017438
+M017438
+017439
+M017439
+017440
+M017440
+017441
+M017441
+017442
+M017442
+017443
+M017443
+017444
+M017444
+017445
+M017445
+017446
+M017446
+017447
+M017447
+017448
+M017448
+017449
+M017449
+017450
+M017450
+017451
+M017451
+017452
+M017452
+017453
+M017453
+017454
+M017454
+017455
+M017455
+017456
+M017456
+017457
+M017457
+017458
+M017458
+017459
+M017459
+017460
+M017460
+017461
+M017461
+017462
+M017462
+017463
+M017463
+017464
+M017464
+017465
+M017465
+017466
+M017466
+017467
+M017467
+017468
+M017468
+017469
+M017469
+017470
+M017470
+017471
+M017471
+017472
+M017472
+017473
+M017473
+017474
+M017474
+017475
+M017475
+017476
+M017476
+017477
+M017477
+017478
+M017478
+017479
+M017479
+017480
+M017480
+017481
+M017481
+017482
+M017482
+017483
+M017483
+017484
+M017484
+017485
+M017485
+017486
+M017486
+017487
+M017487
+017488
+M017488
+017489
+M017489
+017490
+M017490
+017491
+M017491
+017492
+M017492
+017493
+M017493
+017509
+M017509
+017510
+M017510
+017511
+M017511
+017512
+M017512
+017513
+M017513
+017514
+M017514
+017515
+M017515
+017516
+M017516
+017517
+M017517
+017518
+M017518
+017519
+M017519
+017520
+M017520
+017521
+M017521
+017522
+M017522
+017523
+M017523
+017524
+M017524
+017525
+M017525
+017526
+M017526
+017527
+M017527
+017528
+M017528
+017529
+M017529
+017530
+M017530
+017531
+M017531
+017532
+M017532
+017533
+M017533
+017534
+M017534
+017542
+M017542
+017543
+M017543
+017544
+M017544
+017545
+M017545
+017546
+M017546
+017547
+M017547
+017548
+M017548
+017549
+M017549
+017550
+M017550
+017551
+M017551
+017557
+M017557
+017558
+M017558
+017565
+M017565
+017566
+M017566
+017567
+M017567
+017568
+M017568
+017569
+M017569
+017570
+M017570
+017571
+M017571
+017572
+M017572
+017573
+M017573
+017574
+M017574
+017575
+M017575
+017576
+M017576
+017577
+M017577
+017578
+M017578
+017584
+M017584
+017585
+M017585
+017586
+M017586
+017587
+M017587
+017588
+M017588
+017589
+M017589
+017590
+M017590
+017591
+M017591
+017592
+M017592
+017593
+M017593
+017594
+M017594
+017595
+M017595
+017596
+M017596
+017597
+M017597
+017598
+M017598
+017599
+M017599
+017600
+M017600
+017601
+M017601
+017602
+M017602
+017603
+M017603
+017619
+M017619
+017620
+M017620
+017621
+M017621
+017622
+M017622
+017623
+M017623
+017624
+M017624
+017625
+M017625
+017626
+M017626
+017627
+M017627
+017628
+M017628
+017629
+M017629
+017630
+M017630
+017631
+M017631
+017632
+M017632
+017633
+M017633
+017634
+M017634
+017635
+M017635
+017636
+M017636
+017637
+M017637
+017638
+M017638
+017639
+M017639
+017640
+M017640
+017641
+M017641
+017642
+M017642
+017643
+M017643
+017644
+M017644
+017645
+M017645
+017646
+M017646
+017647
+M017647
+017648
+M017648
+017649
+M017649
+017650
+M017650
+017651
+M017651
+017652
+M017652
+017656
+M017656
+017657
+M017657
+017658
+M017658
+017659
+M017659
+017660
+M017660
+017661
+M017661
+017662
+M017662
+017663
+M017663
+017664
+M017664
+017665
+M017665
+017666
+M017666
+017667
+M017667
+017668
+M017668
+017669
+M017669
+017670
+M017670
+017671
+M017671
+017672
+M017672
+017673
+M017673
+017674
+M017674
+017684
+M017684
+017685
+M017685
+017686
+M017686
+017687
+M017687
+017688
+M017688
+017689
+M017689
+017690
+M017690
+017691
+M017691
+017692
+M017692
+017693
+M017693
+017694
+M017694
+017695
+M017695
+017696
+M017696
+017697
+M017697
+017698
+M017698
+017699
+M017699
+017700
+M017700
+017704
+M017704
+017705
+M017705
+017706
+M017706
+017707
+M017707
+017708
+M017708
+017709
+M017709
+017710
+M017710
+017711
+M017711
+017712
+M017712
+017713
+M017713
+017714
+M017714
+017715
+M017715
+017716
+M017716
+017717
+M017717
+017718
+M017718
+017719
+M017719
+017720
+M017720
+017721
+M017721
+017722
+M017722
+017723
+M017723
+017724
+M017724
+017725
+M017725
+017726
+M017726
+017727
+M017727
+017728
+M017728
+017729
+M017729
+017730
+M017730
+017731
+M017731
+017732
+M017732
+017733
+M017733
+017740
+M017740
+017741
+M017741
+017742
+M017742
+017743
+M017743
+017744
+M017744
+017745
+M017745
+017746
+M017746
+017747
+M017747
+017748
+M017748
+017749
+M017749
+017750
+M017750
+017751
+M017751
+017752
+M017752
+017753
+M017753
+017754
+M017754
+017755
+M017755
+017756
+M017756
+017757
+M017757
+017758
+M017758
+017759
+M017759
+017760
+M017760
+017761
+M017761
+017762
+M017762
+017763
+M017763
+017764
+M017764
+017765
+M017765
+017766
+M017766
+017767
+M017767
+017768
+M017768
+017769
+M017769
+017770
+M017770
+017771
+M017771
+017772
+M017772
+017773
+M017773
+017774
+M017774
+017775
+M017775
+017776
+M017776
+017777
+M017777
+017778
+M017778
+017779
+M017779
+017780
+M017780
+017781
+M017781
+017782
+M017782
+017793
+M017793
+017794
+M017794
+017795
+M017795
+017796
+M017796
+017797
+M017797
+017798
+M017798
+017799
+M017799
+017800
+M017800
+017801
+M017801
+017802
+M017802
+017803
+M017803
+017804
+M017804
+017805
+M017805
+017806
+M017806
+017807
+M017807
+017808
+M017808
+017809
+M017809
+017810
+M017810
+017811
+M017811
+017812
+M017812
+017813
+M017813
+017814
+M017814
+017815
+M017815
+017816
+M017816
+017817
+M017817
+017818
+M017818
+017819
+M017819
+017820
+M017820
+017821
+M017821
+017822
+M017822
+017823
+M017823
+017831
+M017831
+017832
+M017832
+017833
+M017833
+017834
+M017834
+017835
+M017835
+017836
+M017836
+017837
+M017837
+017838
+M017838
+017839
+M017839
+017840
+M017840
+017841
+M017841
+017842
+M017842
+017843
+M017843
+017844
+M017844
+017845
+M017845
+017846
+M017846
+017847
+M017847
+017848
+M017848
+017849
+M017849
+017850
+M017850
+017851
+M017851
+017852
+M017852
+017853
+M017853
+017854
+M017854
+017855
+M017855
+017856
+M017856
+017857
+M017857
+017864
+M017864
+017865
+M017865
+017866
+M017866
+017867
+M017867
+017868
+M017868
+017869
+M017869
+017870
+M017870
+017871
+M017871
+017872
+M017872
+017873
+M017873
+017874
+M017874
+017875
+M017875
+017876
+M017876
+017877
+M017877
+017878
+M017878
+017879
+M017879
+017880
+M017880
+017881
+M017881
+017882
+M017882
+017883
+M017883
+017884
+M017884
+017885
+M017885
+017886
+M017886
+017887
+M017887
+017888
+M017888
+017889
+M017889
+017890
+M017890
+017891
+M017891
+017892
+M017892
+017893
+M017893
+017894
+M017894
+017895
+M017895
+017896
+M017896
+017897
+M017897
+017898
+M017898
+017899
+M017899
+017900
+M017900
+017901
+M017901
+017902
+M017902
+017910
+M017910
+017911
+M017911
+017912
+M017912
+017913
+M017913
+017914
+M017914
+017915
+M017915
+017916
+M017916
+017917
+M017917
+017918
+M017918
+017919
+M017919
+017920
+M017920
+017921
+M017921
+017922
+M017922
+017923
+M017923
+017924
+M017924
+017925
+M017925
+017926
+M017926
+017927
+M017927
+017928
+M017928
+017929
+M017929
+017930
+M017930
+017931
+M017931
+017932
+M017932
+017933
+M017933
+017934
+M017934
+017935
+M017935
+017936
+M017936
+017937
+M017937
+017938
+M017938
+017939
+M017939
+017940
+M017940
+017941
+M017941
+017942
+M017942
+017943
+M017943
+017944
+M017944
+017945
+M017945
+017946
+M017946
+017947
+M017947
+017948
+M017948
+017949
+M017949
+017950
+M017950
+017958
+M017958
+017959
+M017959
+017960
+M017960
+017961
+M017961
+017962
+M017962
+017963
+M017963
+017964
+M017964
+017965
+M017965
+017966
+M017966
+017967
+M017967
+017968
+M017968
+017969
+M017969
+017970
+M017970
+017971
+M017971
+017972
+M017972
+017988
+M017988
+017989
+M017989
+017990
+M017990
+017991
+M017991
+017992
+M017992
+017993
+M017993
+017994
+M017994
+017995
+M017995
+017996
+M017996
+017997
+M017997
+018010
+M018010
+018011
+M018011
+018015
+M018015
+018016
+M018016
+018017
+M018017
+018018
+M018018
+018019
+M018019
+018020
+M018020
+018021
+M018021
+018022
+M018022
+018023
+M018023
+018024
+M018024
+018025
+M018025
+018026
+M018026
+018027
+M018027
+018028
+M018028
+018029
+M018029
+018030
+M018030
+018031
+M018031
+018032
+M018032
+018033
+M018033
+018034
+M018034
+018035
+M018035
+018036
+M018036
+018037
+M018037
+018038
+M018038
+018039
+M018039
+018040
+M018040
+018041
+M018041
+018042
+M018042
+018043
+M018043
+018044
+M018044
+018045
+M018045
+018046
+M018046
+018047
+M018047
+018048
+M018048
+018049
+M018049
+018050
+M018050
+018051
+M018051
+018052
+M018052
+018053
+M018053
+018054
+M018054
+018055
+M018055
+018056
+M018056
+018057
+M018057
+018058
+M018058
+018059
+M018059
+018060
+M018060
+018061
+M018061
+018062
+M018062
+018063
+M018063
+018064
+M018064
+018065
+M018065
+018066
+M018066
+018067
+M018067
+018068
+M018068
+018069
+M018069
+018070
+M018070
+018071
+M018071
+018072
+M018072
+018073
+M018073
+018074
+M018074
+018075
+M018075
+018076
+M018076
+018077
+M018077
+018078
+M018078
+018079
+M018079
+018080
+M018080
+018081
+M018081
+018082
+M018082
+018083
+M018083
+018084
+M018084
+018085
+M018085
+018086
+M018086
+018087
+M018087
+018088
+M018088
+018089
+M018089
+018090
+M018090
+018091
+M018091
+018092
+M018092
+018093
+M018093
+018094
+M018094
+018095
+M018095
+018096
+M018096
+018097
+M018097
+018098
+M018098
+018099
+M018099
+018100
+M018100
+018101
+M018101
+018102
+M018102
+018103
+M018103
+018104
+M018104
+018105
+M018105
+018106
+M018106
+018107
+M018107
+018108
+M018108
+018109
+M018109
+018110
+M018110
+018111
+M018111
+018112
+M018112
+018113
+M018113
+018114
+M018114
+018115
+M018115
+018116
+M018116
+018117
+M018117
+018118
+M018118
+018119
+M018119
+018120
+M018120
+018121
+M018121
+018122
+M018122
+018123
+M018123
+018124
+M018124
+018125
+M018125
+018126
+M018126
+018127
+M018127
+018128
+M018128
+018129
+M018129
+018130
+M018130
+018131
+M018131
+018132
+M018132
+018133
+M018133
+018134
+M018134
+018135
+M018135
+018136
+M018136
+018137
+M018137
+018138
+M018138
+018188
+M018188
+018189
+M018189
+018190
+M018190
+018191
+M018191
+018192
+M018192
+018193
+M018193
+018194
+M018194
+018203
+M018203
+018204
+M018204
+018205
+M018205
+018206
+M018206
+018207
+M018207
+018208
+M018208
+018209
+M018209
+018210
+M018210
+018211
+M018211
+018212
+M018212
+018213
+M018213
+018214
+M018214
+018215
+M018215
+018216
+M018216
+018217
+M018217
+018218
+M018218
+018219
+M018219
+018220
+M018220
+018221
+M018221
+018222
+M018222
+018223
+M018223
+018224
+M018224
+018225
+M018225
+018226
+M018226
+018227
+M018227
+018228
+M018228
+018229
+M018229
+018230
+M018230
+018231
+M018231
+018232
+M018232
+018233
+M018233
+018234
+M018234
+018235
+M018235
+018236
+M018236
+018237
+M018237
+018238
+M018238
+018239
+M018239
+018240
+M018240
+018241
+M018241
+018242
+M018242
+018243
+M018243
+018244
+M018244
+018245
+M018245
+018246
+M018246
+018247
+M018247
+018248
+M018248
+018249
+M018249
+018250
+M018250
+018251
+M018251
+018252
+M018252
+018253
+M018253
+018254
+M018254
+018255
+M018255
+018256
+M018256
+018263
+M018263
+018264
+M018264
+018265
+M018265
+018266
+M018266
+018267
+M018267
+018268
+M018268
+018269
+M018269
+018270
+M018270
+018271
+M018271
+018272
+M018272
+018273
+M018273
+018274
+M018274
+018275
+M018275
+018276
+M018276
+018277
+M018277
+018278
+M018278
+018279
+M018279
+018280
+M018280
+018281
+M018281
+018282
+M018282
+018283
+M018283
+018284
+M018284
+018285
+M018285
+018286
+M018286
+018287
+M018287
+018288
+M018288
+018289
+M018289
+018290
+M018290
+018291
+M018291
+018292
+M018292
+018293
+M018293
+018294
+M018294
+018295
+M018295
+018296
+M018296
+018297
+M018297
+018298
+M018298
+018299
+M018299
+018300
+M018300
+018301
+M018301
+018302
+M018302
+018303
+M018303
+018304
+M018304
+018305
+M018305
+018306
+M018306
+018307
+M018307
+018308
+M018308
+018309
+M018309
+018310
+M018310
+018311
+M018311
+018312
+M018312
+018313
+M018313
+018314
+M018314
+018315
+M018315
+018316
+M018316
+018317
+M018317
+018318
+M018318
+018319
+M018319
+018320
+M018320
+018321
+M018321
+018326
+M018326
+018327
+M018327
+018328
+M018328
+018329
+M018329
+018330
+M018330
+018331
+M018331
+018332
+M018332
+018333
+M018333
+018334
+M018334
+018335
+M018335
+018336
+M018336
+018337
+M018337
+018338
+M018338
+018339
+M018339
+018340
+M018340
+018341
+M018341
+018342
+M018342
+018343
+M018343
+018344
+M018344
+018345
+M018345
+018346
+M018346
+018347
+M018347
+018348
+M018348
+018349
+M018349
+018350
+M018350
+018351
+M018351
+018352
+M018352
+018353
+M018353
+018354
+M018354
+018355
+M018355
+018356
+M018356
+018357
+M018357
+018358
+M018358
+018359
+M018359
+018360
+M018360
+018361
+M018361
+018362
+M018362
+018363
+M018363
+018364
+M018364
+018365
+M018365
+018366
+M018366
+018367
+M018367
+018368
+M018368
+018369
+M018369
+018370
+M018370
+018371
+M018371
+018372
+M018372
+018373
+M018373
+018374
+M018374
+018375
+M018375
+018376
+M018376
+018377
+M018377
+018378
+M018378
+018379
+M018379
+018380
+M018380
+018381
+M018381
+018382
+M018382
+018383
+M018383
+018384
+M018384
+018386
+M018386
+018387
+M018387
+018388
+M018388
+018389
+M018389
+018390
+M018390
+018391
+M018391
+018392
+M018392
+018393
+M018393
+018394
+M018394
+018395
+M018395
+018404
+M018404
+018405
+M018405
+018406
+M018406
+018407
+M018407
+018408
+M018408
+018409
+M018409
+018410
+M018410
+018411
+M018411
+018412
+M018412
+018413
+M018413
+018414
+M018414
+018415
+M018415
+018416
+M018416
+018417
+M018417
+018418
+M018418
+018419
+M018419
+018420
+M018420
+018421
+M018421
+018422
+M018422
+018423
+M018423
+018424
+M018424
+018425
+M018425
+018426
+M018426
+018427
+M018427
+018428
+M018428
+018429
+M018429
+018430
+M018430
+018431
+M018431
+018432
+M018432
+018433
+M018433
+018434
+M018434
+018435
+M018435
+018436
+M018436
+018437
+M018437
+018438
+M018438
+018439
+M018439
+018440
+M018440
+018441
+M018441
+018442
+M018442
+018443
+M018443
+018444
+M018444
+018445
+M018445
+018446
+M018446
+018447
+M018447
+018448
+M018448
+018449
+M018449
+018450
+M018450
+018451
+M018451
+018452
+M018452
+018453
+M018453
+018454
+M018454
+018455
+M018455
+018456
+M018456
+018457
+M018457
+018458
+M018458
+018468
+M018468
+018469
+M018469
+018470
+M018470
+018471
+M018471
+018472
+M018472
+018473
+M018473
+018474
+M018474
+018475
+M018475
+018476
+M018476
+018477
+M018477
+018478
+M018478
+018479
+M018479
+018480
+M018480
+018481
+M018481
+018482
+M018482
+018483
+M018483
+018484
+M018484
+018485
+M018485
+018486
+M018486
+018487
+M018487
+018488
+M018488
+018489
+M018489
+018490
+M018490
+018491
+M018491
+018492
+M018492
+018493
+M018493
+018494
+M018494
+018495
+M018495
+018496
+M018496
+018497
+M018497
+018498
+M018498
+018499
+M018499
+018500
+M018500
+018501
+M018501
+018502
+M018502
+018503
+M018503
+018504
+M018504
+018505
+M018505
+018506
+M018506
+018507
+M018507
+018508
+M018508
+018509
+M018509
+018510
+M018510
+018511
+M018511
+018512
+M018512
+018513
+M018513
+018514
+M018514
+018515
+M018515
+018516
+M018516
+018517
+M018517
+018518
+M018518
+018519
+M018519
+018520
+M018520
+018521
+M018521
+018522
+M018522
+018523
+M018523
+018524
+M018524
+018525
+M018525
+018526
+M018526
+018527
+M018527
+018528
+M018528
+018529
+M018529
+018532
+M018532
+018533
+M018533
+018534
+M018534
+018535
+M018535
+018536
+M018536
+018537
+M018537
+018538
+M018538
+018539
+M018539
+018540
+M018540
+018541
+M018541
+018542
+M018542
+018543
+M018543
+018544
+M018544
+018545
+M018545
+018546
+M018546
+018547
+M018547
+018548
+M018548
+018549
+M018549
+018550
+M018550
+018551
+M018551
+018552
+M018552
+018553
+M018553
+018554
+M018554
+018555
+M018555
+018556
+M018556
+018557
+M018557
+018558
+M018558
+018559
+M018559
+018560
+M018560
+018561
+M018561
+018562
+M018562
+018563
+M018563
+018564
+M018564
+018565
+M018565
+018566
+M018566
+018567
+M018567
+018568
+M018568
+018569
+M018569
+018570
+M018570
+018571
+M018571
+018572
+M018572
+018611
+M018611
+018612
+M018612
+018613
+M018613
+018614
+M018614
+018615
+M018615
+018616
+M018616
+018617
+M018617
+018618
+M018618
+018625
+M018625
+018626
+M018626
+018627
+M018627
+018628
+M018628
+018629
+M018629
+018630
+M018630
+018631
+M018631
+018632
+M018632
+018633
+M018633
+018634
+M018634
+018635
+M018635
+018636
+M018636
+018637
+M018637
+018638
+M018638
+018639
+M018639
+018640
+M018640
+018641
+M018641
+018642
+M018642
+018643
+M018643
+018644
+M018644
+018645
+M018645
+018646
+M018646
+018647
+M018647
+018648
+M018648
+018649
+M018649
+018650
+M018650
+018651
+M018651
+018652
+M018652
+018653
+M018653
+018654
+M018654
+018655
+M018655
+018656
+M018656
+018657
+M018657
+018658
+M018658
+018659
+M018659
+018660
+M018660
+018702
+M018702
+018703
+M018703
+018704
+M018704
+018705
+M018705
+018706
+M018706
+018707
+M018707
+018708
+M018708
+018709
+M018709
+018710
+M018710
+018711
+M018711
+018712
+M018712
+018713
+M018713
+018714
+M018714
+018715
+M018715
+018716
+M018716
+018717
+M018717
+018718
+M018718
+018719
+M018719
+018720
+M018720
+018721
+M018721
+018722
+M018722
+018723
+M018723
+018724
+M018724
+018725
+M018725
+018726
+M018726
+018727
+M018727
+018728
+M018728
+018729
+M018729
+018730
+M018730
+018731
+M018731
+018732
+M018732
+018773
+M018773
+018774
+M018774
+018775
+M018775
+018776
+M018776
+018777
+M018777
+018783
+M018783
+018784
+M018784
+018785
+M018785
+018786
+M018786
+018787
+M018787
+018788
+M018788
+018789
+M018789
+018790
+M018790
+018791
+M018791
+018792
+M018792
+018793
+M018793
+018794
+M018794
+018795
+M018795
+018796
+M018796
+018797
+M018797
+018798
+M018798
+018799
+M018799
+018800
+M018800
+018801
+M018801
+018802
+M018802
+018803
+M018803
+018804
+M018804
+018805
+M018805
+018806
+M018806
+018807
+M018807
+018808
+M018808
+018809
+M018809
+018810
+M018810
+018811
+M018811
+018812
+M018812
+018813
+M018813
+018814
+M018814
+018815
+M018815
+018816
+M018816
+018817
+M018817
+018818
+M018818
+018819
+M018819
+018820
+M018820
+018821
+M018821
+018822
+M018822
+018823
+M018823
+018824
+M018824
+018825
+M018825
+018826
+M018826
+018827
+M018827
+018828
+M018828
+018829
+M018829
+018830
+M018830
+018831
+M018831
+018832
+M018832
+018833
+M018833
+018834
+M018834
+018835
+M018835
+018836
+M018836
+018837
+M018837
+018838
+M018838
+018839
+M018839
+018840
+M018840
+018841
+M018841
+018842
+M018842
+018843
+M018843
+018844
+M018844
+018845
+M018845
+018868
+M018868
+018869
+M018869
+018870
+M018870
+018871
+M018871
+018872
+M018872
+018873
+M018873
+018874
+M018874
+018875
+M018875
+018876
+M018876
+018877
+M018877
+018878
+M018878
+018879
+M018879
+018880
+M018880
+018881
+M018881
+018882
+M018882
+018883
+M018883
+018884
+M018884
+018885
+M018885
+018886
+M018886
+018887
+M018887
+018888
+M018888
+018889
+M018889
+018890
+M018890
+018891
+M018891
+018892
+M018892
+018893
+M018893
+018894
+M018894
+018895
+M018895
+018896
+M018896
+018897
+M018897
+018898
+M018898
+018899
+M018899
+018900
+M018900
+018901
+M018901
+018902
+M018902
+018903
+M018903
+018904
+M018904
+018905
+M018905
+018906
+M018906
+018907
+M018907
+018924
+M018924
+018925
+M018925
+018926
+M018926
+018927
+M018927
+018928
+M018928
+018929
+M018929
+018930
+M018930
+018931
+M018931
+018932
+M018932
+018933
+M018933
+018934
+M018934
+018935
+M018935
+018936
+M018936
+018937
+M018937
+018938
+M018938
+018939
+M018939
+018940
+M018940
+018941
+M018941
+018942
+M018942
+018943
+M018943
+018944
+M018944
+018945
+M018945
+018946
+M018946
+018947
+M018947
+018948
+M018948
+018949
+M018949
+018950
+M018950
+018951
+M018951
+018952
+M018952
+018953
+M018953
+018954
+M018954
+018955
+M018955
+018956
+M018956
+018957
+M018957
+018958
+M018958
+018959
+M018959
+018960
+M018960
+018961
+M018961
+018962
+M018962
+018963
+M018963
+018964
+M018964
+018965
+M018965
+018966
+M018966
+018972
+M018972
+018973
+M018973
+018974
+M018974
+018975
+M018975
+018976
+M018976
+018977
+M018977
+018978
+M018978
+018979
+M018979
+018980
+M018980
+018981
+M018981
+018982
+M018982
+018983
+M018983
+018984
+M018984
+018985
+M018985
+019005
+M019005
+019006
+M019006
+019007
+M019007
+019008
+M019008
+019009
+M019009
+019010
+M019010
+019011
+M019011
+019012
+M019012
+019013
+M019013
+019040
+M019040
+019041
+M019041
+019042
+M019042
+019043
+M019043
+019044
+M019044
+019045
+M019045
+019046
+M019046
+019047
+M019047
+019048
+M019048
+019049
+M019049
+019050
+M019050
+019051
+M019051
+019052
+M019052
+019053
+M019053
+019054
+M019054
+019055
+M019055
+019056
+M019056
+019057
+M019057
+019058
+M019058
+019059
+M019059
+019060
+M019060
+019061
+M019061
+019062
+M019062
+019063
+M019063
+019064
+M019064
+019065
+M019065
+019066
+M019066
+019067
+M019067
+019068
+M019068
+019069
+M019069
+019070
+M019070
+019071
+M019071
+019072
+M019072
+019073
+M019073
+019074
+M019074
+019075
+M019075
+019076
+M019076
+019077
+M019077
+019078
+M019078
+019079
+M019079
+019089
+M019089
+019090
+M019090
+019091
+M019091
+019092
+M019092
+019093
+M019093
+019094
+M019094
+019096
+M019096
+019097
+M019097
+019098
+M019098
+019099
+M019099
+019100
+M019100
+019101
+M019101
+019102
+M019102
+019103
+M019103
+019104
+M019104
+019105
+M019105
+019106
+M019106
+019107
+M019107
+019108
+M019108
+019109
+M019109
+019110
+M019110
+019117
+M019117
+019118
+M019118
+019119
+M019119
+019120
+M019120
+019121
+M019121
+019122
+M019122
+019123
+M019123
+019124
+M019124
+019125
+M019125
+019126
+M019126
+019127
+M019127
+019128
+M019128
+019129
+M019129
+019130
+M019130
+019131
+M019131
+019132
+M019132
+019133
+M019133
+019134
+M019134
+019135
+M019135
+019136
+M019136
+019137
+M019137
+019138
+M019138
+019139
+M019139
+019140
+M019140
+019141
+M019141
+019142
+M019142
+019143
+M019143
+019144
+M019144
+019145
+M019145
+019146
+M019146
+019147
+M019147
+019148
+M019148
+019149
+M019149
+019150
+M019150
+019151
+M019151
+019152
+M019152
+019153
+M019153
+019154
+M019154
+019155
+M019155
+019156
+M019156
+019157
+M019157
+019158
+M019158
+019159
+M019159
+019160
+M019160
+019161
+M019161
+019162
+M019162
+019163
+M019163
+019164
+M019164
+019165
+M019165
+019166
+M019166
+019168
+M019168
+019169
+M019169
+019170
+M019170
+019171
+M019171
+019172
+M019172
+019173
+M019173
+019174
+M019174
+019175
+M019175
+019176
+M019176
+019177
+M019177
+019178
+M019178
+019179
+M019179
+019180
+M019180
+019181
+M019181
+019182
+M019182
+019183
+M019183
+019184
+M019184
+019185
+M019185
+019186
+M019186
+019187
+M019187
+019188
+M019188
+019189
+M019189
+019190
+M019190
+019191
+M019191
+019192
+M019192
+019193
+M019193
+019194
+M019194
+019195
+M019195
+019196
+M019196
+019197
+M019197
+019198
+M019198
+019199
+M019199
+019200
+M019200
+019201
+M019201
+019202
+M019202
+019203
+M019203
+019204
+M019204
+019205
+M019205
+019206
+M019206
+019207
+M019207
+019208
+M019208
+019209
+M019209
+019210
+M019210
+019211
+M019211
+019212
+M019212
+019213
+M019213
+019214
+M019214
+019215
+M019215
+019216
+M019216
+019217
+M019217
+019218
+M019218
+019219
+M019219
+019220
+M019220
+019221
+M019221
+019222
+M019222
+019223
+M019223
+019224
+M019224
+019225
+M019225
+019226
+M019226
+019227
+M019227
+019228
+M019228
+019229
+M019229
+019230
+M019230
+019231
+M019231
+019232
+M019232
+019233
+M019233
+019234
+M019234
+019235
+M019235
+019236
+M019236
+019237
+M019237
+019238
+M019238
+019239
+M019239
+019240
+M019240
+019241
+M019241
+019242
+M019242
+019243
+M019243
+019244
+M019244
+019245
+M019245
+019246
+M019246
+019247
+M019247
+019248
+M019248
+019249
+M019249
+019250
+M019250
+019251
+M019251
+019252
+M019252
+019253
+M019253
+019254
+M019254
+019259
+M019259
+019260
+M019260
+019261
+M019261
+019262
+M019262
+019263
+M019263
+019264
+M019264
+019265
+M019265
+019266
+M019266
+019267
+M019267
+019277
+M019277
+019278
+M019278
+019279
+M019279
+019280
+M019280
+019281
+M019281
+019295
+M019295
+019296
+M019296
+019297
+M019297
+019298
+M019298
+019311
+M019311
+019312
+M019312
+019313
+M019313
+019314
+M019314
+019315
+M019315
+019316
+M019316
+019317
+M019317
+019318
+M019318
+019319
+M019319
+019320
+M019320
+019321
+M019321
+019322
+M019322
+019323
+M019323
+019324
+M019324
+019325
+M019325
+019326
+M019326
+019327
+M019327
+019328
+M019328
+019329
+M019329
+019330
+M019330
+019331
+M019331
+019332
+M019332
+019333
+M019333
+019334
+M019334
+019335
+M019335
+019336
+M019336
+019337
+M019337
+019338
+M019338
+019356
+M019356
+019357
+M019357
+019358
+M019358
+019359
+M019359
+019360
+M019360
+019361
+M019361
+019362
+M019362
+019363
+M019363
+019364
+M019364
+019365
+M019365
+019366
+M019366
+019367
+M019367
+019368
+M019368
+019369
+M019369
+019370
+M019370
+019371
+M019371
+019372
+M019372
+019373
+M019373
+019374
+M019374
+019375
+M019375
+019376
+M019376
+019377
+M019377
+019378
+M019378
+019379
+M019379
+019380
+M019380
+019381
+M019381
+019382
+M019382
+019383
+M019383
+019389
+M019389
+019390
+M019390
+019391
+M019391
+019392
+M019392
+019393
+M019393
+019394
+M019394
+019395
+M019395
+019396
+M019396
+019397
+M019397
+019398
+M019398
+019400
+M019400
+019401
+M019401
+019402
+M019402
+019403
+M019403
+019404
+M019404
+019405
+M019405
+019406
+M019406
+019407
+M019407
+019408
+M019408
+019409
+M019409
+019410
+M019410
+019411
+M019411
+019412
+M019412
+019413
+M019413
+019414
+M019414
+019415
+M019415
+019416
+M019416
+019417
+M019417
+019418
+M019418
+019419
+M019419
+019420
+M019420
+019421
+M019421
+019422
+M019422
+019423
+M019423
+019424
+M019424
+019425
+M019425
+019426
+M019426
+019427
+M019427
+019428
+M019428
+019429
+M019429
+019430
+M019430
+019431
+M019431
+019432
+M019432
+019433
+M019433
+019434
+M019434
+019435
+M019435
+019436
+M019436
+019437
+M019437
+019438
+M019438
+019439
+M019439
+019440
+M019440
+019441
+M019441
+019442
+M019442
+019443
+M019443
+019444
+M019444
+019445
+M019445
+019446
+M019446
+019447
+M019447
+019448
+M019448
+019449
+M019449
+019450
+M019450
+019451
+M019451
+019452
+M019452
+019453
+M019453
+019454
+M019454
+019455
+M019455
+019456
+M019456
+019457
+M019457
+019458
+M019458
+019459
+M019459
+019460
+M019460
+019461
+M019461
+019462
+M019462
+019463
+M019463
+019464
+M019464
+019465
+M019465
+019466
+M019466
+019467
+M019467
+019468
+M019468
+019469
+M019469
+019470
+M019470
+019471
+M019471
+019472
+M019472
+019473
+M019473
+019474
+M019474
+019475
+M019475
+019476
+M019476
+019477
+M019477
+019478
+M019478
+019479
+M019479
+019480
+M019480
+019481
+M019481
+019482
+M019482
+019483
+M019483
+019484
+M019484
+019485
+M019485
+019486
+M019486
+019487
+M019487
+019488
+M019488
+019489
+M019489
+019490
+M019490
+019491
+M019491
+019492
+M019492
+019493
+M019493
+019494
+M019494
+019495
+M019495
+019525
+M019525
+019526
+M019526
+019527
+M019527
+019528
+M019528
+019529
+M019529
+019530
+M019530
+019531
+M019531
+019532
+M019532
+019533
+M019533
+019534
+M019534
+019535
+M019535
+019536
+M019536
+019537
+M019537
+019538
+M019538
+019539
+M019539
+019540
+M019540
+019541
+M019541
+019542
+M019542
+019543
+M019543
+019544
+M019544
+019545
+M019545
+019546
+M019546
+019547
+M019547
+019548
+M019548
+019549
+M019549
+019550
+M019550
+019551
+M019551
+019552
+M019552
+019553
+M019553
+019554
+M019554
+019555
+M019555
+019556
+M019556
+019557
+M019557
+019558
+M019558
+019559
+M019559
+019560
+M019560
+019561
+M019561
+019562
+M019562
+019563
+M019563
+019568
+M019568
+019569
+M019569
+019570
+M019570
+019571
+M019571
+019572
+M019572
+019573
+M019573
+019574
+M019574
+019575
+M019575
+019576
+M019576
+019577
+M019577
+019578
+M019578
+019579
+M019579
+019580
+M019580
+019581
+M019581
+019582
+M019582
+019583
+M019583
+019584
+M019584
+019585
+M019585
+019586
+M019586
+019587
+M019587
+019588
+M019588
+019589
+M019589
+019590
+M019590
+019591
+M019591
+019592
+M019592
+019593
+M019593
+019608
+M019608
+019609
+M019609
+019610
+M019610
+019611
+M019611
+019612
+M019612
+019613
+M019613
+019614
+M019614
+019615
+M019615
+019616
+M019616
+019617
+M019617
+019618
+M019618
+019619
+M019619
+019620
+M019620
+019621
+M019621
+019622
+M019622
+019623
+M019623
+019624
+M019624
+019625
+M019625
+019626
+M019626
+019627
+M019627
+019628
+M019628
+019629
+M019629
+019630
+M019630
+019631
+M019631
+019632
+M019632
+019633
+M019633
+019634
+M019634
+019635
+M019635
+019636
+M019636
+019637
+M019637
+019638
+M019638
+019639
+M019639
+019640
+M019640
+019651
+M019651
+019652
+M019652
+019653
+M019653
+019654
+M019654
+019655
+M019655
+019656
+M019656
+019657
+M019657
+019658
+M019658
+019659
+M019659
+019660
+M019660
+019661
+M019661
+019662
+M019662
+019663
+M019663
+019664
+M019664
+019665
+M019665
+019666
+M019666
+019667
+M019667
+019668
+M019668
+019669
+M019669
+019670
+M019670
+019671
+M019671
+019672
+M019672
+019673
+M019673
+019674
+M019674
+019675
+M019675
+019676
+M019676
+019677
+M019677
+019678
+M019678
+019679
+M019679
+019680
+M019680
+019681
+M019681
+019682
+M019682
+019683
+M019683
+019684
+M019684
+019685
+M019685
+019686
+M019686
+019687
+M019687
+019688
+M019688
+019689
+M019689
+019690
+M019690
+019691
+M019691
+019692
+M019692
+019693
+M019693
+019694
+M019694
+019695
+M019695
+019696
+M019696
+019719
+M019719
+019720
+M019720
+019721
+M019721
+019722
+M019722
+019723
+M019723
+019724
+M019724
+019725
+M019725
+019726
+M019726
+019727
+M019727
+019728
+M019728
+019729
+M019729
+019730
+M019730
+019731
+M019731
+019732
+M019732
+019733
+M019733
+019734
+M019734
+019735
+M019735
+019736
+M019736
+019737
+M019737
+019738
+M019738
+019739
+M019739
+019740
+M019740
+019741
+M019741
+019742
+M019742
+019743
+M019743
+019744
+M019744
+019745
+M019745
+019746
+M019746
+019747
+M019747
+019748
+M019748
+019749
+M019749
+019750
+M019750
+019751
+M019751
+019752
+M019752
+019753
+M019753
+019754
+M019754
+019755
+M019755
+019756
+M019756
+019757
+M019757
+019758
+M019758
+019759
+M019759
+019760
+M019760
+019761
+M019761
+019762
+M019762
+019763
+M019763
+019764
+M019764
+019765
+M019765
+019766
+M019766
+019767
+M019767
+019768
+M019768
+019769
+M019769
+019770
+M019770
+019771
+M019771
+019772
+M019772
+019773
+M019773
+019774
+M019774
+019775
+M019775
+019776
+M019776
+019777
+M019777
+019778
+M019778
+019779
+M019779
+019780
+M019780
+019781
+M019781
+019782
+M019782
+019783
+M019783
+019784
+M019784
+019785
+M019785
+019786
+M019786
+019787
+M019787
+019788
+M019788
+019789
+M019789
+019790
+M019790
+019791
+M019791
+019792
+M019792
+019793
+M019793
+019794
+M019794
+019809
+M019809
+019810
+M019810
+019811
+M019811
+019812
+M019812
+019821
+M019821
+019822
+M019822
+019823
+M019823
+019824
+M019824
+019825
+M019825
+019826
+M019826
+019827
+M019827
+019932
+M019932
+019933
+M019933
+019934
+M019934
+019935
+M019935
+019936
+M019936
+019937
+M019937
+019938
+M019938
+019939
+M019939
+019940
+M019940
+019941
+M019941
+019955
+M019955
+019956
+M019956
+019957
+M019957
+019958
+M019958
+019959
+M019959
+019960
+M019960
+019961
+M019961
+019962
+M019962
+019963
+M019963
+019972
+M019972
+019973
+M019973
+019974
+M019974
+019975
+M019975
+019976
+M019976
+019977
+M019977
+019978
+M019978
+019979
+M019979
+019980
+M019980
+019981
+M019981
+019982
+M019982
+019983
+M019983
+019984
+M019984
+019985
+M019985
+019986
+M019986
+019987
+M019987
+019988
+M019988
+019989
+M019989
+019990
+M019990
+019991
+M019991
+019992
+M019992
+019993
+M019993
+019994
+M019994
+019995
+M019995
+019996
+M019996
+019997
+M019997
+019998
+M019998
+019999
+M019999
+020000
+M020000
+020001
+M020001
+020008
+M020008
+020009
+M020009
+020010
+M020010
+020011
+M020011
+020012
+M020012
+020013
+M020013
+020014
+M020014
+020015
+M020015
+020016
+M020016
+020017
+M020017
+020018
+M020018
+020019
+M020019
+020020
+M020020
+020021
+M020021
+020022
+M020022
+020023
+M020023
+020024
+M020024
+020025
+M020025
+020026
+M020026
+020027
+M020027
+020028
+M020028
+020029
+M020029
+020030
+M020030
+020031
+M020031
+020032
+M020032
+020033
+M020033
+020034
+M020034
+020035
+M020035
+020036
+M020036
+020037
+M020037
+020038
+M020038
+020039
+M020039
+020040
+M020040
+020041
+M020041
+020042
+M020042
+020043
+M020043
+020044
+M020044
+020045
+M020045
+020046
+M020046
+020047
+M020047
+020048
+M020048
+020049
+M020049
+020050
+M020050
+020051
+M020051
+020052
+M020052
+020053
+M020053
+020054
+M020054
+020055
+M020055
+020056
+M020056
+020057
+M020057
+020058
+M020058
+020059
+M020059
+020060
+M020060
+020061
+M020061
+020062
+M020062
+020063
+M020063
+020064
+M020064
+020065
+M020065
+020066
+M020066
+020067
+M020067
+020068
+M020068
+020069
+M020069
+020070
+M020070
+020071
+M020071
+020072
+M020072
+020073
+M020073
+020074
+M020074
+020075
+M020075
+020076
+M020076
+020077
+M020077
+020078
+M020078
+020079
+M020079
+020080
+M020080
+020081
+M020081
+020082
+M020082
+020083
+M020083
+020084
+M020084
+020085
+M020085
+020086
+M020086
+020087
+M020087
+020088
+M020088
+020089
+M020089
+020090
+M020090
+020091
+M020091
+020092
+M020092
+020093
+M020093
+020095
+M020095
+020096
+M020096
+020097
+M020097
+020098
+M020098
+020100
+M020100
+020101
+M020101
+020102
+M020102
+020103
+M020103
+020104
+M020104
+020105
+M020105
+020106
+M020106
+020107
+M020107
+020126
+M020126
+020127
+M020127
+020128
+M020128
+020129
+M020129
+020148
+M020148
+020149
+M020149
+020150
+M020150
+020151
+M020151
+020152
+M020152
+020153
+M020153
+020154
+M020154
+020155
+M020155
+020156
+M020156
+020157
+M020157
+020159
+M020159
+020160
+M020160
+020161
+M020161
+020162
+M020162
+020163
+M020163
+020164
+M020164
+020165
+M020165
+020166
+M020166
+020167
+M020167
+020168
+M020168
+020169
+M020169
+020170
+M020170
+020171
+M020171
+020172
+M020172
+020173
+M020173
+020174
+M020174
+020175
+M020175
+020176
+M020176
+020177
+M020177
+020178
+M020178
+020179
+M020179
+020180
+M020180
+020181
+M020181
+020182
+M020182
+020183
+M020183
+020184
+M020184
+020185
+M020185
+020186
+M020186
+020187
+M020187
+020188
+M020188
+020189
+M020189
+020190
+M020190
+020191
+M020191
+020192
+M020192
+020193
+M020193
+020194
+M020194
+020195
+M020195
+020196
+M020196
+020197
+M020197
+020198
+M020198
+020199
+M020199
+020200
+M020200
+020201
+M020201
+020202
+M020202
+020203
+M020203
+020204
+M020204
+020205
+M020205
+020206
+M020206
+020207
+M020207
+020208
+M020208
+020209
+M020209
+020210
+M020210
+020211
+M020211
+020212
+M020212
+020213
+M020213
+020214
+M020214
+020215
+M020215
+020216
+M020216
+020217
+M020217
+020218
+M020218
+020219
+M020219
+020220
+M020220
+020221
+M020221
+020222
+M020222
+020223
+M020223
+020224
+M020224
+020225
+M020225
+020226
+M020226
+020227
+M020227
+020228
+M020228
+020229
+M020229
+020230
+M020230
+020231
+M020231
+020232
+M020232
+020233
+M020233
+020234
+M020234
+020235
+M020235
+020236
+M020236
+020237
+M020237
+020238
+M020238
+020239
+M020239
+020240
+M020240
+020241
+M020241
+020243
+M020243
+020244
+M020244
+020245
+M020245
+020246
+M020246
+020247
+M020247
+020248
+M020248
+020268
+M020268
+020269
+M020269
+020270
+M020270
+020271
+M020271
+020272
+M020272
+020278
+M020278
+020279
+M020279
+020280
+M020280
+020281
+M020281
+020282
+M020282
+020283
+M020283
+020284
+M020284
+020285
+M020285
+020286
+M020286
+020287
+M020287
+020288
+M020288
+020289
+M020289
+020290
+M020290
+020291
+M020291
+020292
+M020292
+020293
+M020293
+020294
+M020294
+020295
+M020295
+020296
+M020296
+020297
+M020297
+020298
+M020298
+020299
+M020299
+020300
+M020300
+020301
+M020301
+020302
+M020302
+020303
+M020303
+020304
+M020304
+020305
+M020305
+020306
+M020306
+020307
+M020307
+020308
+M020308
+020309
+M020309
+020310
+M020310
+020311
+M020311
+020312
+M020312
+020313
+M020313
+020314
+M020314
+020315
+M020315
+020316
+M020316
+020317
+M020317
+020318
+M020318
+020319
+M020319
+020320
+M020320
+020321
+M020321
+020322
+M020322
+020323
+M020323
+020324
+M020324
+020325
+M020325
+020326
+M020326
+020327
+M020327
+020328
+M020328
+020329
+M020329
+020330
+M020330
+020331
+M020331
+020332
+M020332
+020333
+M020333
+020334
+M020334
+020335
+M020335
+020336
+M020336
+020337
+M020337
+020338
+M020338
+020339
+M020339
+020340
+M020340
+020341
+M020341
+020342
+M020342
+020343
+M020343
+020344
+M020344
+020345
+M020345
+020346
+M020346
+020347
+M020347
+020348
+M020348
+020349
+M020349
+020350
+M020350
+020351
+M020351
+020352
+M020352
+020353
+M020353
+020354
+M020354
+020355
+M020355
+020356
+M020356
+020357
+M020357
+020358
+M020358
+020359
+M020359
+020360
+M020360
+020361
+M020361
+020362
+M020362
+020363
+M020363
+020364
+M020364
+020365
+M020365
+020366
+M020366
+020367
+M020367
+020368
+M020368
+020369
+M020369
+020370
+M020370
+020371
+M020371
+020372
+M020372
+020373
+M020373
+020374
+M020374
+020375
+M020375
+020376
+M020376
+020377
+M020377
+020378
+M020378
+020379
+M020379
+020380
+M020380
+020381
+M020381
+020382
+M020382
+020383
+M020383
+020384
+M020384
+020385
+M020385
+020401
+M020401
+020402
+M020402
+020403
+M020403
+020404
+M020404
+020405
+M020405
+020406
+M020406
+020407
+M020407
+020408
+M020408
+020409
+M020409
+020410
+M020410
+020411
+M020411
+020412
+M020412
+020413
+M020413
+020414
+M020414
+020415
+M020415
+020416
+M020416
+020417
+M020417
+020418
+M020418
+020419
+M020419
+020420
+M020420
+020421
+M020421
+020422
+M020422
+020423
+M020423
+020424
+M020424
+020425
+M020425
+020426
+M020426
+020427
+M020427
+020428
+M020428
+020429
+M020429
+020430
+M020430
+020431
+M020431
+020432
+M020432
+020433
+M020433
+020434
+M020434
+020435
+M020435
+020436
+M020436
+020437
+M020437
+020438
+M020438
+020439
+M020439
+020440
+M020440
+020441
+M020441
+020442
+M020442
+020443
+M020443
+020444
+M020444
+020445
+M020445
+020446
+M020446
+020447
+M020447
+020448
+M020448
+020449
+M020449
+020450
+M020450
+020451
+M020451
+020452
+M020452
+020453
+M020453
+020454
+M020454
+020455
+M020455
+020456
+M020456
+020457
+M020457
+020458
+M020458
+020459
+M020459
+020460
+M020460
+020461
+M020461
+020462
+M020462
+020463
+M020463
+020464
+M020464
+020465
+M020465
+020466
+M020466
+020467
+M020467
+020468
+M020468
+020469
+M020469
+020470
+M020470
+020471
+M020471
+020472
+M020472
+020473
+M020473
+020474
+M020474
+020475
+M020475
+020476
+M020476
+020477
+M020477
+020478
+M020478
+020479
+M020479
+020480
+M020480
+020481
+M020481
+020482
+M020482
+020483
+M020483
+020490
+M020490
+020491
+M020491
+020492
+M020492
+020493
+M020493
+020494
+M020494
+020495
+M020495
+020496
+M020496
+020497
+M020497
+020498
+M020498
+020499
+M020499
+020500
+M020500
+020501
+M020501
+020502
+M020502
+020503
+M020503
+020504
+M020504
+020505
+M020505
+020506
+M020506
+020507
+M020507
+020508
+M020508
+020509
+M020509
+020510
+M020510
+020511
+M020511
+020512
+M020512
+020513
+M020513
+020514
+M020514
+020515
+M020515
+020516
+M020516
+020517
+M020517
+020518
+M020518
+020519
+M020519
+020520
+M020520
+020521
+M020521
+020531
+M020531
+020532
+M020532
+020533
+M020533
+020534
+M020534
+020535
+M020535
+020536
+M020536
+020537
+M020537
+020538
+M020538
+020539
+M020539
+020540
+M020540
+020541
+M020541
+020542
+M020542
+020543
+M020543
+020544
+M020544
+020545
+M020545
+020546
+M020546
+020547
+M020547
+020548
+M020548
+020549
+M020549
+020550
+M020550
+020551
+M020551
+020552
+M020552
+020553
+M020553
+020554
+M020554
+020555
+M020555
+020556
+M020556
+020557
+M020557
+020558
+M020558
+020559
+M020559
+020560
+M020560
+020561
+M020561
+020562
+M020562
+020563
+M020563
+020564
+M020564
+020565
+M020565
+020566
+M020566
+020567
+M020567
+020568
+M020568
+020569
+M020569
+020570
+M020570
+020571
+M020571
+020572
+M020572
+020573
+M020573
+020574
+M020574
+020575
+M020575
+020576
+M020576
+020577
+M020577
+020578
+M020578
+020579
+M020579
+020580
+M020580
+020581
+M020581
+020582
+M020582
+020583
+M020583
+020584
+M020584
+020585
+M020585
+020586
+M020586
+020587
+M020587
+020588
+M020588
+020589
+M020589
+020590
+M020590
+020591
+M020591
+020592
+M020592
+020593
+M020593
+020594
+M020594
+020595
+M020595
+020596
+M020596
+020597
+M020597
+020598
+M020598
+020599
+M020599
+020600
+M020600
+020601
+M020601
+020602
+M020602
+020607
+M020607
+020608
+M020608
+020609
+M020609
+020610
+M020610
+020611
+M020611
+020612
+M020612
+020613
+M020613
+020614
+M020614
+020615
+M020615
+020616
+M020616
+020617
+M020617
+020618
+M020618
+020619
+M020619
+020620
+M020620
+020621
+M020621
+020622
+M020622
+020623
+M020623
+020624
+M020624
+020637
+M020637
+020638
+M020638
+020639
+M020639
+020640
+M020640
+020641
+M020641
+020642
+M020642
+020643
+M020643
+020658
+M020658
+020659
+M020659
+020660
+M020660
+020661
+M020661
+020662
+M020662
+020663
+M020663
+020664
+M020664
+020665
+M020665
+020666
+M020666
+020667
+M020667
+020668
+M020668
+020669
+M020669
+020676
+M020676
+020677
+M020677
+020678
+M020678
+020679
+M020679
+020680
+M020680
+020681
+M020681
+020682
+M020682
+020683
+M020683
+020684
+M020684
+020685
+M020685
+020707
+M020707
+020708
+M020708
+020709
+M020709
+020710
+M020710
+020711
+M020711
+020719
+M020719
+020720
+M020720
+020721
+M020721
+020722
+M020722
+020723
+M020723
+020724
+M020724
+020725
+M020725
+020726
+M020726
+020727
+M020727
+020785
+M020785
+020786
+M020786
+020787
+M020787
+020788
+M020788
+020789
+M020789
+020790
+M020790
+020791
+M020791
+020792
+M020792
+020793
+M020793
+020794
+M020794
+020795
+M020795
+020796
+M020796
+020797
+M020797
+020798
+M020798
+020799
+M020799
+020800
+M020800
+020801
+M020801
+020802
+M020802
+020803
+M020803
+020804
+M020804
+020805
+M020805
+020806
+M020806
+020807
+M020807
+020808
+M020808
+020809
+M020809
+020810
+M020810
+020811
+M020811
+020812
+M020812
+020813
+M020813
+020814
+M020814
+020815
+M020815
+020816
+M020816
+020817
+M020817
+020818
+M020818
+020819
+M020819
+020820
+M020820
+020821
+M020821
+020853
+M020853
+020854
+M020854
+020855
+M020855
+020856
+M020856
+020857
+M020857
+020858
+M020858
+020859
+M020859
+020860
+M020860
+020861
+M020861
+020862
+M020862
+020863
+M020863
+020864
+M020864
+020865
+M020865
+020866
+M020866
+020867
+M020867
+020868
+M020868
+020869
+M020869
+020870
+M020870
+020871
+M020871
+020872
+M020872
+020873
+M020873
+020874
+M020874
+020875
+M020875
+020876
+M020876
+020877
+M020877
+020878
+M020878
+020879
+M020879
+020880
+M020880
+020881
+M020881
+020882
+M020882
+020883
+M020883
+020884
+M020884
+020885
+M020885
+020886
+M020886
+020887
+M020887
+020888
+M020888
+020893
+M020893
+020894
+M020894
+020895
+M020895
+020896
+M020896
+020897
+M020897
+020898
+M020898
+020899
+M020899
+020900
+M020900
+020901
+M020901
+020902
+M020902
+020903
+M020903
+020904
+M020904
+020905
+M020905
+020906
+M020906
+020912
+M020912
+020913
+M020913
+020914
+M020914
+020915
+M020915
+020916
+M020916
+020917
+M020917
+020918
+M020918
+020919
+M020919
+020920
+M020920
+020921
+M020921
+020922
+M020922
+020923
+M020923
+020924
+M020924
+020925
+M020925
+020926
+M020926
+020927
+M020927
+020928
+M020928
+020929
+M020929
+020930
+M020930
+020931
+M020931
+020932
+M020932
+020933
+M020933
+020934
+M020934
+020935
+M020935
+020936
+M020936
+020937
+M020937
+020938
+M020938
+020939
+M020939
+020940
+M020940
+020941
+M020941
+020942
+M020942
+020943
+M020943
+020944
+M020944
+020945
+M020945
+020946
+M020946
+020947
+M020947
+020948
+M020948
+020949
+M020949
+020950
+M020950
+020951
+M020951
+020952
+M020952
+020953
+M020953
+020954
+M020954
+020955
+M020955
+020956
+M020956
+020957
+M020957
+020958
+M020958
+020981
+M020981
+020982
+M020982
+020983
+M020983
+020984
+M020984
+020985
+M020985
+020986
+M020986
+020987
+M020987
+020988
+M020988
+020989
+M020989
+020990
+M020990
+020991
+M020991
+020992
+M020992
+020993
+M020993
+020994
+M020994
+020995
+M020995
+020996
+M020996
+020997
+M020997
+020998
+M020998
+020999
+M020999
+021000
+M021000
+021001
+M021001
+021002
+M021002
+021003
+M021003
+021004
+M021004
+021005
+M021005
+021006
+M021006
+021020
+M021020
+021021
+M021021
+021022
+M021022
+021023
+M021023
+021024
+M021024
+021025
+M021025
+021026
+M021026
+021027
+M021027
+021028
+M021028
+021029
+M021029
+021030
+M021030
+021031
+M021031
+021032
+M021032
+021033
+M021033
+021034
+M021034
+021035
+M021035
+021036
+M021036
+021037
+M021037
+021038
+M021038
+021039
+M021039
+021040
+M021040
+021041
+M021041
+021042
+M021042
+021043
+M021043
+021044
+M021044
+021045
+M021045
+021046
+M021046
+021047
+M021047
+021048
+M021048
+021049
+M021049
+021050
+M021050
+021051
+M021051
+021052
+M021052
+021053
+M021053
+021054
+M021054
+021055
+M021055
+021056
+M021056
+021057
+M021057
+021058
+M021058
+021059
+M021059
+021060
+M021060
+021061
+M021061
+021062
+M021062
+021063
+M021063
+021064
+M021064
+021065
+M021065
+021066
+M021066
+021067
+M021067
+021068
+M021068
+021069
+M021069
+021070
+M021070
+021071
+M021071
+021072
+M021072
+021073
+M021073
+021074
+M021074
+021075
+M021075
+021076
+M021076
+021077
+M021077
+021078
+M021078
+021079
+M021079
+021080
+M021080
+021081
+M021081
+021082
+M021082
+021083
+M021083
+021084
+M021084
+021085
+M021085
+021086
+M021086
+021094
+M021094
+021095
+M021095
+021096
+M021096
+021097
+M021097
+021098
+M021098
+021099
+M021099
+021100
+M021100
+021101
+M021101
+021102
+M021102
+021103
+M021103
+021104
+M021104
+021105
+M021105
+021106
+M021106
+021107
+M021107
+021108
+M021108
+021153
+M021153
+021154
+M021154
+021155
+M021155
+021156
+M021156
+021157
+M021157
+021158
+M021158
+021159
+M021159
+021160
+M021160
+021161
+M021161
+021162
+M021162
+021163
+M021163
+021164
+M021164
+021165
+M021165
+021166
+M021166
+021167
+M021167
+021168
+M021168
+021169
+M021169
+021170
+M021170
+021171
+M021171
+021172
+M021172
+021173
+M021173
+021174
+M021174
+021175
+M021175
+021176
+M021176
+021177
+M021177
+021178
+M021178
+021179
+M021179
+021180
+M021180
+021181
+M021181
+021182
+M021182
+021183
+M021183
+021184
+M021184
+021203
+M021203
+021204
+M021204
+021205
+M021205
+021206
+M021206
+021207
+M021207
+021208
+M021208
+021209
+M021209
+021210
+M021210
+021211
+M021211
+021212
+M021212
+021213
+M021213
+021214
+M021214
+021215
+M021215
+021216
+M021216
+021217
+M021217
+021218
+M021218
+021219
+M021219
+021220
+M021220
+021221
+M021221
+021222
+M021222
+021223
+M021223
+021224
+M021224
+021225
+M021225
+021226
+M021226
+021227
+M021227
+021228
+M021228
+021229
+M021229
+021230
+M021230
+021231
+M021231
+021232
+M021232
+021233
+M021233
+021234
+M021234
+021235
+M021235
+021236
+M021236
+021237
+M021237
+021238
+M021238
+021239
+M021239
+021240
+M021240
+021241
+M021241
+021242
+M021242
+021243
+M021243
+021244
+M021244
+021245
+M021245
+021273
+M021273
+021274
+M021274
+021275
+M021275
+021276
+M021276
+021277
+M021277
+021278
+M021278
+021279
+M021279
+021280
+M021280
+021281
+M021281
+021282
+M021282
+021283
+M021283
+021284
+M021284
+021285
+M021285
+021286
+M021286
+021287
+M021287
+021288
+M021288
+021289
+M021289
+021290
+M021290
+021291
+M021291
+021292
+M021292
+021293
+M021293
+021294
+M021294
+021295
+M021295
+021296
+M021296
+021297
+M021297
+021298
+M021298
+021299
+M021299
+021300
+M021300
+021301
+M021301
+021302
+M021302
+021303
+M021303
+021304
+M021304
+021305
+M021305
+021306
+M021306
+021307
+M021307
+021308
+M021308
+021309
+M021309
+021310
+M021310
+021311
+M021311
+021312
+M021312
+021313
+M021313
+021314
+M021314
+021315
+M021315
+021331
+M021331
+021332
+M021332
+021333
+M021333
+021334
+M021334
+021335
+M021335
+021336
+M021336
+021337
+M021337
+021338
+M021338
+021339
+M021339
+021340
+M021340
+021341
+M021341
+021342
+M021342
+021343
+M021343
+021344
+M021344
+021368
+M021368
+021369
+M021369
+021370
+M021370
+021371
+M021371
+021372
+M021372
+021373
+M021373
+021374
+M021374
+021375
+M021375
+021376
+M021376
+021377
+M021377
+021378
+M021378
+021379
+M021379
+021380
+M021380
+021381
+M021381
+021382
+M021382
+021383
+M021383
+021384
+M021384
+021385
+M021385
+021386
+M021386
+021387
+M021387
+021388
+M021388
+021389
+M021389
+021390
+M021390
+021391
+M021391
+021392
+M021392
+021393
+M021393
+021394
+M021394
+021395
+M021395
+021396
+M021396
+021397
+M021397
+021398
+M021398
+021399
+M021399
+021400
+M021400
+021401
+M021401
+021402
+M021402
+021405
+M021405
+021406
+M021406
+021407
+M021407
+021408
+M021408
+021409
+M021409
+021410
+M021410
+021411
+M021411
+021412
+M021412
+021413
+M021413
+021414
+M021414
+021415
+M021415
+021416
+M021416
+021417
+M021417
+021418
+M021418
+021419
+M021419
+021420
+M021420
+021421
+M021421
+021422
+M021422
+021423
+M021423
+021424
+M021424
+021425
+M021425
+021426
+M021426
+021427
+M021427
+021428
+M021428
+021429
+M021429
+021430
+M021430
+021431
+M021431
+021432
+M021432
+021433
+M021433
+021434
+M021434
+021435
+M021435
+021436
+M021436
+021437
+M021437
+021438
+M021438
+021439
+M021439
+021440
+M021440
+021441
+M021441
+021449
+M021449
+021450
+M021450
+021451
+M021451
+021452
+M021452
+021454
+M021454
+021455
+M021455
+021456
+M021456
+021457
+M021457
+021458
+M021458
+021459
+M021459
+021460
+M021460
+021461
+M021461
+021462
+M021462
+021463
+M021463
+021464
+M021464
+021465
+M021465
+021466
+M021466
+021467
+M021467
+021468
+M021468
+021469
+M021469
+021470
+M021470
+021471
+M021471
+021472
+M021472
+021473
+M021473
+021474
+M021474
+021475
+M021475
+021476
+M021476
+021477
+M021477
+021478
+M021478
+021485
+M021485
+021486
+M021486
+021487
+M021487
+021488
+M021488
+021489
+M021489
+021490
+M021490
+021491
+M021491
+021492
+M021492
+021493
+M021493
+021494
+M021494
+021495
+M021495
+021496
+M021496
+021497
+M021497
+021498
+M021498
+021499
+M021499
+021500
+M021500
+021501
+M021501
+021502
+M021502
+021503
+M021503
+021504
+M021504
+021505
+M021505
+021506
+M021506
+021507
+M021507
+021508
+M021508
+021509
+M021509
+021526
+M021526
+021527
+M021527
+021528
+M021528
+021529
+M021529
+021530
+M021530
+021531
+M021531
+021532
+M021532
+021533
+M021533
+021534
+M021534
+021535
+M021535
+021536
+M021536
+021537
+M021537
+021538
+M021538
+021539
+M021539
+021540
+M021540
+021541
+M021541
+021542
+M021542
+021543
+M021543
+021544
+M021544
+021545
+M021545
+021546
+M021546
+021547
+M021547
+021548
+M021548
+021549
+M021549
+021550
+M021550
+021551
+M021551
+021552
+M021552
+021553
+M021553
+021554
+M021554
+021555
+M021555
+021556
+M021556
+021562
+M021562
+021563
+M021563
+021564
+M021564
+021565
+M021565
+021566
+M021566
+021567
+M021567
+021568
+M021568
+021569
+M021569
+021570
+M021570
+021571
+M021571
+021572
+M021572
+021576
+M021576
+021577
+M021577
+021578
+M021578
+021579
+M021579
+021580
+M021580
+021581
+M021581
+021582
+M021582
+021583
+M021583
+021584
+M021584
+021585
+M021585
+021586
+M021586
+021587
+M021587
+021588
+M021588
+021589
+M021589
+021590
+M021590
+021591
+M021591
+021592
+M021592
+021593
+M021593
+021594
+M021594
+021595
+M021595
+021596
+M021596
+021597
+M021597
+021598
+M021598
+021599
+M021599
+021600
+M021600
+021601
+M021601
+021602
+M021602
+021604
+M021604
+021605
+M021605
+021606
+M021606
+021607
+M021607
+021608
+M021608
+021609
+M021609
+021618
+M021618
+021619
+M021619
+021620
+M021620
+021621
+M021621
+021622
+M021622
+021623
+M021623
+021624
+M021624
+021625
+M021625
+021626
+M021626
+021627
+M021627
+021628
+M021628
+021629
+M021629
+021630
+M021630
+021631
+M021631
+021642
+M021642
+021643
+M021643
+021644
+M021644
+021645
+M021645
+021646
+M021646
+021647
+M021647
+021648
+M021648
+021649
+M021649
+021650
+M021650
+021651
+M021651
+021652
+M021652
+021653
+M021653
+021654
+M021654
+021655
+M021655
+021656
+M021656
+021657
+M021657
+021658
+M021658
+021659
+M021659
+021660
+M021660
+021661
+M021661
+021662
+M021662
+021663
+M021663
+021664
+M021664
+021665
+M021665
+021666
+M021666
+021667
+M021667
+021668
+M021668
+021669
+M021669
+021670
+M021670
+021671
+M021671
+021672
+M021672
+021674
+M021674
+021675
+M021675
+021676
+M021676
+021677
+M021677
+021678
+M021678
+021679
+M021679
+021680
+M021680
+021681
+M021681
+021682
+M021682
+021683
+M021683
+021684
+M021684
+021685
+M021685
+021686
+M021686
+021687
+M021687
+021688
+M021688
+021689
+M021689
+021690
+M021690
+021691
+M021691
+021692
+M021692
+021693
+M021693
+021694
+M021694
+021695
+M021695
+021696
+M021696
+021697
+M021697
+021698
+M021698
+021699
+M021699
+021700
+M021700
+021701
+M021701
+021702
+M021702
+021703
+M021703
+021704
+M021704
+021706
+M021706
+021707
+M021707
+021708
+M021708
+021709
+M021709
+021710
+M021710
+021711
+M021711
+021712
+M021712
+021713
+M021713
+021714
+M021714
+021715
+M021715
+021716
+M021716
+021717
+M021717
+021718
+M021718
+021719
+M021719
+021720
+M021720
+021721
+M021721
+021722
+M021722
+021723
+M021723
+021724
+M021724
+021725
+M021725
+021726
+M021726
+021727
+M021727
+021728
+M021728
+021744
+M021744
+021745
+M021745
+021746
+M021746
+021747
+M021747
+021748
+M021748
+021749
+M021749
+021750
+M021750
+021751
+M021751
+021752
+M021752
+021753
+M021753
+021754
+M021754
+021755
+M021755
+021756
+M021756
+021757
+M021757
+021758
+M021758
+021759
+M021759
+021760
+M021760
+021761
+M021761
+021762
+M021762
+021791
+M021791
+021792
+M021792
+021793
+M021793
+021794
+M021794
+021795
+M021795
+021796
+M021796
+021797
+M021797
+021798
+M021798
+021799
+M021799
+021800
+M021800
+021801
+M021801
+021802
+M021802
+021814
+M021814
+021815
+M021815
+021816
+M021816
+021817
+M021817
+021818
+M021818
+021819
+M021819
+021820
+M021820
+021821
+M021821
+021822
+M021822
+021823
+M021823
+021824
+M021824
+021825
+M021825
+021826
+M021826
+021827
+M021827
+021828
+M021828
+021829
+M021829
+021830
+M021830
+021831
+M021831
+021832
+M021832
+021833
+M021833
+021834
+M021834
+021835
+M021835
+021845
+M021845
+021846
+M021846
+021847
+M021847
+021848
+M021848
+021849
+M021849
+021850
+M021850
+021861
+M021861
+021862
+M021862
+021863
+M021863
+021864
+M021864
+021865
+M021865
+021866
+M021866
+021867
+M021867
+021868
+M021868
+021869
+M021869
+021870
+M021870
+021871
+M021871
+021872
+M021872
+021873
+M021873
+021874
+M021874
+021875
+M021875
+021876
+M021876
+021877
+M021877
+021878
+M021878
+021879
+M021879
+021880
+M021880
+021881
+M021881
+021882
+M021882
+021883
+M021883
+021884
+M021884
+021885
+M021885
+021886
+M021886
+021887
+M021887
+021888
+M021888
+021889
+M021889
+021890
+M021890
+021891
+M021891
+021892
+M021892
+021893
+M021893
+021894
+M021894
+021895
+M021895
+021896
+M021896
+021897
+M021897
+021898
+M021898
+021913
+M021913
+021914
+M021914
+021915
+M021915
+021916
+M021916
+021917
+M021917
+021918
+M021918
+021919
+M021919
+021932
+M021932
+021933
+M021933
+021934
+M021934
+021935
+M021935
+021936
+M021936
+021937
+M021937
+021938
+M021938
+021939
+M021939
+021940
+M021940
+021941
+M021941
+021958
+M021958
+021959
+M021959
+021960
+M021960
+021961
+M021961
+021962
+M021962
+021967
+M021967
+021968
+M021968
+021969
+M021969
+021970
+M021970
+021971
+M021971
+021972
+M021972
+021973
+M021973
+021974
+M021974
+021975
+M021975
+021976
+M021976
+021977
+M021977
+021978
+M021978
+021979
+M021979
+021980
+M021980
+021981
+M021981
+021982
+M021982
+021983
+M021983
+021984
+M021984
+021985
+M021985
+021986
+M021986
+021987
+M021987
+021988
+M021988
+021989
+M021989
+021990
+M021990
+021991
+M021991
+021992
+M021992
+021993
+M021993
+021994
+M021994
+021995
+M021995
+021996
+M021996
+021997
+M021997
+022003
+M022003
+022004
+M022004
+022005
+M022005
+022006
+M022006
+022007
+M022007
+022008
+M022008
+022009
+M022009
+022010
+M022010
+022011
+M022011
+022012
+M022012
+022013
+M022013
+022014
+M022014
+022015
+M022015
+022016
+M022016
+022017
+M022017
+022018
+M022018
+022019
+M022019
+022020
+M022020
+022021
+M022021
+022022
+M022022
+022023
+M022023
+022024
+M022024
+022025
+M022025
+022026
+M022026
+022027
+M022027
+022028
+M022028
+022029
+M022029
+022030
+M022030
+022031
+M022031
+022032
+M022032
+022033
+M022033
+022034
+M022034
+022035
+M022035
+022036
+M022036
+022037
+M022037
+022038
+M022038
+022047
+M022047
+022048
+M022048
+022049
+M022049
+022050
+M022050
+022051
+M022051
+022052
+M022052
+022053
+M022053
+022077
+M022077
+022078
+M022078
+022079
+M022079
+022086
+M022086
+022087
+M022087
+022088
+M022088
+022089
+M022089
+022090
+M022090
+022091
+M022091
+022092
+M022092
+022093
+M022093
+022094
+M022094
+022101
+M022101
+022102
+M022102
+022103
+M022103
+022104
+M022104
+022105
+M022105
+022106
+M022106
+022107
+M022107
+022108
+M022108
+022109
+M022109
+022110
+M022110
+022111
+M022111
+022112
+M022112
+022113
+M022113
+022114
+M022114
+022115
+M022115
+022116
+M022116
+022117
+M022117
+022118
+M022118
+022119
+M022119
+022120
+M022120
+022121
+M022121
+022122
+M022122
+022123
+M022123
+022124
+M022124
+022125
+M022125
+022126
+M022126
+022127
+M022127
+022128
+M022128
+022129
+M022129
+022130
+M022130
+022131
+M022131
+022132
+M022132
+022133
+M022133
+022134
+M022134
+022135
+M022135
+022136
+M022136
+022137
+M022137
+022138
+M022138
+022139
+M022139
+022140
+M022140
+022141
+M022141
+022142
+M022142
+022143
+M022143
+022189
+M022189
+022190
+M022190
+022191
+M022191
+022192
+M022192
+022193
+M022193
+022194
+M022194
+022195
+M022195
+022196
+M022196
+022197
+M022197
+022198
+M022198
+022199
+M022199
+022200
+M022200
+022201
+M022201
+022202
+M022202
+022203
+M022203
+022204
+M022204
+022205
+M022205
+022206
+M022206
+022207
+M022207
+022208
+M022208
+022209
+M022209
+022210
+M022210
+022211
+M022211
+022212
+M022212
+022213
+M022213
+022216
+M022216
+022217
+M022217
+022218
+M022218
+022219
+M022219
+022220
+M022220
+022221
+M022221
+022222
+M022222
+022223
+M022223
+022229
+M022229
+022230
+M022230
+022231
+M022231
+022232
+M022232
+022233
+M022233
+022234
+M022234
+022235
+M022235
+022236
+M022236
+022237
+M022237
+022238
+M022238
+022239
+M022239
+022240
+M022240
+022241
+M022241
+022242
+M022242
+022243
+M022243
+022244
+M022244
+022245
+M022245
+022246
+M022246
+022247
+M022247
+022248
+M022248
+022249
+M022249
+022250
+M022250
+022251
+M022251
+022252
+M022252
+022253
+M022253
+022254
+M022254
+022255
+M022255
+022256
+M022256
+022257
+M022257
+022258
+M022258
+022267
+M022267
+022268
+M022268
+022269
+M022269
+022270
+M022270
+022271
+M022271
+022280
+M022280
+022281
+M022281
+022282
+M022282
+022283
+M022283
+022284
+M022284
+022285
+M022285
+022286
+M022286
+022287
+M022287
+022288
+M022288
+022289
+M022289
+022290
+M022290
+022291
+M022291
+022292
+M022292
+022293
+M022293
+022294
+M022294
+022295
+M022295
+022296
+M022296
+022297
+M022297
+022298
+M022298
+022299
+M022299
+022300
+M022300
+022301
+M022301
+022302
+M022302
+022303
+M022303
+022304
+M022304
+022305
+M022305
+022306
+M022306
+022307
+M022307
+022308
+M022308
+022309
+M022309
+022310
+M022310
+022311
+M022311
+022312
+M022312
+022313
+M022313
+022314
+M022314
+022338
+M022338
+022339
+M022339
+022340
+M022340
+022341
+M022341
+022342
+M022342
+022343
+M022343
+022344
+M022344
+022345
+M022345
+022346
+M022346
+022347
+M022347
+022348
+M022348
+022354
+M022354
+022355
+M022355
+022356
+M022356
+022357
+M022357
+022358
+M022358
+022359
+M022359
+022360
+M022360
+022361
+M022361
+022362
+M022362
+022363
+M022363
+022364
+M022364
+022365
+M022365
+022366
+M022366
+022367
+M022367
+022368
+M022368
+022369
+M022369
+022370
+M022370
+022371
+M022371
+022372
+M022372
+022373
+M022373
+022374
+M022374
+022375
+M022375
+022376
+M022376
+022377
+M022377
+022378
+M022378
+022379
+M022379
+022479
+M022479
+022480
+M022480
+022481
+M022481
+022482
+M022482
+022483
+M022483
+022484
+M022484
+022485
+M022485
+022486
+M022486
+022487
+M022487
+022488
+M022488
+022489
+M022489
+022490
+M022490
+022491
+M022491
+022492
+M022492
+022493
+M022493
+022494
+M022494
+022495
+M022495
+022496
+M022496
+022497
+M022497
+022498
+M022498
+022499
+M022499
+022500
+M022500
+022501
+M022501
+022502
+M022502
+022503
+M022503
+022504
+M022504
+022505
+M022505
+022506
+M022506
+022507
+M022507
+022508
+M022508
+022509
+M022509
+022510
+M022510
+022511
+M022511
+022512
+M022512
+022513
+M022513
+022514
+M022514
+022515
+M022515
+022516
+M022516
+022517
+M022517
+022518
+M022518
+022519
+M022519
+022520
+M022520
+022521
+M022521
+022522
+M022522
+022523
+M022523
+022549
+M022549
+022550
+M022550
+022551
+M022551
+022552
+M022552
+022553
+M022553
+022554
+M022554
+022555
+M022555
+022556
+M022556
+022557
+M022557
+022558
+M022558
+022559
+M022559
+022560
+M022560
+022561
+M022561
+022562
+M022562
+022563
+M022563
+022564
+M022564
+022565
+M022565
+022566
+M022566
+022567
+M022567
+022568
+M022568
+022569
+M022569
+022570
+M022570
+022571
+M022571
+022572
+M022572
+022573
+M022573
+022604
+M022604
+022605
+M022605
+022606
+M022606
+022607
+M022607
+022608
+M022608
+022609
+M022609
+022610
+M022610
+022611
+M022611
+022612
+M022612
+022613
+M022613
+022614
+M022614
+022615
+M022615
+022616
+M022616
+022617
+M022617
+022618
+M022618
+022619
+M022619
+022620
+M022620
+022621
+M022621
+022622
+M022622
+022623
+M022623
+022624
+M022624
+022625
+M022625
+022626
+M022626
+022627
+M022627
+022628
+M022628
+022629
+M022629
+022630
+M022630
+022631
+M022631
+022632
+M022632
+022633
+M022633
+022634
+M022634
+022635
+M022635
+022636
+M022636
+022637
+M022637
+022638
+M022638
+022639
+M022639
+022640
+M022640
+022641
+M022641
+022642
+M022642
+022643
+M022643
+022644
+M022644
+022645
+M022645
+022646
+M022646
+022647
+M022647
+022648
+M022648
+022649
+M022649
+022650
+M022650
+022651
+M022651
+022652
+M022652
+022653
+M022653
+022654
+M022654
+022655
+M022655
+022656
+M022656
+022657
+M022657
+022658
+M022658
+022659
+M022659
+022660
+M022660
+022661
+M022661
+022662
+M022662
+022663
+M022663
+022664
+M022664
+022665
+M022665
+022666
+M022666
+022667
+M022667
+022673
+M022673
+022674
+M022674
+022675
+M022675
+022676
+M022676
+022677
+M022677
+022678
+M022678
+022679
+M022679
+022680
+M022680
+022681
+M022681
+022682
+M022682
+022683
+M022683
+022684
+M022684
+022685
+M022685
+022686
+M022686
+022687
+M022687
+022688
+M022688
+022689
+M022689
+022690
+M022690
+022691
+M022691
+022692
+M022692
+022693
+M022693
+022694
+M022694
+022695
+M022695
+022696
+M022696
+022697
+M022697
+022698
+M022698
+022699
+M022699
+022700
+M022700
+022701
+M022701
+022702
+M022702
+022703
+M022703
+022704
+M022704
+022705
+M022705
+022706
+M022706
+022707
+M022707
+022708
+M022708
+022709
+M022709
+022718
+M022718
+022719
+M022719
+022720
+M022720
+022721
+M022721
+022722
+M022722
+022723
+M022723
+022724
+M022724
+022725
+M022725
+022726
+M022726
+022727
+M022727
+022728
+M022728
+022729
+M022729
+022730
+M022730
+022731
+M022731
+022732
+M022732
+022733
+M022733
+022734
+M022734
+022735
+M022735
+022736
+M022736
+022737
+M022737
+022738
+M022738
+022739
+M022739
+022740
+M022740
+022741
+M022741
+022742
+M022742
+022743
+M022743
+022744
+M022744
+022745
+M022745
+022746
+M022746
+022747
+M022747
+022748
+M022748
+022749
+M022749
+022750
+M022750
+022751
+M022751
+022752
+M022752
+022753
+M022753
+022754
+M022754
+022755
+M022755
+022756
+M022756
+022757
+M022757
+022758
+M022758
+022759
+M022759
+022760
+M022760
+022761
+M022761
+022762
+M022762
+022763
+M022763
+022764
+M022764
+022765
+M022765
+022766
+M022766
+022767
+M022767
+022768
+M022768
+022769
+M022769
+022770
+M022770
+022771
+M022771
+022772
+M022772
+022773
+M022773
+022774
+M022774
+022775
+M022775
+022776
+M022776
+022777
+M022777
+022778
+M022778
+022779
+M022779
+022780
+M022780
+022781
+M022781
+022782
+M022782
+022783
+M022783
+022784
+M022784
+022785
+M022785
+022786
+M022786
+022787
+M022787
+022788
+M022788
+022789
+M022789
+022790
+M022790
+022791
+M022791
+022792
+M022792
+022793
+M022793
+022794
+M022794
+022795
+M022795
+022796
+M022796
+022797
+M022797
+022798
+M022798
+022799
+M022799
+022800
+M022800
+022801
+M022801
+022802
+M022802
+022803
+M022803
+022804
+M022804
+022805
+M022805
+022806
+M022806
+022807
+M022807
+022808
+M022808
+022809
+M022809
+022810
+M022810
+022811
+M022811
+022812
+M022812
+022813
+M022813
+022814
+M022814
+022815
+M022815
+022816
+M022816
+022817
+M022817
+022818
+M022818
+022819
+M022819
+022820
+M022820
+022821
+M022821
+022822
+M022822
+022823
+M022823
+022824
+M022824
+022825
+M022825
+022826
+M022826
+022827
+M022827
+022828
+M022828
+022829
+M022829
+022830
+M022830
+022831
+M022831
+022832
+M022832
+022833
+M022833
+022834
+M022834
+022835
+M022835
+022836
+M022836
+022837
+M022837
+022838
+M022838
+022839
+M022839
+022840
+M022840
+022841
+M022841
+022842
+M022842
+022843
+M022843
+022844
+M022844
+022845
+M022845
+022846
+M022846
+022847
+M022847
+022848
+M022848
+022849
+M022849
+022850
+M022850
+022851
+M022851
+022852
+M022852
+022853
+M022853
+022854
+M022854
+022855
+M022855
+022856
+M022856
+022857
+M022857
+022858
+M022858
+022859
+M022859
+022860
+M022860
+022861
+M022861
+022862
+M022862
+022863
+M022863
+022864
+M022864
+022865
+M022865
+022869
+M022869
+022870
+M022870
+022871
+M022871
+022872
+M022872
+022873
+M022873
+022874
+M022874
+022875
+M022875
+022876
+M022876
+022877
+M022877
+022878
+M022878
+022879
+M022879
+022880
+M022880
+022881
+M022881
+022882
+M022882
+022883
+M022883
+022884
+M022884
+022885
+M022885
+022886
+M022886
+022887
+M022887
+022888
+M022888
+022889
+M022889
+022890
+M022890
+022891
+M022891
+022892
+M022892
+022893
+M022893
+022894
+M022894
+022895
+M022895
+022896
+M022896
+022897
+M022897
+022898
+M022898
+022899
+M022899
+022900
+M022900
+022901
+M022901
+022902
+M022902
+022903
+M022903
+022904
+M022904
+022905
+M022905
+022906
+M022906
+022907
+M022907
+022908
+M022908
+022909
+M022909
+022910
+M022910
+022911
+M022911
+022912
+M022912
+022913
+M022913
+022914
+M022914
+022915
+M022915
+022916
+M022916
+022917
+M022917
+022918
+M022918
+022919
+M022919
+022920
+M022920
+022921
+M022921
+022922
+M022922
+022923
+M022923
+022924
+M022924
+022925
+M022925
+022926
+M022926
+022927
+M022927
+022928
+M022928
+022929
+M022929
+022930
+M022930
+022931
+M022931
+022932
+M022932
+022933
+M022933
+022934
+M022934
+022940
+M022940
+022941
+M022941
+022942
+M022942
+022943
+M022943
+022944
+M022944
+022945
+M022945
+022946
+M022946
+022947
+M022947
+022948
+M022948
+022949
+M022949
+022950
+M022950
+022951
+M022951
+022952
+M022952
+022953
+M022953
+022961
+M022961
+022962
+M022962
+022963
+M022963
+022964
+M022964
+022965
+M022965
+022966
+M022966
+022967
+M022967
+022968
+M022968
+022969
+M022969
+022970
+M022970
+022971
+M022971
+022972
+M022972
+022973
+M022973
+022974
+M022974
+022975
+M022975
+022976
+M022976
+022977
+M022977
+022978
+M022978
+022979
+M022979
+022980
+M022980
+022981
+M022981
+022982
+M022982
+022983
+M022983
+022984
+M022984
+022985
+M022985
+022986
+M022986
+022987
+M022987
+022988
+M022988
+022989
+M022989
+022990
+M022990
+022991
+M022991
+022992
+M022992
+022993
+M022993
+022994
+M022994
+022995
+M022995
+022996
+M022996
+022997
+M022997
+022998
+M022998
+022999
+M022999
+023000
+M023000
+023001
+M023001
+023002
+M023002
+023003
+M023003
+023004
+M023004
+023005
+M023005
+023006
+M023006
+023007
+M023007
+023008
+M023008
+023018
+M023018
+023019
+M023019
+023020
+M023020
+023021
+M023021
+023022
+M023022
+023023
+M023023
+023024
+M023024
+023025
+M023025
+023026
+M023026
+023027
+M023027
+023028
+M023028
+023029
+M023029
+023030
+M023030
+023031
+M023031
+023032
+M023032
+023033
+M023033
+023034
+M023034
+023059
+M023059
+023060
+M023060
+023061
+M023061
+023062
+M023062
+023063
+M023063
+023064
+M023064
+023065
+M023065
+023066
+M023066
+023067
+M023067
+023068
+M023068
+023069
+M023069
+023070
+M023070
+023071
+M023071
+023072
+M023072
+023073
+M023073
+023074
+M023074
+023075
+M023075
+023076
+M023076
+023077
+M023077
+023078
+M023078
+023079
+M023079
+023080
+M023080
+023081
+M023081
+023082
+M023082
+023083
+M023083
+023084
+M023084
+023101
+M023101
+023102
+M023102
+023103
+M023103
+023104
+M023104
+023105
+M023105
+023106
+M023106
+023107
+M023107
+023108
+M023108
+023109
+M023109
+023110
+M023110
+023111
+M023111
+023112
+M023112
+023113
+M023113
+023114
+M023114
+023115
+M023115
+023116
+M023116
+023117
+M023117
+023118
+M023118
+023119
+M023119
+023120
+M023120
+023121
+M023121
+023122
+M023122
+023123
+M023123
+023124
+M023124
+023125
+M023125
+023126
+M023126
+023127
+M023127
+023128
+M023128
+023129
+M023129
+023130
+M023130
+023131
+M023131
+023132
+M023132
+023133
+M023133
+023134
+M023134
+023135
+M023135
+023136
+M023136
+023137
+M023137
+023138
+M023138
+023139
+M023139
+023140
+M023140
+023141
+M023141
+023142
+M023142
+023143
+M023143
+023144
+M023144
+023145
+M023145
+023146
+M023146
+023147
+M023147
+023148
+M023148
+023149
+M023149
+023150
+M023150
+023151
+M023151
+023152
+M023152
+023153
+M023153
+023154
+M023154
+023155
+M023155
+023156
+M023156
+023157
+M023157
+023159
+M023159
+023161
+M023161
+023162
+M023162
+023163
+M023163
+023164
+M023164
+023165
+M023165
+023166
+M023166
+023167
+M023167
+023168
+M023168
+023169
+M023169
+023171
+M023171
+023172
+M023172
+023173
+M023173
+023174
+M023174
+023175
+M023175
+023176
+M023176
+023177
+M023177
+023178
+M023178
+023179
+M023179
+023180
+M023180
+023181
+M023181
+023182
+M023182
+023183
+M023183
+023184
+M023184
+023185
+M023185
+023186
+M023186
+023187
+M023187
+023188
+M023188
+023189
+M023189
+023190
+M023190
+023191
+M023191
+023192
+M023192
+023193
+M023193
+023200
+M023200
+023201
+M023201
+023202
+M023202
+023203
+M023203
+023204
+M023204
+023205
+M023205
+023206
+M023206
+023207
+M023207
+023208
+M023208
+023209
+M023209
+023210
+M023210
+023211
+M023211
+023212
+M023212
+023213
+M023213
+023214
+M023214
+023215
+M023215
+023222
+M023222
+023223
+M023223
+023224
+M023224
+023225
+M023225
+023226
+M023226
+023227
+M023227
+023228
+M023228
+023229
+M023229
+023230
+M023230
+023231
+M023231
+023232
+M023232
+023233
+M023233
+023234
+M023234
+023235
+M023235
+023236
+M023236
+023237
+M023237
+023238
+M023238
+023239
+M023239
+023240
+M023240
+023241
+M023241
+023242
+M023242
+023243
+M023243
+023244
+M023244
+023245
+M023245
+023246
+M023246
+023247
+M023247
+023248
+M023248
+023249
+M023249
+023250
+M023250
+023251
+M023251
+023252
+M023252
+023253
+M023253
+023254
+M023254
+023255
+M023255
+023256
+M023256
+023257
+M023257
+023258
+M023258
+023259
+M023259
+023260
+M023260
+023261
+M023261
+023262
+M023262
+023263
+M023263
+023264
+M023264
+023265
+M023265
+023266
+M023266
+023267
+M023267
+023268
+M023268
+023269
+M023269
+023270
+M023270
+023271
+M023271
+023272
+M023272
+023273
+M023273
+023274
+M023274
+023275
+M023275
+023276
+M023276
+023277
+M023277
+023278
+M023278
+023279
+M023279
+023280
+M023280
+023281
+M023281
+023290
+M023290
+023291
+M023291
+023292
+M023292
+023293
+M023293
+023294
+M023294
+023295
+M023295
+023296
+M023296
+023299
+M023299
+023300
+M023300
+023301
+M023301
+023302
+M023302
+023303
+M023303
+023326
+M023326
+023327
+M023327
+023328
+M023328
+023329
+M023329
+023330
+M023330
+023337
+M023337
+023338
+M023338
+023339
+M023339
+023340
+M023340
+023341
+M023341
+023351
+M023351
+023352
+M023352
+023353
+M023353
+023354
+M023354
+023355
+M023355
+023356
+M023356
+023357
+M023357
+023358
+M023358
+023359
+M023359
+023360
+M023360
+023361
+M023361
+023362
+M023362
+023363
+M023363
+023364
+M023364
+023365
+M023365
+023366
+M023366
+023367
+M023367
+023368
+M023368
+023375
+M023375
+023376
+M023376
+023377
+M023377
+023378
+M023378
+023379
+M023379
+023380
+M023380
+023381
+M023381
+023388
+M023388
+023389
+M023389
+023390
+M023390
+023391
+M023391
+023392
+M023392
+023393
+M023393
+023394
+M023394
+023395
+M023395
+023396
+M023396
+023401
+M023401
+023402
+M023402
+023403
+M023403
+023404
+M023404
+023405
+M023405
+023406
+M023406
+023407
+M023407
+023408
+M023408
+023409
+M023409
+023410
+M023410
+023411
+M023411
+023412
+M023412
+023413
+M023413
+023414
+M023414
+023415
+M023415
+023416
+M023416
+023417
+M023417
+023418
+M023418
+023419
+M023419
+023420
+M023420
+023421
+M023421
+023422
+M023422
+023423
+M023423
+023424
+M023424
+023426
+M023426
+023427
+M023427
+023428
+M023428
+023429
+M023429
+023430
+M023430
+023431
+M023431
+023432
+M023432
+023433
+M023433
+023434
+M023434
+023435
+M023435
+023436
+M023436
+023438
+M023438
+023439
+M023439
+023440
+M023440
+023441
+M023441
+023442
+M023442
+023444
+M023444
+023445
+M023445
+023446
+M023446
+023447
+M023447
+023448
+M023448
+023449
+M023449
+023450
+M023450
+023451
+M023451
+023452
+M023452
+023453
+M023453
+023454
+M023454
+023456
+M023456
+023457
+M023457
+023458
+M023458
+023459
+M023459
+023460
+M023460
+023461
+M023461
+023462
+M023462
+023463
+M023463
+023464
+M023464
+023465
+M023465
+023466
+M023466
+023467
+M023467
+023468
+M023468
+023469
+M023469
+023470
+M023470
+023471
+M023471
+023472
+M023472
+023473
+M023473
+023474
+M023474
+023475
+M023475
+023476
+M023476
+023477
+M023477
+023478
+M023478
+023479
+M023479
+023480
+M023480
+023481
+M023481
+023482
+M023482
+023483
+M023483
+023484
+M023484
+023485
+M023485
+023486
+M023486
+023487
+M023487
+023488
+M023488
+023489
+M023489
+023490
+M023490
+023491
+M023491
+023492
+M023492
+023493
+M023493
+023494
+M023494
+023495
+M023495
+023496
+M023496
+023497
+M023497
+023498
+M023498
+023499
+M023499
+023500
+M023500
+023501
+M023501
+023507
+M023507
+023508
+M023508
+023509
+M023509
+023510
+M023510
+023511
+M023511
+023519
+M023519
+023520
+M023520
+023521
+M023521
+023522
+M023522
+023523
+M023523
+023524
+M023524
+023525
+M023525
+023526
+M023526
+023527
+M023527
+023532
+M023532
+023533
+M023533
+023534
+M023534
+023535
+M023535
+023536
+M023536
+023537
+M023537
+023539
+M023539
+023540
+M023540
+023541
+M023541
+023542
+M023542
+023543
+M023543
+023544
+M023544
+023545
+M023545
+023546
+M023546
+023547
+M023547
+023548
+M023548
+023549
+M023549
+023550
+M023550
+023551
+M023551
+023552
+M023552
+023553
+M023553
+023554
+M023554
+023555
+M023555
+023556
+M023556
+023557
+M023557
+023558
+M023558
+023559
+M023559
+023560
+M023560
+023561
+M023561
+023562
+M023562
+023563
+M023563
+023564
+M023564
+023565
+M023565
+023566
+M023566
+023567
+M023567
+023568
+M023568
+023569
+M023569
+023575
+M023575
+023576
+M023576
+023577
+M023577
+023578
+M023578
+023579
+M023579
+023580
+M023580
+023581
+M023581
+023582
+M023582
+023583
+M023583
+023589
+M023589
+023590
+M023590
+023591
+M023591
+023592
+M023592
+023593
+M023593
+023594
+M023594
+023595
+M023595
+023596
+M023596
+023597
+M023597
+023598
+M023598
+023599
+M023599
+023600
+M023600
+023601
+M023601
+023607
+M023607
+023608
+M023608
+023609
+M023609
+023610
+M023610
+023611
+M023611
+023612
+M023612
+023613
+M023613
+023614
+M023614
+023615
+M023615
+023616
+M023616
+023617
+M023617
+023618
+M023618
+023619
+M023619
+023620
+M023620
+023621
+M023621
+023622
+M023622
+023623
+M023623
+023624
+M023624
+023625
+M023625
+023626
+M023626
+023627
+M023627
+023628
+M023628
+023629
+M023629
+023630
+M023630
+023631
+M023631
+023632
+M023632
+023633
+M023633
+023634
+M023634
+023635
+M023635
+023636
+M023636
+023637
+M023637
+023638
+M023638
+023639
+M023639
+023650
+M023650
+023651
+M023651
+023652
+M023652
+023653
+M023653
+023654
+M023654
+023655
+M023655
+023656
+M023656
+023691
+M023691
+023692
+M023692
+023693
+M023693
+023694
+M023694
+023695
+M023695
+023696
+M023696
+023697
+M023697
+023698
+M023698
+023699
+M023699
+023700
+M023700
+023701
+M023701
+023702
+M023702
+023703
+M023703
+023705
+M023705
+023706
+M023706
+023707
+M023707
+023709
+M023709
+023710
+M023710
+023711
+M023711
+023712
+M023712
+023713
+M023713
+023714
+M023714
+023715
+M023715
+023716
+M023716
+023728
+M023728
+023729
+M023729
+023730
+M023730
+023731
+M023731
+023732
+M023732
+023733
+M023733
+023734
+M023734
+023735
+M023735
+023736
+M023736
+023742
+M023742
+023743
+M023743
+023744
+M023744
+023745
+M023745
+023746
+M023746
+023747
+M023747
+023753
+M023753
+023754
+M023754
+023755
+M023755
+023783
+M023783
+023784
+M023784
+023785
+M023785
+023786
+M023786
+023787
+M023787
+023788
+M023788
+023803
+M023803
+023804
+M023804
+023805
+M023805
+023806
+M023806
+023807
+M023807
+023808
+M023808
+023809
+M023809
+023810
+M023810
+023811
+M023811
+023812
+M023812
+023813
+M023813
+023814
+M023814
+023815
+M023815
+023827
+M023827
+023828
+M023828
+023829
+M023829
+023830
+M023830
+023831
+M023831
+023832
+M023832
+023833
+M023833
+023834
+M023834
+023835
+M023835
+023836
+M023836
+023837
+M023837
+023838
+M023838
+023839
+M023839
+023840
+M023840
+023841
+M023841
+023842
+M023842
+023843
+M023843
+023844
+M023844
+023845
+M023845
+023846
+M023846
+023847
+M023847
+023848
+M023848
+023849
+M023849
+023850
+M023850
+023851
+M023851
+023852
+M023852
+023853
+M023853
+023854
+M023854
+023855
+M023855
+023856
+M023856
+023857
+M023857
+023869
+M023869
+023870
+M023870
+023871
+M023871
+023872
+M023872
+023873
+M023873
+023874
+M023874
+023875
+M023875
+023876
+M023876
+023877
+M023877
+023878
+M023878
+023879
+M023879
+023880
+M023880
+023881
+M023881
+023882
+M023882
+023883
+M023883
+023884
+M023884
+023885
+M023885
+023902
+M023902
+023903
+M023903
+023904
+M023904
+023905
+M023905
+023906
+M023906
+023907
+M023907
+023908
+M023908
+023909
+M023909
+023910
+M023910
+023911
+M023911
+023912
+M023912
+023913
+M023913
+023914
+M023914
+023915
+M023915
+023916
+M023916
+023917
+M023917
+023918
+M023918
+023919
+M023919
+023920
+M023920
+023921
+M023921
+023926
+M023926
+023927
+M023927
+023928
+M023928
+023929
+M023929
+023930
+M023930
+023931
+M023931
+023932
+M023932
+023933
+M023933
+023934
+M023934
+023935
+M023935
+023936
+M023936
+023937
+M023937
+023938
+M023938
+023939
+M023939
+023940
+M023940
+023941
+M023941
+023942
+M023942
+023943
+M023943
+023944
+M023944
+023945
+M023945
+023946
+M023946
+023947
+M023947
+023948
+M023948
+023949
+M023949
+023950
+M023950
+023957
+M023957
+023958
+M023958
+023959
+M023959
+023960
+M023960
+023961
+M023961
+023962
+M023962
+023964
+M023964
+023965
+M023965
+023966
+M023966
+023967
+M023967
+023968
+M023968
+023969
+M023969
+023970
+M023970
+023971
+M023971
+023972
+M023972
+023973
+M023973
+023974
+M023974
+023975
+M023975
+023976
+M023976
+023977
+M023977
+023978
+M023978
+023979
+M023979
+023980
+M023980
+023981
+M023981
+023982
+M023982
+023983
+M023983
+023984
+M023984
+023985
+M023985
+023986
+M023986
+023987
+M023987
+023988
+M023988
+023989
+M023989
+023990
+M023990
+024012
+M024012
+024013
+M024013
+024014
+M024014
+024015
+M024015
+024016
+M024016
+024017
+M024017
+024018
+M024018
+024019
+M024019
+024020
+M024020
+024021
+M024021
+024022
+M024022
+024023
+M024023
+024024
+M024024
+024025
+M024025
+024026
+M024026
+024027
+M024027
+024028
+M024028
+024029
+M024029
+024030
+M024030
+024031
+M024031
+024032
+M024032
+024033
+M024033
+024034
+M024034
+024035
+M024035
+024036
+M024036
+024037
+M024037
+024038
+M024038
+024043
+M024043
+024044
+M024044
+024045
+M024045
+024046
+M024046
+024047
+M024047
+024048
+M024048
+024069
+M024069
+024070
+M024070
+024083
+M024083
+024084
+M024084
+024085
+M024085
+024086
+M024086
+024087
+M024087
+024097
+M024097
+024098
+M024098
+024099
+M024099
+024100
+M024100
+024101
+M024101
+024102
+M024102
+024131
+M024131
+024132
+M024132
+024133
+M024133
+024134
+M024134
+024135
+M024135
+024136
+M024136
+024137
+M024137
+024138
+M024138
+024139
+M024139
+024140
+M024140
+024141
+M024141
+024142
+M024142
+024143
+M024143
+024144
+M024144
+024145
+M024145
+024146
+M024146
+024147
+M024147
+024148
+M024148
+024149
+M024149
+024150
+M024150
+024151
+M024151
+024152
+M024152
+024153
+M024153
+024154
+M024154
+024155
+M024155
+024156
+M024156
+024157
+M024157
+024158
+M024158
+024159
+M024159
+024160
+M024160
+024161
+M024161
+024162
+M024162
+024163
+M024163
+024164
+M024164
+024165
+M024165
+024166
+M024166
+024167
+M024167
+024168
+M024168
+024169
+M024169
+024170
+M024170
+024171
+M024171
+024172
+M024172
+024173
+M024173
+024174
+M024174
+024175
+M024175
+024176
+M024176
+024177
+M024177
+024178
+M024178
+024179
+M024179
+024187
+M024187
+024188
+M024188
+024189
+M024189
+024190
+M024190
+024191
+M024191
+024198
+M024198
+024199
+M024199
+024200
+M024200
+024201
+M024201
+024202
+M024202
+024203
+M024203
+024220
+M024220
+024221
+M024221
+024222
+M024222
+024223
+M024223
+024224
+M024224
+024225
+M024225
+024226
+M024226
+024227
+M024227
+024228
+M024228
+024229
+M024229
+024230
+M024230
+024231
+M024231
+024232
+M024232
+024233
+M024233
+024234
+M024234
+024235
+M024235
+024236
+M024236
+024237
+M024237
+024238
+M024238
+024239
+M024239
+024240
+M024240
+024241
+M024241
+024242
+M024242
+024243
+M024243
+024244
+M024244
+024245
+M024245
+024246
+M024246
+024247
+M024247
+024248
+M024248
+024249
+M024249
+024250
+M024250
+024251
+M024251
+024252
+M024252
+024253
+M024253
+024254
+M024254
+024255
+M024255
+024256
+M024256
+024257
+M024257
+024258
+M024258
+024259
+M024259
+024260
+M024260
+024261
+M024261
+024262
+M024262
+024263
+M024263
+024264
+M024264
+024265
+M024265
+024266
+M024266
+024267
+M024267
+024268
+M024268
+024269
+M024269
+024270
+M024270
+024271
+M024271
+024272
+M024272
+024273
+M024273
+024274
+M024274
+024275
+M024275
+024276
+M024276
+024277
+M024277
+024278
+M024278
+024279
+M024279
+024280
+M024280
+024281
+M024281
+024282
+M024282
+024283
+M024283
+024284
+M024284
+024285
+M024285
+024286
+M024286
+024287
+M024287
+024288
+M024288
+024289
+M024289
+024290
+M024290
+024291
+M024291
+024292
+M024292
+024293
+M024293
+024294
+M024294
+024295
+M024295
+024296
+M024296
+024297
+M024297
+024298
+M024298
+024299
+M024299
+024300
+M024300
+024301
+M024301
+024302
+M024302
+024303
+M024303
+024304
+M024304
+024305
+M024305
+024306
+M024306
+024307
+M024307
+024308
+M024308
+024309
+M024309
+024310
+M024310
+024311
+M024311
+024312
+M024312
+024313
+M024313
+024314
+M024314
+024315
+M024315
+024316
+M024316
+024317
+M024317
+024318
+M024318
+024319
+M024319
+024320
+M024320
+024321
+M024321
+024331
+M024331
+024332
+M024332
+024333
+M024333
+024334
+M024334
+024347
+M024347
+024348
+M024348
+024349
+M024349
+024350
+M024350
+024351
+M024351
+024352
+M024352
+024353
+M024353
+024357
+M024357
+024358
+M024358
+024359
+M024359
+024360
+M024360
+024361
+M024361
+024362
+M024362
+024363
+M024363
+024364
+M024364
+024365
+M024365
+024366
+M024366
+024367
+M024367
+024368
+M024368
+024369
+M024369
+024370
+M024370
+024371
+M024371
+024372
+M024372
+024373
+M024373
+024381
+M024381
+024382
+M024382
+024383
+M024383
+024384
+M024384
+024385
+M024385
+024386
+M024386
+024387
+M024387
+024388
+M024388
+024389
+M024389
+024390
+M024390
+024391
+M024391
+024392
+M024392
+024393
+M024393
+024394
+M024394
+024395
+M024395
+024396
+M024396
+024397
+M024397
+024398
+M024398
+024399
+M024399
+024400
+M024400
+024401
+M024401
+024457
+M024457
+024458
+M024458
+024459
+M024459
+024460
+M024460
+024463
+M024463
+024464
+M024464
+024465
+M024465
+024466
+M024466
+024467
+M024467
+024468
+M024468
+024469
+M024469
+024470
+M024470
+024471
+M024471
+024472
+M024472
+024473
+M024473
+024474
+M024474
+024475
+M024475
+024476
+M024476
+024477
+M024477
+024478
+M024478
+024479
+M024479
+024480
+M024480
+024481
+M024481
+024482
+M024482
+024483
+M024483
+024484
+M024484
+024485
+M024485
+024486
+M024486
+024487
+M024487
+024488
+M024488
+024489
+M024489
+024490
+M024490
+024491
+M024491
+024492
+M024492
+024493
+M024493
+024494
+M024494
+024495
+M024495
+024496
+M024496
+024497
+M024497
+024498
+M024498
+024499
+M024499
+024500
+M024500
+024501
+M024501
+024502
+M024502
+024503
+M024503
+024504
+M024504
+024505
+M024505
+024506
+M024506
+024507
+M024507
+024508
+M024508
+024509
+M024509
+024510
+M024510
+024511
+M024511
+024512
+M024512
+024513
+M024513
+024514
+M024514
+024515
+M024515
+024516
+M024516
+024517
+M024517
+024518
+M024518
+024519
+M024519
+024520
+M024520
+024521
+M024521
+024522
+M024522
+024523
+M024523
+024524
+M024524
+024525
+M024525
+024526
+M024526
+024527
+M024527
+024546
+M024546
+024547
+M024547
+024548
+M024548
+024549
+M024549
+024550
+M024550
+024551
+M024551
+024552
+M024552
+024553
+M024553
+024554
+M024554
+024555
+M024555
+024556
+M024556
+024557
+M024557
+024558
+M024558
+024559
+M024559
+024560
+M024560
+024561
+M024561
+024562
+M024562
+024563
+M024563
+024564
+M024564
+024565
+M024565
+024566
+M024566
+024567
+M024567
+024568
+M024568
+024569
+M024569
+024570
+M024570
+024571
+M024571
+024572
+M024572
+024573
+M024573
+024574
+M024574
+024575
+M024575
+024576
+M024576
+024577
+M024577
+024578
+M024578
+024579
+M024579
+024580
+M024580
+024581
+M024581
+024582
+M024582
+024583
+M024583
+024584
+M024584
+024585
+M024585
+024586
+M024586
+024587
+M024587
+024588
+M024588
+024589
+M024589
+024590
+M024590
+024591
+M024591
+024592
+M024592
+024593
+M024593
+024594
+M024594
+024595
+M024595
+024596
+M024596
+024597
+M024597
+024598
+M024598
+024599
+M024599
+024600
+M024600
+024601
+M024601
+024602
+M024602
+024603
+M024603
+024604
+M024604
+024605
+M024605
+024606
+M024606
+024607
+M024607
+024608
+M024608
+024609
+M024609
+024610
+M024610
+024611
+M024611
+024612
+M024612
+024613
+M024613
+024614
+M024614
+024615
+M024615
+024616
+M024616
+024617
+M024617
+024618
+M024618
+024619
+M024619
+024620
+M024620
+024621
+M024621
+024622
+M024622
+024623
+M024623
+024624
+M024624
+024625
+M024625
+024626
+M024626
+024627
+M024627
+024628
+M024628
+024629
+M024629
+024630
+M024630
+024631
+M024631
+024632
+M024632
+024633
+M024633
+024634
+M024634
+024635
+M024635
+024636
+M024636
+024637
+M024637
+024643
+M024643
+024644
+M024644
+024645
+M024645
+024646
+M024646
+024647
+M024647
+024648
+M024648
+024649
+M024649
+024650
+M024650
+024651
+M024651
+024652
+M024652
+024653
+M024653
+024654
+M024654
+024655
+M024655
+024656
+M024656
+024657
+M024657
+024658
+M024658
+024659
+M024659
+024660
+M024660
+024661
+M024661
+024662
+M024662
+024663
+M024663
+024664
+M024664
+024665
+M024665
+024673
+M024673
+024674
+M024674
+024675
+M024675
+024676
+M024676
+024677
+M024677
+024678
+M024678
+024679
+M024679
+024680
+M024680
+024681
+M024681
+024733
+M024733
+024734
+M024734
+024735
+M024735
+024736
+M024736
+024737
+M024737
+024738
+M024738
+024739
+M024739
+024740
+M024740
+024741
+M024741
+024742
+M024742
+024743
+M024743
+024744
+M024744
+024745
+M024745
+024746
+M024746
+024747
+M024747
+024748
+M024748
+024749
+M024749
+024750
+M024750
+024751
+M024751
+024752
+M024752
+024753
+M024753
+024754
+M024754
+024755
+M024755
+024756
+M024756
+024757
+M024757
+024758
+M024758
+024759
+M024759
+024760
+M024760
+024761
+M024761
+024762
+M024762
+024763
+M024763
+024764
+M024764
+024765
+M024765
+024766
+M024766
+024767
+M024767
+024768
+M024768
+024769
+M024769
+024770
+M024770
+024771
+M024771
+024772
+M024772
+024773
+M024773
+024774
+M024774
+024781
+M024781
+024782
+M024782
+024783
+M024783
+024784
+M024784
+024785
+M024785
+024786
+M024786
+024787
+M024787
+024788
+M024788
+024789
+M024789
+024790
+M024790
+024791
+M024791
+024792
+M024792
+024793
+M024793
+024794
+M024794
+024795
+M024795
+024796
+M024796
+024797
+M024797
+024798
+M024798
+024799
+M024799
+024800
+M024800
+024801
+M024801
+024802
+M024802
+024803
+M024803
+024804
+M024804
+024805
+M024805
+024806
+M024806
+024807
+M024807
+024808
+M024808
+024809
+M024809
+024810
+M024810
+024811
+M024811
+024812
+M024812
+024813
+M024813
+024814
+M024814
+024815
+M024815
+024816
+M024816
+024817
+M024817
+024818
+M024818
+024819
+M024819
+024820
+M024820
+024821
+M024821
+024822
+M024822
+024823
+M024823
+024824
+M024824
+024825
+M024825
+024826
+M024826
+024827
+M024827
+024828
+M024828
+024829
+M024829
+024830
+M024830
+024831
+M024831
+024832
+M024832
+024833
+M024833
+024834
+M024834
+024835
+M024835
+024836
+M024836
+024837
+M024837
+024838
+M024838
+024839
+M024839
+024840
+M024840
+024841
+M024841
+024842
+M024842
+024843
+M024843
+024844
+M024844
+024849
+M024849
+024850
+M024850
+024851
+M024851
+024852
+M024852
+024853
+M024853
+024854
+M024854
+024855
+M024855
+024856
+M024856
+024857
+M024857
+024858
+M024858
+024859
+M024859
+024860
+M024860
+024861
+M024861
+024862
+M024862
+024863
+M024863
+024864
+M024864
+024865
+M024865
+024866
+M024866
+024867
+M024867
+024868
+M024868
+024869
+M024869
+024870
+M024870
+024871
+M024871
+024872
+M024872
+024873
+M024873
+024874
+M024874
+024875
+M024875
+024876
+M024876
+024877
+M024877
+024878
+M024878
+024879
+M024879
+024880
+M024880
+024881
+M024881
+024882
+M024882
+024883
+M024883
+024884
+M024884
+024885
+M024885
+024886
+M024886
+024887
+M024887
+024888
+M024888
+024889
+M024889
+024890
+M024890
+024891
+M024891
+024892
+M024892
+024893
+M024893
+024894
+M024894
+024895
+M024895
+024896
+M024896
+024897
+M024897
+024898
+M024898
+024899
+M024899
+024900
+M024900
+024901
+M024901
+024902
+M024902
+024903
+M024903
+024904
+M024904
+024924
+M024924
+024925
+M024925
+024926
+M024926
+024927
+M024927
+024928
+M024928
+024929
+M024929
+024930
+M024930
+024931
+M024931
+024932
+M024932
+024933
+M024933
+024934
+M024934
+024935
+M024935
+024936
+M024936
+024937
+M024937
+024938
+M024938
+024939
+M024939
+024940
+M024940
+024941
+M024941
+024947
+M024947
+024948
+M024948
+024949
+M024949
+024950
+M024950
+024952
+M024952
+024953
+M024953
+024954
+M024954
+024955
+M024955
+024956
+M024956
+024957
+M024957
+024958
+M024958
+024959
+M024959
+024960
+M024960
+024961
+M024961
+024962
+M024962
+024963
+M024963
+024964
+M024964
+024965
+M024965
+024976
+M024976
+024977
+M024977
+024978
+M024978
+024979
+M024979
+024980
+M024980
+024981
+M024981
+025028
+M025028
+025029
+M025029
+025030
+M025030
+025031
+M025031
+025032
+M025032
+025033
+M025033
+025034
+M025034
+025035
+M025035
+025036
+M025036
+025037
+M025037
+025038
+M025038
+025039
+M025039
+025040
+M025040
+025041
+M025041
+025042
+M025042
+025043
+M025043
+025044
+M025044
+025045
+M025045
+025046
+M025046
+025047
+M025047
+025048
+M025048
+025049
+M025049
+025050
+M025050
+025051
+M025051
+025052
+M025052
+025053
+M025053
+025054
+M025054
+025055
+M025055
+025056
+M025056
+025057
+M025057
+025058
+M025058
+025059
+M025059
+025060
+M025060
+025061
+M025061
+025062
+M025062
+025063
+M025063
+025064
+M025064
+025065
+M025065
+025066
+M025066
+025067
+M025067
+025068
+M025068
+025069
+M025069
+025070
+M025070
+025071
+M025071
+025072
+M025072
+025073
+M025073
+025080
+M025080
+025081
+M025081
+025082
+M025082
+025083
+M025083
+025084
+M025084
+025085
+M025085
+025086
+M025086
+025087
+M025087
+025088
+M025088
+025089
+M025089
+025090
+M025090
+025091
+M025091
+025092
+M025092
+025093
+M025093
+025094
+M025094
+025095
+M025095
+025096
+M025096
+025097
+M025097
+025098
+M025098
+025099
+M025099
+025100
+M025100
+025101
+M025101
+025102
+M025102
+025103
+M025103
+025104
+M025104
+025105
+M025105
+025106
+M025106
+025107
+M025107
+025108
+M025108
+025109
+M025109
+025110
+M025110
+025111
+M025111
+025112
+M025112
+025113
+M025113
+025114
+M025114
+025115
+M025115
+025116
+M025116
+025117
+M025117
+025118
+M025118
+025119
+M025119
+025120
+M025120
+025121
+M025121
+025147
+M025147
+025148
+M025148
+025149
+M025149
+025150
+M025150
+025151
+M025151
+025152
+M025152
+025153
+M025153
+025154
+M025154
+025155
+M025155
+025156
+M025156
+025157
+M025157
+025158
+M025158
+025159
+M025159
+025160
+M025160
+025161
+M025161
+025162
+M025162
+025163
+M025163
+025164
+M025164
+025165
+M025165
+025166
+M025166
+025167
+M025167
+025168
+M025168
+025169
+M025169
+025170
+M025170
+025171
+M025171
+025172
+M025172
+025173
+M025173
+025174
+M025174
+025175
+M025175
+025176
+M025176
+025177
+M025177
+025178
+M025178
+025179
+M025179
+025192
+M025192
+025193
+M025193
+025194
+M025194
+025195
+M025195
+025196
+M025196
+025200
+M025200
+025201
+M025201
+025202
+M025202
+025203
+M025203
+025204
+M025204
+025205
+M025205
+025206
+M025206
+025207
+M025207
+025208
+M025208
+025209
+M025209
+025210
+M025210
+025211
+M025211
+025212
+M025212
+025213
+M025213
+025214
+M025214
+025215
+M025215
+025216
+M025216
+025217
+M025217
+025218
+M025218
+025219
+M025219
+025220
+M025220
+025221
+M025221
+025222
+M025222
+025223
+M025223
+025224
+M025224
+025225
+M025225
+025226
+M025226
+025227
+M025227
+025228
+M025228
+025229
+M025229
+025230
+M025230
+025231
+M025231
+025232
+M025232
+025233
+M025233
+025234
+M025234
+025235
+M025235
+025236
+M025236
+025237
+M025237
+025238
+M025238
+025239
+M025239
+025240
+M025240
+025241
+M025241
+025242
+M025242
+025243
+M025243
+025244
+M025244
+025245
+M025245
+025246
+M025246
+025247
+M025247
+025248
+M025248
+025249
+M025249
+025250
+M025250
+025251
+M025251
+025252
+M025252
+025253
+M025253
+025254
+M025254
+025255
+M025255
+025256
+M025256
+025257
+M025257
+025258
+M025258
+025259
+M025259
+025260
+M025260
+025261
+M025261
+025262
+M025262
+025263
+M025263
+025264
+M025264
+025265
+M025265
+025266
+M025266
+025267
+M025267
+025268
+M025268
+025269
+M025269
+025270
+M025270
+025271
+M025271
+025287
+M025287
+025288
+M025288
+025289
+M025289
+025290
+M025290
+025291
+M025291
+025292
+M025292
+025293
+M025293
+025294
+M025294
+025295
+M025295
+025296
+M025296
+025297
+M025297
+025298
+M025298
+025299
+M025299
+025300
+M025300
+025301
+M025301
+025302
+M025302
+025303
+M025303
+025304
+M025304
+025305
+M025305
+025306
+M025306
+025307
+M025307
+025308
+M025308
+025309
+M025309
+025310
+M025310
+025311
+M025311
+025312
+M025312
+025313
+M025313
+025314
+M025314
+025315
+M025315
+025316
+M025316
+025317
+M025317
+025318
+M025318
+025319
+M025319
+025320
+M025320
+025321
+M025321
+025322
+M025322
+025323
+M025323
+025324
+M025324
+025325
+M025325
+025326
+M025326
+025327
+M025327
+025328
+M025328
+025329
+M025329
+025330
+M025330
+025331
+M025331
+025332
+M025332
+025333
+M025333
+025334
+M025334
+025335
+M025335
+025336
+M025336
+025337
+M025337
+025338
+M025338
+025339
+M025339
+025371
+M025371
+025372
+M025372
+025373
+M025373
+025374
+M025374
+025375
+M025375
+025377
+M025377
+025378
+M025378
+025379
+M025379
+025380
+M025380
+025386
+M025386
+025387
+M025387
+025388
+M025388
+025389
+M025389
+025390
+M025390
+025391
+M025391
+025392
+M025392
+025393
+M025393
+025394
+M025394
+025395
+M025395
+025396
+M025396
+025397
+M025397
+025398
+M025398
+025399
+M025399
+025400
+M025400
+025401
+M025401
+025402
+M025402
+025403
+M025403
+025404
+M025404
+025405
+M025405
+025406
+M025406
+025407
+M025407
+025408
+M025408
+025433
+M025433
+025434
+M025434
+025435
+M025435
+025436
+M025436
+025437
+M025437
+025438
+M025438
+025439
+M025439
+025440
+M025440
+025441
+M025441
+025442
+M025442
+025443
+M025443
+025444
+M025444
+025445
+M025445
+025446
+M025446
+025447
+M025447
+025448
+M025448
+025449
+M025449
+025450
+M025450
+025451
+M025451
+025452
+M025452
+025453
+M025453
+025454
+M025454
+025455
+M025455
+025456
+M025456
+025457
+M025457
+025458
+M025458
+025459
+M025459
+025460
+M025460
+025461
+M025461
+025462
+M025462
+025463
+M025463
+025464
+M025464
+025465
+M025465
+025466
+M025466
+025467
+M025467
+025468
+M025468
+025469
+M025469
+025470
+M025470
+025471
+M025471
+025472
+M025472
+025473
+M025473
+025474
+M025474
+025475
+M025475
+025476
+M025476
+025477
+M025477
+025478
+M025478
+025479
+M025479
+025480
+M025480
+025481
+M025481
+025482
+M025482
+025483
+M025483
+025484
+M025484
+025485
+M025485
+025486
+M025486
+025487
+M025487
+025488
+M025488
+025489
+M025489
+025490
+M025490
+025491
+M025491
+025492
+M025492
+025493
+M025493
+025494
+M025494
+025495
+M025495
+025496
+M025496
+025497
+M025497
+025498
+M025498
+025499
+M025499
+025500
+M025500
+025512
+M025512
+025513
+M025513
+025514
+M025514
+025515
+M025515
+025516
+M025516
+025517
+M025517
+025518
+M025518
+025519
+M025519
+025552
+M025552
+025553
+M025553
+025554
+M025554
+025555
+M025555
+025556
+M025556
+025557
+M025557
+025558
+M025558
+025559
+M025559
+025560
+M025560
+025561
+M025561
+025562
+M025562
+025563
+M025563
+025564
+M025564
+025565
+M025565
+025566
+M025566
+025567
+M025567
+025568
+M025568
+025569
+M025569
+025570
+M025570
+025571
+M025571
+025572
+M025572
+025573
+M025573
+025574
+M025574
+025575
+M025575
+025576
+M025576
+025577
+M025577
+025578
+M025578
+025579
+M025579
+025580
+M025580
+025581
+M025581
+025582
+M025582
+025583
+M025583
+025584
+M025584
+025585
+M025585
+025586
+M025586
+025587
+M025587
+025588
+M025588
+025589
+M025589
+025590
+M025590
+025591
+M025591
+025592
+M025592
+025593
+M025593
+025594
+M025594
+025595
+M025595
+025596
+M025596
+025597
+M025597
+025598
+M025598
+025599
+M025599
+025601
+M025601
+025602
+M025602
+025603
+M025603
+025604
+M025604
+025605
+M025605
+025606
+M025606
+025607
+M025607
+025608
+M025608
+025609
+M025609
+025610
+M025610
+025611
+M025611
+025612
+M025612
+025613
+M025613
+025614
+M025614
+025615
+M025615
+025616
+M025616
+025617
+M025617
+025618
+M025618
+025619
+M025619
+025620
+M025620
+025621
+M025621
+025622
+M025622
+025623
+M025623
+025624
+M025624
+025625
+M025625
+025626
+M025626
+025627
+M025627
+025628
+M025628
+025629
+M025629
+025630
+M025630
+025631
+M025631
+025632
+M025632
+025633
+M025633
+025634
+M025634
+025635
+M025635
+025636
+M025636
+025637
+M025637
+025638
+M025638
+025639
+M025639
+025640
+M025640
+025641
+M025641
+025642
+M025642
+025643
+M025643
+025644
+M025644
+025645
+M025645
+025646
+M025646
+025647
+M025647
+025648
+M025648
+025649
+M025649
+025650
+M025650
+025651
+M025651
+025652
+M025652
+025653
+M025653
+025654
+M025654
+025655
+M025655
+025656
+M025656
+025657
+M025657
+025658
+M025658
+025659
+M025659
+025660
+M025660
+025661
+M025661
+025662
+M025662
+025663
+M025663
+025664
+M025664
+025665
+M025665
+025666
+M025666
+025667
+M025667
+025668
+M025668
+025669
+M025669
+025670
+M025670
+025671
+M025671
+025672
+M025672
+025673
+M025673
+025674
+M025674
+025675
+M025675
+025676
+M025676
+025677
+M025677
+025678
+M025678
+025679
+M025679
+025680
+M025680
+025681
+M025681
+025682
+M025682
+025683
+M025683
+025684
+M025684
+025685
+M025685
+025686
+M025686
+025687
+M025687
+025688
+M025688
+025689
+M025689
+025707
+M025707
+025708
+M025708
+025709
+M025709
+025710
+M025710
+025711
+M025711
+025712
+M025712
+025713
+M025713
+025714
+M025714
+025715
+M025715
+025716
+M025716
+025717
+M025717
+025718
+M025718
+025719
+M025719
+025720
+M025720
+025721
+M025721
+025722
+M025722
+025723
+M025723
+025724
+M025724
+025725
+M025725
+025726
+M025726
+025727
+M025727
+025728
+M025728
+025729
+M025729
+025730
+M025730
+025731
+M025731
+025732
+M025732
+025733
+M025733
+025734
+M025734
+025735
+M025735
+025736
+M025736
+025737
+M025737
+025738
+M025738
+025739
+M025739
+025740
+M025740
+025741
+M025741
+025742
+M025742
+025743
+M025743
+025744
+M025744
+025745
+M025745
+025746
+M025746
+025747
+M025747
+025748
+M025748
+025749
+M025749
+025750
+M025750
+025751
+M025751
+025752
+M025752
+025753
+M025753
+025754
+M025754
+025755
+M025755
+025756
+M025756
+025757
+M025757
+025758
+M025758
+025759
+M025759
+025760
+M025760
+025761
+M025761
+025762
+M025762
+025763
+M025763
+025764
+M025764
+025765
+M025765
+025766
+M025766
+025767
+M025767
+025768
+M025768
+025774
+M025774
+025775
+M025775
+025776
+M025776
+025777
+M025777
+025778
+M025778
+025779
+M025779
+025780
+M025780
+025781
+M025781
+025782
+M025782
+025783
+M025783
+025784
+M025784
+025785
+M025785
+025786
+M025786
+025787
+M025787
+025788
+M025788
+025789
+M025789
+025790
+M025790
+025791
+M025791
+025792
+M025792
+025793
+M025793
+025794
+M025794
+025795
+M025795
+025796
+M025796
+025797
+M025797
+025798
+M025798
+025799
+M025799
+025800
+M025800
+025801
+M025801
+025802
+M025802
+025803
+M025803
+025804
+M025804
+025805
+M025805
+025806
+M025806
+025807
+M025807
+025808
+M025808
+025809
+M025809
+025810
+M025810
+025817
+M025817
+025818
+M025818
+025819
+M025819
+025820
+M025820
+025821
+M025821
+025822
+M025822
+025831
+M025831
+025832
+M025832
+025833
+M025833
+025834
+M025834
+025835
+M025835
+025836
+M025836
+025837
+M025837
+025838
+M025838
+025839
+M025839
+025840
+M025840
+025841
+M025841
+025842
+M025842
+025843
+M025843
+025844
+M025844
+025845
+M025845
+025846
+M025846
+025847
+M025847
+025848
+M025848
+025849
+M025849
+025850
+M025850
+025851
+M025851
+025852
+M025852
+025853
+M025853
+025854
+M025854
+025855
+M025855
+025856
+M025856
+025857
+M025857
+025858
+M025858
+025859
+M025859
+025860
+M025860
+025861
+M025861
+025862
+M025862
+025863
+M025863
+025864
+M025864
+025865
+M025865
+025866
+M025866
+025879
+M025879
+025880
+M025880
+025881
+M025881
+025882
+M025882
+025889
+M025889
+025890
+M025890
+025891
+M025891
+025892
+M025892
+025893
+M025893
+025894
+M025894
+025895
+M025895
+025896
+M025896
+025897
+M025897
+025898
+M025898
+025899
+M025899
+025900
+M025900
+025901
+M025901
+025902
+M025902
+025903
+M025903
+025904
+M025904
+025905
+M025905
+025906
+M025906
+025907
+M025907
+025927
+M025927
+025928
+M025928
+025929
+M025929
+025930
+M025930
+025931
+M025931
+025932
+M025932
+025933
+M025933
+025934
+M025934
+025935
+M025935
+025936
+M025936
+025937
+M025937
+025939
+M025939
+025940
+M025940
+025941
+M025941
+025942
+M025942
+025943
+M025943
+025944
+M025944
+025945
+M025945
+025946
+M025946
+025947
+M025947
+025948
+M025948
+025949
+M025949
+025950
+M025950
+025951
+M025951
+025952
+M025952
+025953
+M025953
+025954
+M025954
+025955
+M025955
+025956
+M025956
+025957
+M025957
+025958
+M025958
+025959
+M025959
+025960
+M025960
+025961
+M025961
+025962
+M025962
+025963
+M025963
+025964
+M025964
+025965
+M025965
+025966
+M025966
+025968
+M025968
+025969
+M025969
+025970
+M025970
+025971
+M025971
+025972
+M025972
+025973
+M025973
+025974
+M025974
+025975
+M025975
+025976
+M025976
+025977
+M025977
+025978
+M025978
+025979
+M025979
+025980
+M025980
+025981
+M025981
+025982
+M025982
+025983
+M025983
+025984
+M025984
+025985
+M025985
+025986
+M025986
+025987
+M025987
+025988
+M025988
+025989
+M025989
+025990
+M025990
+025991
+M025991
+025992
+M025992
+025993
+M025993
+025994
+M025994
+025995
+M025995
+025996
+M025996
+025997
+M025997
+025998
+M025998
+025999
+M025999
+026000
+M026000
+026004
+M026004
+026005
+M026005
+026006
+M026006
+026007
+M026007
+026008
+M026008
+026009
+M026009
+026010
+M026010
+026011
+M026011
+026012
+M026012
+026013
+M026013
+026014
+M026014
+026015
+M026015
+026016
+M026016
+026017
+M026017
+026018
+M026018
+026019
+M026019
+026020
+M026020
+026021
+M026021
+026022
+M026022
+026023
+M026023
+026024
+M026024
+026030
+M026030
+026031
+M026031
+026032
+M026032
+026033
+M026033
+026034
+M026034
+026035
+M026035
+026036
+M026036
+026037
+M026037
+026038
+M026038
+026039
+M026039
+026040
+M026040
+026041
+M026041
+026042
+M026042
+026043
+M026043
+026044
+M026044
+026045
+M026045
+026061
+M026061
+026062
+M026062
+026063
+M026063
+026064
+M026064
+026065
+M026065
+026066
+M026066
+026067
+M026067
+026068
+M026068
+026069
+M026069
+026070
+M026070
+026071
+M026071
+026072
+M026072
+026073
+M026073
+026074
+M026074
+026075
+M026075
+026076
+M026076
+026077
+M026077
+026078
+M026078
+026079
+M026079
+026081
+M026081
+026082
+M026082
+026083
+M026083
+026084
+M026084
+026085
+M026085
+026086
+M026086
+026087
+M026087
+026088
+M026088
+026089
+M026089
+026090
+M026090
+026091
+M026091
+026092
+M026092
+026093
+M026093
+026094
+M026094
+026095
+M026095
+026096
+M026096
+026097
+M026097
+026098
+M026098
+026099
+M026099
+026100
+M026100
+026101
+M026101
+026102
+M026102
+026103
+M026103
+026104
+M026104
+026105
+M026105
+026110
+M026110
+026111
+M026111
+026112
+M026112
+026113
+M026113
+026114
+M026114
+026115
+M026115
+026116
+M026116
+026117
+M026117
+026118
+M026118
+026119
+M026119
+026120
+M026120
+026121
+M026121
+026122
+M026122
+026123
+M026123
+026124
+M026124
+026125
+M026125
+026126
+M026126
+026127
+M026127
+026128
+M026128
+026129
+M026129
+026130
+M026130
+026131
+M026131
+026132
+M026132
+026133
+M026133
+026134
+M026134
+026135
+M026135
+026136
+M026136
+026137
+M026137
+026138
+M026138
+026139
+M026139
+026140
+M026140
+026141
+M026141
+026142
+M026142
+026143
+M026143
+026144
+M026144
+026145
+M026145
+026146
+M026146
+026147
+M026147
+026148
+M026148
+026149
+M026149
+026150
+M026150
+026151
+M026151
+026152
+M026152
+026153
+M026153
+026154
+M026154
+026155
+M026155
+026156
+M026156
+026157
+M026157
+026158
+M026158
+026159
+M026159
+026160
+M026160
+026161
+M026161
+026162
+M026162
+026163
+M026163
+026164
+M026164
+026165
+M026165
+026166
+M026166
+026207
+M026207
+026208
+M026208
+026209
+M026209
+026210
+M026210
+026211
+M026211
+026212
+M026212
+026213
+M026213
+026214
+M026214
+026215
+M026215
+026216
+M026216
+026217
+M026217
+026218
+M026218
+026219
+M026219
+026220
+M026220
+026221
+M026221
+026222
+M026222
+026223
+M026223
+026224
+M026224
+026225
+M026225
+026226
+M026226
+026227
+M026227
+026228
+M026228
+026229
+M026229
+026230
+M026230
+026231
+M026231
+026232
+M026232
+026233
+M026233
+026234
+M026234
+026235
+M026235
+026236
+M026236
+026237
+M026237
+026238
+M026238
+026239
+M026239
+026240
+M026240
+026241
+M026241
+026242
+M026242
+026243
+M026243
+026244
+M026244
+026245
+M026245
+026246
+M026246
+026254
+M026254
+026255
+M026255
+026261
+M026261
+026262
+M026262
+026263
+M026263
+026264
+M026264
+026265
+M026265
+026266
+M026266
+026267
+M026267
+026268
+M026268
+026269
+M026269
+026270
+M026270
+026271
+M026271
+026272
+M026272
+026273
+M026273
+026274
+M026274
+026276
+M026276
+026277
+M026277
+026278
+M026278
+026279
+M026279
+026290
+M026290
+026291
+M026291
+026292
+M026292
+026293
+M026293
+026294
+M026294
+026295
+M026295
+026296
+M026296
+026297
+M026297
+026298
+M026298
+026299
+M026299
+026300
+M026300
+026301
+M026301
+026302
+M026302
+026303
+M026303
+026304
+M026304
+026305
+M026305
+026306
+M026306
+026307
+M026307
+026308
+M026308
+026309
+M026309
+026310
+M026310
+026311
+M026311
+026312
+M026312
+026313
+M026313
+026314
+M026314
+026315
+M026315
+026316
+M026316
+026317
+M026317
+026318
+M026318
+026319
+M026319
+026320
+M026320
+026321
+M026321
+026322
+M026322
+026323
+M026323
+026324
+M026324
+026325
+M026325
+026326
+M026326
+026327
+M026327
+026328
+M026328
+026335
+M026335
+026336
+M026336
+026337
+M026337
+026338
+M026338
+026339
+M026339
+026367
+M026367
+026368
+M026368
+026369
+M026369
+026370
+M026370
+026371
+M026371
+026372
+M026372
+026373
+M026373
+026374
+M026374
+026375
+M026375
+026376
+M026376
+026377
+M026377
+026378
+M026378
+026379
+M026379
+026380
+M026380
+026386
+M026386
+026387
+M026387
+026388
+M026388
+026389
+M026389
+026390
+M026390
+026391
+M026391
+026392
+M026392
+026393
+M026393
+026394
+M026394
+026395
+M026395
+026396
+M026396
+026397
+M026397
+026398
+M026398
+026399
+M026399
+026400
+M026400
+026401
+M026401
+026402
+M026402
+026403
+M026403
+026404
+M026404
+026405
+M026405
+026406
+M026406
+026407
+M026407
+026408
+M026408
+026409
+M026409
+026410
+M026410
+026411
+M026411
+026412
+M026412
+026413
+M026413
+026414
+M026414
+026415
+M026415
+026416
+M026416
+026417
+M026417
+026418
+M026418
+026419
+M026419
+026420
+M026420
+026421
+M026421
+026422
+M026422
+026423
+M026423
+026424
+M026424
+026425
+M026425
+026426
+M026426
+026427
+M026427
+026428
+M026428
+026429
+M026429
+026430
+M026430
+026431
+M026431
+026432
+M026432
+026433
+M026433
+026434
+M026434
+026435
+M026435
+026436
+M026436
+026483
+M026483
+026484
+M026484
+026485
+M026485
+026486
+M026486
+026487
+M026487
+026488
+M026488
+026489
+M026489
+026490
+M026490
+026491
+M026491
+026492
+M026492
+026499
+M026499
+026500
+M026500
+026501
+M026501
+026502
+M026502
+026503
+M026503
+026504
+M026504
+026505
+M026505
+026506
+M026506
+026507
+M026507
+026508
+M026508
+026509
+M026509
+026511
+M026511
+026512
+M026512
+026513
+M026513
+026514
+M026514
+026515
+M026515
+026516
+M026516
+026517
+M026517
+026518
+M026518
+026519
+M026519
+026520
+M026520
+026521
+M026521
+026522
+M026522
+026523
+M026523
+026524
+M026524
+026525
+M026525
+026526
+M026526
+026527
+M026527
+026528
+M026528
+026529
+M026529
+026530
+M026530
+026531
+M026531
+026532
+M026532
+026533
+M026533
+026534
+M026534
+026535
+M026535
+026536
+M026536
+026552
+M026552
+026553
+M026553
+026554
+M026554
+026555
+M026555
+026556
+M026556
+026564
+M026564
+026565
+M026565
+026566
+M026566
+026567
+M026567
+026568
+M026568
+026569
+M026569
+026570
+M026570
+026571
+M026571
+026572
+M026572
+026573
+M026573
+026574
+M026574
+026575
+M026575
+026576
+M026576
+026577
+M026577
+026586
+M026586
+026587
+M026587
+026588
+M026588
+026589
+M026589
+026590
+M026590
+026591
+M026591
+026592
+M026592
+026593
+M026593
+026594
+M026594
+026595
+M026595
+026596
+M026596
+026597
+M026597
+026598
+M026598
+026599
+M026599
+026600
+M026600
+026601
+M026601
+026602
+M026602
+026603
+M026603
+026604
+M026604
+026605
+M026605
+026606
+M026606
+026607
+M026607
+026608
+M026608
+026609
+M026609
+026610
+M026610
+026611
+M026611
+026612
+M026612
+026613
+M026613
+026614
+M026614
+026615
+M026615
+026616
+M026616
+026617
+M026617
+026618
+M026618
+026619
+M026619
+026620
+M026620
+026621
+M026621
+026622
+M026622
+026623
+M026623
+026624
+M026624
+026625
+M026625
+026626
+M026626
+026627
+M026627
+026628
+M026628
+026629
+M026629
+026630
+M026630
+026631
+M026631
+026632
+M026632
+026633
+M026633
+026634
+M026634
+026635
+M026635
+026636
+M026636
+026637
+M026637
+026638
+M026638
+026639
+M026639
+026640
+M026640
+026641
+M026641
+026642
+M026642
+026643
+M026643
+026644
+M026644
+026645
+M026645
+026646
+M026646
+026647
+M026647
+026648
+M026648
+026649
+M026649
+026650
+M026650
+026651
+M026651
+026652
+M026652
+026653
+M026653
+026654
+M026654
+026655
+M026655
+026656
+M026656
+026657
+M026657
+026666
+M026666
+026667
+M026667
+026668
+M026668
+026669
+M026669
+026670
+M026670
+026671
+M026671
+026672
+M026672
+026673
+M026673
+026674
+M026674
+026675
+M026675
+026676
+M026676
+026677
+M026677
+026678
+M026678
+026728
+M026728
+026729
+M026729
+026730
+M026730
+026731
+M026731
+026732
+M026732
+026733
+M026733
+026734
+M026734
+026735
+M026735
+026736
+M026736
+026737
+M026737
+026745
+M026745
+026746
+M026746
+026747
+M026747
+026748
+M026748
+026749
+M026749
+026750
+M026750
+026751
+M026751
+026752
+M026752
+026753
+M026753
+026754
+M026754
+026755
+M026755
+026757
+M026757
+026758
+M026758
+026759
+M026759
+026760
+M026760
+026761
+M026761
+026762
+M026762
+026763
+M026763
+026764
+M026764
+026765
+M026765
+026766
+M026766
+026767
+M026767
+026768
+M026768
+026769
+M026769
+026770
+M026770
+026771
+M026771
+026772
+M026772
+026773
+M026773
+026774
+M026774
+026775
+M026775
+026776
+M026776
+026777
+M026777
+026778
+M026778
+026779
+M026779
+026780
+M026780
+026781
+M026781
+026782
+M026782
+026783
+M026783
+026784
+M026784
+026785
+M026785
+026786
+M026786
+026787
+M026787
+026788
+M026788
+026789
+M026789
+026790
+M026790
+026791
+M026791
+026792
+M026792
+026793
+M026793
+026794
+M026794
+026795
+M026795
+026796
+M026796
+026797
+M026797
+026798
+M026798
+026799
+M026799
+026800
+M026800
+026801
+M026801
+026802
+M026802
+026803
+M026803
+026804
+M026804
+026805
+M026805
+026806
+M026806
+026807
+M026807
+026808
+M026808
+026809
+M026809
+026810
+M026810
+026811
+M026811
+026812
+M026812
+026813
+M026813
+026814
+M026814
+026815
+M026815
+026816
+M026816
+026817
+M026817
+026818
+M026818
+026819
+M026819
+026820
+M026820
+026821
+M026821
+026822
+M026822
+026823
+M026823
+026824
+M026824
+026825
+M026825
+026826
+M026826
+026827
+M026827
+026828
+M026828
+026829
+M026829
+026830
+M026830
+026831
+M026831
+026832
+M026832
+026833
+M026833
+026834
+M026834
+026835
+M026835
+026838
+M026838
+026839
+M026839
+026840
+M026840
+026841
+M026841
+026842
+M026842
+026843
+M026843
+026844
+M026844
+026845
+M026845
+026846
+M026846
+026847
+M026847
+026848
+M026848
+026849
+M026849
+026850
+M026850
+026851
+M026851
+026852
+M026852
+026853
+M026853
+026854
+M026854
+026855
+M026855
+026856
+M026856
+026857
+M026857
+026858
+M026858
+026859
+M026859
+026860
+M026860
+026861
+M026861
+026862
+M026862
+026863
+M026863
+026864
+M026864
+026865
+M026865
+026866
+M026866
+026867
+M026867
+026868
+M026868
+026869
+M026869
+026870
+M026870
+026871
+M026871
+026872
+M026872
+026873
+M026873
+026874
+M026874
+026875
+M026875
+026876
+M026876
+026877
+M026877
+026878
+M026878
+026879
+M026879
+026880
+M026880
+026881
+M026881
+026882
+M026882
+026883
+M026883
+026884
+M026884
+026885
+M026885
+026886
+M026886
+026887
+M026887
+026888
+M026888
+026889
+M026889
+026890
+M026890
+026892
+M026892
+026893
+M026893
+026894
+M026894
+026895
+M026895
+026896
+M026896
+026897
+M026897
+026898
+M026898
+026899
+M026899
+026900
+M026900
+026901
+M026901
+026902
+M026902
+026903
+M026903
+026904
+M026904
+026905
+M026905
+026906
+M026906
+026907
+M026907
+026908
+M026908
+026909
+M026909
+026910
+M026910
+026911
+M026911
+026912
+M026912
+026913
+M026913
+026914
+M026914
+026915
+M026915
+026934
+M026934
+026935
+M026935
+026936
+M026936
+026937
+M026937
+026938
+M026938
+026939
+M026939
+026940
+M026940
+026941
+M026941
+026942
+M026942
+026943
+M026943
+026944
+M026944
+026945
+M026945
+026946
+M026946
+026947
+M026947
+026948
+M026948
+026949
+M026949
+026963
+M026963
+026964
+M026964
+026965
+M026965
+026966
+M026966
+026967
+M026967
+026968
+M026968
+026969
+M026969
+026970
+M026970
+026971
+M026971
+026972
+M026972
+026973
+M026973
+026974
+M026974
+026975
+M026975
+026976
+M026976
+026977
+M026977
+026978
+M026978
+026979
+M026979
+026980
+M026980
+026981
+M026981
+026982
+M026982
+026983
+M026983
+026984
+M026984
+026992
+M026992
+026993
+M026993
+026994
+M026994
+026995
+M026995
+026996
+M026996
+026997
+M026997
+026998
+M026998
+026999
+M026999
+027000
+M027000
+027001
+M027001
+027002
+M027002
+027003
+M027003
+027004
+M027004
+027005
+M027005
+027006
+M027006
+027007
+M027007
+027008
+M027008
+027009
+M027009
+027010
+M027010
+027011
+M027011
+027012
+M027012
+027013
+M027013
+027014
+M027014
+027015
+M027015
+027016
+M027016
+027017
+M027017
+027018
+M027018
+027019
+M027019
+027020
+M027020
+027028
+M027028
+027029
+M027029
+027030
+M027030
+027031
+M027031
+027032
+M027032
+027033
+M027033
+027034
+M027034
+027035
+M027035
+027036
+M027036
+027037
+M027037
+027038
+M027038
+027039
+M027039
+027040
+M027040
+027041
+M027041
+027042
+M027042
+027043
+M027043
+027044
+M027044
+027045
+M027045
+027046
+M027046
+027047
+M027047
+027048
+M027048
+027049
+M027049
+027050
+M027050
+027051
+M027051
+027052
+M027052
+027053
+M027053
+027054
+M027054
+027055
+M027055
+027056
+M027056
+027057
+M027057
+027058
+M027058
+027059
+M027059
+027060
+M027060
+027061
+M027061
+027062
+M027062
+027063
+M027063
+027064
+M027064
+027065
+M027065
+027066
+M027066
+027067
+M027067
+027068
+M027068
+027069
+M027069
+027070
+M027070
+027071
+M027071
+027072
+M027072
+027073
+M027073
+027074
+M027074
+027075
+M027075
+027076
+M027076
+027077
+M027077
+027078
+M027078
+027079
+M027079
+027080
+M027080
+027081
+M027081
+027082
+M027082
+027083
+M027083
+027084
+M027084
+027085
+M027085
+027089
+M027089
+027090
+M027090
+027091
+M027091
+027092
+M027092
+027093
+M027093
+027094
+M027094
+027095
+M027095
+027096
+M027096
+027097
+M027097
+027098
+M027098
+027099
+M027099
+027100
+M027100
+027101
+M027101
+027102
+M027102
+027103
+M027103
+027104
+M027104
+027105
+M027105
+027106
+M027106
+027107
+M027107
+027108
+M027108
+027109
+M027109
+027110
+M027110
+027111
+M027111
+027112
+M027112
+027113
+M027113
+027114
+M027114
+027115
+M027115
+027116
+M027116
+027117
+M027117
+027118
+M027118
+027119
+M027119
+027120
+M027120
+027121
+M027121
+027122
+M027122
+027123
+M027123
+027124
+M027124
+027125
+M027125
+027126
+M027126
+027127
+M027127
+027128
+M027128
+027129
+M027129
+027130
+M027130
+027131
+M027131
+027132
+M027132
+027133
+M027133
+027134
+M027134
+027135
+M027135
+027136
+M027136
+027137
+M027137
+027138
+M027138
+027139
+M027139
+027140
+M027140
+027141
+M027141
+027142
+M027142
+027143
+M027143
+027144
+M027144
+027145
+M027145
+027146
+M027146
+027147
+M027147
+027179
+M027179
+027180
+M027180
+027181
+M027181
+027182
+M027182
+027183
+M027183
+027184
+M027184
+027185
+M027185
+027186
+M027186
+027187
+M027187
+027188
+M027188
+027189
+M027189
+027190
+M027190
+027191
+M027191
+027192
+M027192
+027193
+M027193
+027194
+M027194
+027195
+M027195
+027196
+M027196
+027197
+M027197
+027198
+M027198
+027199
+M027199
+027200
+M027200
+027201
+M027201
+027202
+M027202
+027203
+M027203
+027204
+M027204
+027205
+M027205
+027206
+M027206
+027207
+M027207
+027208
+M027208
+027209
+M027209
+027210
+M027210
+027211
+M027211
+027212
+M027212
+027213
+M027213
+027214
+M027214
+027215
+M027215
+027216
+M027216
+027217
+M027217
+027218
+M027218
+027219
+M027219
+027220
+M027220
+027221
+M027221
+027222
+M027222
+027223
+M027223
+027224
+M027224
+027225
+M027225
+027226
+M027226
+027227
+M027227
+027228
+M027228
+027229
+M027229
+027230
+M027230
+027231
+M027231
+027237
+M027237
+027238
+M027238
+027239
+M027239
+027240
+M027240
+027241
+M027241
+027242
+M027242
+027243
+M027243
+027244
+M027244
+027245
+M027245
+027246
+M027246
+027247
+M027247
+027248
+M027248
+027249
+M027249
+027250
+M027250
+027251
+M027251
+027252
+M027252
+027277
+M027277
+027278
+M027278
+027279
+M027279
+027280
+M027280
+027281
+M027281
+027282
+M027282
+027283
+M027283
+027284
+M027284
+027285
+M027285
+027286
+M027286
+027287
+M027287
+027288
+M027288
+027289
+M027289
+027290
+M027290
+027291
+M027291
+027292
+M027292
+027293
+M027293
+027294
+M027294
+027295
+M027295
+027296
+M027296
+027297
+M027297
+027298
+M027298
+027299
+M027299
+027300
+M027300
+027301
+M027301
+027302
+M027302
+027303
+M027303
+027304
+M027304
+027305
+M027305
+027306
+M027306
+027307
+M027307
+027308
+M027308
+027309
+M027309
+027310
+M027310
+027311
+M027311
+027312
+M027312
+027313
+M027313
+027314
+M027314
+027315
+M027315
+027316
+M027316
+027317
+M027317
+027318
+M027318
+027319
+M027319
+027320
+M027320
+027321
+M027321
+027322
+M027322
+027323
+M027323
+027324
+M027324
+027325
+M027325
+027326
+M027326
+027327
+M027327
+027328
+M027328
+027329
+M027329
+027381
+M027381
+027382
+M027382
+027383
+M027383
+027384
+M027384
+027385
+M027385
+027386
+M027386
+027387
+M027387
+027388
+M027388
+027389
+M027389
+027390
+M027390
+027391
+M027391
+027392
+M027392
+027393
+M027393
+027394
+M027394
+027415
+M027415
+027416
+M027416
+027417
+M027417
+027418
+M027418
+027419
+M027419
+027420
+M027420
+027421
+M027421
+027422
+M027422
+027423
+M027423
+027424
+M027424
+027425
+M027425
+027426
+M027426
+027427
+M027427
+027428
+M027428
+027429
+M027429
+027430
+M027430
+027431
+M027431
+027432
+M027432
+027433
+M027433
+027434
+M027434
+027435
+M027435
+027436
+M027436
+027437
+M027437
+027438
+M027438
+027439
+M027439
+027440
+M027440
+027441
+M027441
+027442
+M027442
+027443
+M027443
+027444
+M027444
+027445
+M027445
+027446
+M027446
+027447
+M027447
+027448
+M027448
+027449
+M027449
+027450
+M027450
+027451
+M027451
+027452
+M027452
+027453
+M027453
+027454
+M027454
+027455
+M027455
+027456
+M027456
+027457
+M027457
+027458
+M027458
+027459
+M027459
+027460
+M027460
+027461
+M027461
+027464
+M027464
+027465
+M027465
+027466
+M027466
+027467
+M027467
+027468
+M027468
+027478
+M027478
+027479
+M027479
+027480
+M027480
+027481
+M027481
+027482
+M027482
+027483
+M027483
+027484
+M027484
+027485
+M027485
+027486
+M027486
+027487
+M027487
+027488
+M027488
+027489
+M027489
+027490
+M027490
+027491
+M027491
+027492
+M027492
+027493
+M027493
+027494
+M027494
+027495
+M027495
+027496
+M027496
+027497
+M027497
+027498
+M027498
+027499
+M027499
+027500
+M027500
+027501
+M027501
+027502
+M027502
+027503
+M027503
+027504
+M027504
+027505
+M027505
+027506
+M027506
+027507
+M027507
+027508
+M027508
+027509
+M027509
+027510
+M027510
+027511
+M027511
+027512
+M027512
+027513
+M027513
+027514
+M027514
+027515
+M027515
+027516
+M027516
+027517
+M027517
+027518
+M027518
+027524
+M027524
+027525
+M027525
+027526
+M027526
+027527
+M027527
+027528
+M027528
+027529
+M027529
+027530
+M027530
+027531
+M027531
+027532
+M027532
+027533
+M027533
+027534
+M027534
+027535
+M027535
+027536
+M027536
+027537
+M027537
+027538
+M027538
+027539
+M027539
+027540
+M027540
+027541
+M027541
+027575
+M027575
+027576
+M027576
+027577
+M027577
+027578
+M027578
+027579
+M027579
+027591
+M027591
+027592
+M027592
+027593
+M027593
+027594
+M027594
+027595
+M027595
+027596
+M027596
+027597
+M027597
+027598
+M027598
+027599
+M027599
+027600
+M027600
+027601
+M027601
+027602
+M027602
+027603
+M027603
+027604
+M027604
+027605
+M027605
+027606
+M027606
+027607
+M027607
+027608
+M027608
+027609
+M027609
+027610
+M027610
+027611
+M027611
+027647
+M027647
+027648
+M027648
+027649
+M027649
+027650
+M027650
+027651
+M027651
+027652
+M027652
+027653
+M027653
+027654
+M027654
+027655
+M027655
+027656
+M027656
+027657
+M027657
+027658
+M027658
+027659
+M027659
+027660
+M027660
+027661
+M027661
+027662
+M027662
+027663
+M027663
+027664
+M027664
+027665
+M027665
+027666
+M027666
+027667
+M027667
+027668
+M027668
+027669
+M027669
+027670
+M027670
+027671
+M027671
+027672
+M027672
+027673
+M027673
+027674
+M027674
+027675
+M027675
+027676
+M027676
+027677
+M027677
+027678
+M027678
+027679
+M027679
+027680
+M027680
+027681
+M027681
+027682
+M027682
+027683
+M027683
+027684
+M027684
+027685
+M027685
+027686
+M027686
+027687
+M027687
+027688
+M027688
+027689
+M027689
+027690
+M027690
+027691
+M027691
+027692
+M027692
+027693
+M027693
+027694
+M027694
+027695
+M027695
+027696
+M027696
+027697
+M027697
+027698
+M027698
+027699
+M027699
+027700
+M027700
+027701
+M027701
+027702
+M027702
+027703
+M027703
+027704
+M027704
+027705
+M027705
+027706
+M027706
+027707
+M027707
+027708
+M027708
+027709
+M027709
+027710
+M027710
+027711
+M027711
+027712
+M027712
+027713
+M027713
+027714
+M027714
+027715
+M027715
+027716
+M027716
+027717
+M027717
+027718
+M027718
+027719
+M027719
+027720
+M027720
+027728
+M027728
+027729
+M027729
+027730
+M027730
+027731
+M027731
+027732
+M027732
+027733
+M027733
+027734
+M027734
+027735
+M027735
+027736
+M027736
+027737
+M027737
+027738
+M027738
+027739
+M027739
+027740
+M027740
+027741
+M027741
+027742
+M027742
+027743
+M027743
+027744
+M027744
+027745
+M027745
+027746
+M027746
+027747
+M027747
+027748
+M027748
+027749
+M027749
+027750
+M027750
+027751
+M027751
+027752
+M027752
+027753
+M027753
+027754
+M027754
+027755
+M027755
+027756
+M027756
+027757
+M027757
+027758
+M027758
+027759
+M027759
+027760
+M027760
+027761
+M027761
+027762
+M027762
+027774
+M027774
+027775
+M027775
+027776
+M027776
+027777
+M027777
+027778
+M027778
+027779
+M027779
+027780
+M027780
+027781
+M027781
+027782
+M027782
+027783
+M027783
+027784
+M027784
+027785
+M027785
+027786
+M027786
+027787
+M027787
+027788
+M027788
+027789
+M027789
+027790
+M027790
+027791
+M027791
+027792
+M027792
+027793
+M027793
+027794
+M027794
+027795
+M027795
+027796
+M027796
+027797
+M027797
+027798
+M027798
+027799
+M027799
+027800
+M027800
+027801
+M027801
+027802
+M027802
+027803
+M027803
+027804
+M027804
+027805
+M027805
+027806
+M027806
+027807
+M027807
+027808
+M027808
+027809
+M027809
+027810
+M027810
+027811
+M027811
+027812
+M027812
+027813
+M027813
+027814
+M027814
+027815
+M027815
+027816
+M027816
+027817
+M027817
+027818
+M027818
+027819
+M027819
+027820
+M027820
+027821
+M027821
+027822
+M027822
+027832
+M027832
+027833
+M027833
+027834
+M027834
+027835
+M027835
+027836
+M027836
+027837
+M027837
+027838
+M027838
+027839
+M027839
+027840
+M027840
+027841
+M027841
+027842
+M027842
+027843
+M027843
+027844
+M027844
+027845
+M027845
+027846
+M027846
+027847
+M027847
+027848
+M027848
+027849
+M027849
+027850
+M027850
+027851
+M027851
+027852
+M027852
+027853
+M027853
+027854
+M027854
+027855
+M027855
+027856
+M027856
+027857
+M027857
+027858
+M027858
+027859
+M027859
+027860
+M027860
+027861
+M027861
+027862
+M027862
+027863
+M027863
+027864
+M027864
+027865
+M027865
+027866
+M027866
+027867
+M027867
+027868
+M027868
+027869
+M027869
+027870
+M027870
+027871
+M027871
+027872
+M027872
+027873
+M027873
+027874
+M027874
+027875
+M027875
+027882
+M027882
+027883
+M027883
+027884
+M027884
+027885
+M027885
+027886
+M027886
+027887
+M027887
+027888
+M027888
+027889
+M027889
+027890
+M027890
+027891
+M027891
+027892
+M027892
+027893
+M027893
+027894
+M027894
+027895
+M027895
+027896
+M027896
+027897
+M027897
+027898
+M027898
+027899
+M027899
+027900
+M027900
+027901
+M027901
+027902
+M027902
+027903
+M027903
+027904
+M027904
+027905
+M027905
+027906
+M027906
+027907
+M027907
+027908
+M027908
+027909
+M027909
+027910
+M027910
+027911
+M027911
+027923
+M027923
+027924
+M027924
+027925
+M027925
+027926
+M027926
+027927
+M027927
+027928
+M027928
+027929
+M027929
+027930
+M027930
+027931
+M027931
+027932
+M027932
+027933
+M027933
+027934
+M027934
+027935
+M027935
+027936
+M027936
+027937
+M027937
+027938
+M027938
+027939
+M027939
+027940
+M027940
+027941
+M027941
+027942
+M027942
+027943
+M027943
+027944
+M027944
+027945
+M027945
+027946
+M027946
+027947
+M027947
+027948
+M027948
+027949
+M027949
+027950
+M027950
+027951
+M027951
+027952
+M027952
+027953
+M027953
+027954
+M027954
+027955
+M027955
+027956
+M027956
+027957
+M027957
+027958
+M027958
+027959
+M027959
+027960
+M027960
+027961
+M027961
+027962
+M027962
+027963
+M027963
+027964
+M027964
+027965
+M027965
+027966
+M027966
+027967
+M027967
+027968
+M027968
+027969
+M027969
+027970
+M027970
+027971
+M027971
+027972
+M027972
+027973
+M027973
+027974
+M027974
+027975
+M027975
+027976
+M027976
+027977
+M027977
+027978
+M027978
+027979
+M027979
+027980
+M027980
+027981
+M027981
+027982
+M027982
+027983
+M027983
+027984
+M027984
+027985
+M027985
+027986
+M027986
+027987
+M027987
+027988
+M027988
+027989
+M027989
+027990
+M027990
+027991
+M027991
+027992
+M027992
+027993
+M027993
+027994
+M027994
+027995
+M027995
+027996
+M027996
+027997
+M027997
+027998
+M027998
+027999
+M027999
+028000
+M028000
+028001
+M028001
+028002
+M028002
+028003
+M028003
+028004
+M028004
+028005
+M028005
+028006
+M028006
+028007
+M028007
+028008
+M028008
+028009
+M028009
+028010
+M028010
+028011
+M028011
+028012
+M028012
+028013
+M028013
+028014
+M028014
+028015
+M028015
+028016
+M028016
+028017
+M028017
+028021
+M028021
+028022
+M028022
+028023
+M028023
+028024
+M028024
+028025
+M028025
+028026
+M028026
+028027
+M028027
+028028
+M028028
+028029
+M028029
+028030
+M028030
+028031
+M028031
+028032
+M028032
+028033
+M028033
+028034
+M028034
+028035
+M028035
+028036
+M028036
+028037
+M028037
+028038
+M028038
+028039
+M028039
+028040
+M028040
+028041
+M028041
+028042
+M028042
+028043
+M028043
+028044
+M028044
+028045
+M028045
+028046
+M028046
+028047
+M028047
+028048
+M028048
+028053
+M028053
+028054
+M028054
+028055
+M028055
+028056
+M028056
+028057
+M028057
+028058
+M028058
+028059
+M028059
+028060
+M028060
+028061
+M028061
+028062
+M028062
+028063
+M028063
+028064
+M028064
+028065
+M028065
+028066
+M028066
+028067
+M028067
+028068
+M028068
+028074
+M028074
+028075
+M028075
+028076
+M028076
+028077
+M028077
+028078
+M028078
+028079
+M028079
+028080
+M028080
+028081
+M028081
+028082
+M028082
+028083
+M028083
+028084
+M028084
+028085
+M028085
+028086
+M028086
+028087
+M028087
+028088
+M028088
+028089
+M028089
+028090
+M028090
+028091
+M028091
+028092
+M028092
+028093
+M028093
+028094
+M028094
+028095
+M028095
+028096
+M028096
+028097
+M028097
+028098
+M028098
+028099
+M028099
+028100
+M028100
+028101
+M028101
+028102
+M028102
+028103
+M028103
+028104
+M028104
+028105
+M028105
+028106
+M028106
+028107
+M028107
+028108
+M028108
+028109
+M028109
+028110
+M028110
+028111
+M028111
+028112
+M028112
+028113
+M028113
+028114
+M028114
+028115
+M028115
+028116
+M028116
+028117
+M028117
+028118
+M028118
+028119
+M028119
+028120
+M028120
+028124
+M028124
+028125
+M028125
+028126
+M028126
+028127
+M028127
+028128
+M028128
+028129
+M028129
+028130
+M028130
+028131
+M028131
+028132
+M028132
+028133
+M028133
+028134
+M028134
+028135
+M028135
+028136
+M028136
+028137
+M028137
+028138
+M028138
+028139
+M028139
+028140
+M028140
+028141
+M028141
+028142
+M028142
+028143
+M028143
+028144
+M028144
+028145
+M028145
+028146
+M028146
+028147
+M028147
+028148
+M028148
+028149
+M028149
+028150
+M028150
+028151
+M028151
+028152
+M028152
+028153
+M028153
+028154
+M028154
+028155
+M028155
+028156
+M028156
+028157
+M028157
+028158
+M028158
+028159
+M028159
+028160
+M028160
+028161
+M028161
+028162
+M028162
+028163
+M028163
+028164
+M028164
+028165
+M028165
+028166
+M028166
+028167
+M028167
+028168
+M028168
+028169
+M028169
+028182
+M028182
+028183
+M028183
+028184
+M028184
+028185
+M028185
+028186
+M028186
+028187
+M028187
+028188
+M028188
+028189
+M028189
+028190
+M028190
+028191
+M028191
+028192
+M028192
+028193
+M028193
+028194
+M028194
+028195
+M028195
+028196
+M028196
+028197
+M028197
+028198
+M028198
+028199
+M028199
+028200
+M028200
+028201
+M028201
+028202
+M028202
+028203
+M028203
+028204
+M028204
+028205
+M028205
+028206
+M028206
+028207
+M028207
+028208
+M028208
+028209
+M028209
+028210
+M028210
+028211
+M028211
+028212
+M028212
+028213
+M028213
+028214
+M028214
+028215
+M028215
+028216
+M028216
+028217
+M028217
+028218
+M028218
+028219
+M028219
+028220
+M028220
+028221
+M028221
+028222
+M028222
+028223
+M028223
+028238
+M028238
+028239
+M028239
+028240
+M028240
+028241
+M028241
+028242
+M028242
+028243
+M028243
+028244
+M028244
+028245
+M028245
+028246
+M028246
+028247
+M028247
+028248
+M028248
+028249
+M028249
+028250
+M028250
+028251
+M028251
+028252
+M028252
+028253
+M028253
+028254
+M028254
+028255
+M028255
+028256
+M028256
+028257
+M028257
+028258
+M028258
+028259
+M028259
+028260
+M028260
+028261
+M028261
+028262
+M028262
+028263
+M028263
+028264
+M028264
+028265
+M028265
+028266
+M028266
+028267
+M028267
+028268
+M028268
+028269
+M028269
+028270
+M028270
+028271
+M028271
+028272
+M028272
+028274
+M028274
+028275
+M028275
+028276
+M028276
+028277
+M028277
+028278
+M028278
+028279
+M028279
+028280
+M028280
+028281
+M028281
+028282
+M028282
+028283
+M028283
+028303
+M028303
+028304
+M028304
+028305
+M028305
+028306
+M028306
+028307
+M028307
+028308
+M028308
+028309
+M028309
+028310
+M028310
+028311
+M028311
+028323
+M028323
+028324
+M028324
+028325
+M028325
+028326
+M028326
+028327
+M028327
+028328
+M028328
+028329
+M028329
+028330
+M028330
+028331
+M028331
+028332
+M028332
+028333
+M028333
+028334
+M028334
+028335
+M028335
+028336
+M028336
+028337
+M028337
+028338
+M028338
+028339
+M028339
+028340
+M028340
+028341
+M028341
+028342
+M028342
+028343
+M028343
+028344
+M028344
+028345
+M028345
+028346
+M028346
+028347
+M028347
+028348
+M028348
+028349
+M028349
+028350
+M028350
+028351
+M028351
+028352
+M028352
+028353
+M028353
+028354
+M028354
+028355
+M028355
+028356
+M028356
+028357
+M028357
+028358
+M028358
+028368
+M028368
+028369
+M028369
+028370
+M028370
+028371
+M028371
+028372
+M028372
+028373
+M028373
+028374
+M028374
+028375
+M028375
+028376
+M028376
+028377
+M028377
+028378
+M028378
+028379
+M028379
+028380
+M028380
+028381
+M028381
+028382
+M028382
+028389
+M028389
+028390
+M028390
+028391
+M028391
+028392
+M028392
+028393
+M028393
+028394
+M028394
+028395
+M028395
+028396
+M028396
+028397
+M028397
+028398
+M028398
+028399
+M028399
+028400
+M028400
+028401
+M028401
+028402
+M028402
+028403
+M028403
+028404
+M028404
+028405
+M028405
+028406
+M028406
+028407
+M028407
+028408
+M028408
+028409
+M028409
+028410
+M028410
+028411
+M028411
+028412
+M028412
+028413
+M028413
+028414
+M028414
+028415
+M028415
+028416
+M028416
+028417
+M028417
+028418
+M028418
+028419
+M028419
+028420
+M028420
+028421
+M028421
+028422
+M028422
+028423
+M028423
+028424
+M028424
+028460
+M028460
+028461
+M028461
+028462
+M028462
+028463
+M028463
+028464
+M028464
+028465
+M028465
+028466
+M028466
+028467
+M028467
+028468
+M028468
+028469
+M028469
+028470
+M028470
+028471
+M028471
+028472
+M028472
+028473
+M028473
+028474
+M028474
+028475
+M028475
+028476
+M028476
+028477
+M028477
+028478
+M028478
+028479
+M028479
+028493
+M028493
+028494
+M028494
+028495
+M028495
+028496
+M028496
+028497
+M028497
+028498
+M028498
+028499
+M028499
+028500
+M028500
+028501
+M028501
+028502
+M028502
+028503
+M028503
+028504
+M028504
+028505
+M028505
+028506
+M028506
+028507
+M028507
+028508
+M028508
+028509
+M028509
+028510
+M028510
+028511
+M028511
+028512
+M028512
+028513
+M028513
+028514
+M028514
+028515
+M028515
+028516
+M028516
+028517
+M028517
+028518
+M028518
+028519
+M028519
+028520
+M028520
+028521
+M028521
+028522
+M028522
+028523
+M028523
+028524
+M028524
+028525
+M028525
+028526
+M028526
+028527
+M028527
+028528
+M028528
+028529
+M028529
+028534
+M028534
+028535
+M028535
+028536
+M028536
+028537
+M028537
+028538
+M028538
+028539
+M028539
+028540
+M028540
+028541
+M028541
+028542
+M028542
+028543
+M028543
+028544
+M028544
+028545
+M028545
+028546
+M028546
+028551
+M028551
+028552
+M028552
+028553
+M028553
+028554
+M028554
+028555
+M028555
+028556
+M028556
+028557
+M028557
+028558
+M028558
+028559
+M028559
+028560
+M028560
+028561
+M028561
+028562
+M028562
+028563
+M028563
+028564
+M028564
+028568
+M028568
+028569
+M028569
+028570
+M028570
+028571
+M028571
+028572
+M028572
+028573
+M028573
+028574
+M028574
+028575
+M028575
+028576
+M028576
+028577
+M028577
+028578
+M028578
+028579
+M028579
+028580
+M028580
+028581
+M028581
+028582
+M028582
+028583
+M028583
+028584
+M028584
+028585
+M028585
+028586
+M028586
+028587
+M028587
+028588
+M028588
+028589
+M028589
+028590
+M028590
+028591
+M028591
+028592
+M028592
+028593
+M028593
+028607
+M028607
+028608
+M028608
+028609
+M028609
+028610
+M028610
+028611
+M028611
+028612
+M028612
+028613
+M028613
+028614
+M028614
+028615
+M028615
+028616
+M028616
+028617
+M028617
+028618
+M028618
+028619
+M028619
+028620
+M028620
+028621
+M028621
+028622
+M028622
+028623
+M028623
+028625
+M028625
+028626
+M028626
+028627
+M028627
+028628
+M028628
+028629
+M028629
+028630
+M028630
+028631
+M028631
+028632
+M028632
+028633
+M028633
+028634
+M028634
+028635
+M028635
+028636
+M028636
+028637
+M028637
+028638
+M028638
+028639
+M028639
+028640
+M028640
+028641
+M028641
+028642
+M028642
+028649
+M028649
+028650
+M028650
+028651
+M028651
+028652
+M028652
+028653
+M028653
+028654
+M028654
+028663
+M028663
+028664
+M028664
+028665
+M028665
+028666
+M028666
+028667
+M028667
+028668
+M028668
+028669
+M028669
+028670
+M028670
+028671
+M028671
+028672
+M028672
+028673
+M028673
+028674
+M028674
+028675
+M028675
+028676
+M028676
+028677
+M028677
+028678
+M028678
+028679
+M028679
+028680
+M028680
+028681
+M028681
+028682
+M028682
+028683
+M028683
+028684
+M028684
+028685
+M028685
+028686
+M028686
+028687
+M028687
+028688
+M028688
+028689
+M028689
+028690
+M028690
+028691
+M028691
+028692
+M028692
+028693
+M028693
+028694
+M028694
+028695
+M028695
+028696
+M028696
+028697
+M028697
+028698
+M028698
+028699
+M028699
+028700
+M028700
+028701
+M028701
+028702
+M028702
+028703
+M028703
+028704
+M028704
+028705
+M028705
+028706
+M028706
+028707
+M028707
+028708
+M028708
+028709
+M028709
+028710
+M028710
+028711
+M028711
+028712
+M028712
+028713
+M028713
+028714
+M028714
+028715
+M028715
+028716
+M028716
+028717
+M028717
+028718
+M028718
+028719
+M028719
+028720
+M028720
+028721
+M028721
+028722
+M028722
+028723
+M028723
+028724
+M028724
+028725
+M028725
+028726
+M028726
+028727
+M028727
+028728
+M028728
+028729
+M028729
+028730
+M028730
+028731
+M028731
+028732
+M028732
+028733
+M028733
+028734
+M028734
+028735
+M028735
+028736
+M028736
+028737
+M028737
+028738
+M028738
+028739
+M028739
+028740
+M028740
+028741
+M028741
+028742
+M028742
+028743
+M028743
+028744
+M028744
+028745
+M028745
+028746
+M028746
+028750
+M028750
+028751
+M028751
+028752
+M028752
+028753
+M028753
+028754
+M028754
+028755
+M028755
+028756
+M028756
+028757
+M028757
+028758
+M028758
+028759
+M028759
+028760
+M028760
+028761
+M028761
+028762
+M028762
+028763
+M028763
+028764
+M028764
+028765
+M028765
+028766
+M028766
+028767
+M028767
+028768
+M028768
+028769
+M028769
+028770
+M028770
+028771
+M028771
+028772
+M028772
+028773
+M028773
+028774
+M028774
+028775
+M028775
+028776
+M028776
+028777
+M028777
+028778
+M028778
+028779
+M028779
+028780
+M028780
+028781
+M028781
+028782
+M028782
+028783
+M028783
+028784
+M028784
+028785
+M028785
+028786
+M028786
+028787
+M028787
+028788
+M028788
+028789
+M028789
+028790
+M028790
+028791
+M028791
+028792
+M028792
+028793
+M028793
+028794
+M028794
+028795
+M028795
+028796
+M028796
+028798
+M028798
+028799
+M028799
+028800
+M028800
+028801
+M028801
+028802
+M028802
+028803
+M028803
+028804
+M028804
+028805
+M028805
+028806
+M028806
+028807
+M028807
+028808
+M028808
+028809
+M028809
+028810
+M028810
+028811
+M028811
+028812
+M028812
+028813
+M028813
+028814
+M028814
+028815
+M028815
+028816
+M028816
+028817
+M028817
+028818
+M028818
+028819
+M028819
+028820
+M028820
+028821
+M028821
+028822
+M028822
+028823
+M028823
+028824
+M028824
+028825
+M028825
+028826
+M028826
+028827
+M028827
+028828
+M028828
+028829
+M028829
+028830
+M028830
+028831
+M028831
+028832
+M028832
+028833
+M028833
+028834
+M028834
+028835
+M028835
+028836
+M028836
+028837
+M028837
+028844
+M028844
+028845
+M028845
+028846
+M028846
+028847
+M028847
+028848
+M028848
+028849
+M028849
+028850
+M028850
+028851
+M028851
+028852
+M028852
+028853
+M028853
+028854
+M028854
+028855
+M028855
+028856
+M028856
+028857
+M028857
+028858
+M028858
+028859
+M028859
+028860
+M028860
+028861
+M028861
+028862
+M028862
+028863
+M028863
+028864
+M028864
+028865
+M028865
+028866
+M028866
+028867
+M028867
+028868
+M028868
+028869
+M028869
+028870
+M028870
+028871
+M028871
+028872
+M028872
+028873
+M028873
+028874
+M028874
+028875
+M028875
+028876
+M028876
+028877
+M028877
+028890
+M028890
+028891
+M028891
+028892
+M028892
+028893
+M028893
+028894
+M028894
+028895
+M028895
+028896
+M028896
+028897
+M028897
+028898
+M028898
+028899
+M028899
+028900
+M028900
+028901
+M028901
+028902
+M028902
+028903
+M028903
+028904
+M028904
+028905
+M028905
+028906
+M028906
+028907
+M028907
+028908
+M028908
+028909
+M028909
+028910
+M028910
+028911
+M028911
+028912
+M028912
+028913
+M028913
+028914
+M028914
+028915
+M028915
+028916
+M028916
+028917
+M028917
+028918
+M028918
+028919
+M028919
+028920
+M028920
+028921
+M028921
+028922
+M028922
+028923
+M028923
+028924
+M028924
+028925
+M028925
+028926
+M028926
+028927
+M028927
+028928
+M028928
+028929
+M028929
+028930
+M028930
+028931
+M028931
+028932
+M028932
+028933
+M028933
+028934
+M028934
+028935
+M028935
+028936
+M028936
+028960
+M028960
+028961
+M028961
+028962
+M028962
+028963
+M028963
+028964
+M028964
+028965
+M028965
+028971
+M028971
+028972
+M028972
+028973
+M028973
+028974
+M028974
+028975
+M028975
+028976
+M028976
+028977
+M028977
+028978
+M028978
+028979
+M028979
+028980
+M028980
+028981
+M028981
+028982
+M028982
+028983
+M028983
+028984
+M028984
+028985
+M028985
+028986
+M028986
+028987
+M028987
+028988
+M028988
+028989
+M028989
+028990
+M028990
+028991
+M028991
+028992
+M028992
+028993
+M028993
+028994
+M028994
+028995
+M028995
+028996
+M028996
+028997
+M028997
+028998
+M028998
+028999
+M028999
+029000
+M029000
+029001
+M029001
+029002
+M029002
+029003
+M029003
+029004
+M029004
+029005
+M029005
+029006
+M029006
+029007
+M029007
+029008
+M029008
+029009
+M029009
+029010
+M029010
+029042
+M029042
+029043
+M029043
+029044
+M029044
+029045
+M029045
+029046
+M029046
+029047
+M029047
+029048
+M029048
+029049
+M029049
+029050
+M029050
+029051
+M029051
+029052
+M029052
+029053
+M029053
+029073
+M029073
+029074
+M029074
+029075
+M029075
+029081
+M029081
+029082
+M029082
+029083
+M029083
+029084
+M029084
+029085
+M029085
+029086
+M029086
+029087
+M029087
+029088
+M029088
+029089
+M029089
+029090
+M029090
+029091
+M029091
+029092
+M029092
+029093
+M029093
+029094
+M029094
+029095
+M029095
+029096
+M029096
+029097
+M029097
+029098
+M029098
+029099
+M029099
+029100
+M029100
+029101
+M029101
+029102
+M029102
+029103
+M029103
+029104
+M029104
+029105
+M029105
+029106
+M029106
+029107
+M029107
+029108
+M029108
+029109
+M029109
+029110
+M029110
+029111
+M029111
+029112
+M029112
+029113
+M029113
+029114
+M029114
+029115
+M029115
+029116
+M029116
+029117
+M029117
+029118
+M029118
+029119
+M029119
+029120
+M029120
+029121
+M029121
+029122
+M029122
+029123
+M029123
+029124
+M029124
+029125
+M029125
+029126
+M029126
+029127
+M029127
+029128
+M029128
+029129
+M029129
+029130
+M029130
+029131
+M029131
+029132
+M029132
+029133
+M029133
+029134
+M029134
+029160
+M029160
+029161
+M029161
+029162
+M029162
+029163
+M029163
+029164
+M029164
+029165
+M029165
+029166
+M029166
+029167
+M029167
+029168
+M029168
+029169
+M029169
+029170
+M029170
+029171
+M029171
+029172
+M029172
+029173
+M029173
+029174
+M029174
+029175
+M029175
+029176
+M029176
+029177
+M029177
+029178
+M029178
+029179
+M029179
+029180
+M029180
+029181
+M029181
+029182
+M029182
+029183
+M029183
+029184
+M029184
+029185
+M029185
+029186
+M029186
+029187
+M029187
+029188
+M029188
+029189
+M029189
+029190
+M029190
+029191
+M029191
+029192
+M029192
+029193
+M029193
+029194
+M029194
+029195
+M029195
+029196
+M029196
+029197
+M029197
+029198
+M029198
+029199
+M029199
+029200
+M029200
+029201
+M029201
+029202
+M029202
+029203
+M029203
+029204
+M029204
+029205
+M029205
+029206
+M029206
+029207
+M029207
+029208
+M029208
+029209
+M029209
+029210
+M029210
+029211
+M029211
+029212
+M029212
+029213
+M029213
+029214
+M029214
+029215
+M029215
+029216
+M029216
+029217
+M029217
+029218
+M029218
+029219
+M029219
+029220
+M029220
+029231
+M029231
+029232
+M029232
+029233
+M029233
+029234
+M029234
+029235
+M029235
+029236
+M029236
+029237
+M029237
+029238
+M029238
+029239
+M029239
+029240
+M029240
+029241
+M029241
+029242
+M029242
+029243
+M029243
+029244
+M029244
+029245
+M029245
+029246
+M029246
+029247
+M029247
+029248
+M029248
+029249
+M029249
+029250
+M029250
+029251
+M029251
+029252
+M029252
+029253
+M029253
+029254
+M029254
+029255
+M029255
+029256
+M029256
+029257
+M029257
+029258
+M029258
+029259
+M029259
+029260
+M029260
+029261
+M029261
+029262
+M029262
+029263
+M029263
+029264
+M029264
+029265
+M029265
+029266
+M029266
+029267
+M029267
+029268
+M029268
+029269
+M029269
+029270
+M029270
+029271
+M029271
+029272
+M029272
+029273
+M029273
+029274
+M029274
+029278
+M029278
+029279
+M029279
+029280
+M029280
+029281
+M029281
+029282
+M029282
+029283
+M029283
+029284
+M029284
+029285
+M029285
+029293
+M029293
+029294
+M029294
+029295
+M029295
+029296
+M029296
+029297
+M029297
+029302
+M029302
+029303
+M029303
+029304
+M029304
+029305
+M029305
+029306
+M029306
+029307
+M029307
+029308
+M029308
+029309
+M029309
+029310
+M029310
+029311
+M029311
+029312
+M029312
+029313
+M029313
+029314
+M029314
+029315
+M029315
+029316
+M029316
+029317
+M029317
+029318
+M029318
+029319
+M029319
+029320
+M029320
+029321
+M029321
+029322
+M029322
+029323
+M029323
+029324
+M029324
+029325
+M029325
+029326
+M029326
+029327
+M029327
+029328
+M029328
+029329
+M029329
+029330
+M029330
+029331
+M029331
+029332
+M029332
+029333
+M029333
+029334
+M029334
+029335
+M029335
+029336
+M029336
+029337
+M029337
+029338
+M029338
+029339
+M029339
+029340
+M029340
+029341
+M029341
+029342
+M029342
+029389
+M029389
+029390
+M029390
+029391
+M029391
+029392
+M029392
+029393
+M029393
+029394
+M029394
+029395
+M029395
+029396
+M029396
+029397
+M029397
+029398
+M029398
+029399
+M029399
+029400
+M029400
+029415
+M029415
+029416
+M029416
+029417
+M029417
+029418
+M029418
+029419
+M029419
+029420
+M029420
+029421
+M029421
+029422
+M029422
+029423
+M029423
+029424
+M029424
+029425
+M029425
+029426
+M029426
+029427
+M029427
+029428
+M029428
+029429
+M029429
+029430
+M029430
+029431
+M029431
+029432
+M029432
+029433
+M029433
+029434
+M029434
+029435
+M029435
+029436
+M029436
+029437
+M029437
+029438
+M029438
+029439
+M029439
+029440
+M029440
+029441
+M029441
+029442
+M029442
+029443
+M029443
+029444
+M029444
+029445
+M029445
+029446
+M029446
+029447
+M029447
+029448
+M029448
+029449
+M029449
+029450
+M029450
+029451
+M029451
+029452
+M029452
+029453
+M029453
+029454
+M029454
+029455
+M029455
+029456
+M029456
+029457
+M029457
+029458
+M029458
+029459
+M029459
+029460
+M029460
+029461
+M029461
+029462
+M029462
+029463
+M029463
+029464
+M029464
+029465
+M029465
+029466
+M029466
+029467
+M029467
+029468
+M029468
+029469
+M029469
+029470
+M029470
+029471
+M029471
+029472
+M029472
+029473
+M029473
+029474
+M029474
+029475
+M029475
+029476
+M029476
+029477
+M029477
+029478
+M029478
+029479
+M029479
+029480
+M029480
+029481
+M029481
+029482
+M029482
+029483
+M029483
+029484
+M029484
+029485
+M029485
+029486
+M029486
+029487
+M029487
+029488
+M029488
+029489
+M029489
+029490
+M029490
+029491
+M029491
+029492
+M029492
+029493
+M029493
+029494
+M029494
+029495
+M029495
+029496
+M029496
+029497
+M029497
+029498
+M029498
+029499
+M029499
+029500
+M029500
+029501
+M029501
+029502
+M029502
+029503
+M029503
+029504
+M029504
+029505
+M029505
+029506
+M029506
+029507
+M029507
+029508
+M029508
+029509
+M029509
+029510
+M029510
+029511
+M029511
+029512
+M029512
+029513
+M029513
+029514
+M029514
+029515
+M029515
+029516
+M029516
+029517
+M029517
+029518
+M029518
+029519
+M029519
+029520
+M029520
+029521
+M029521
+029522
+M029522
+029523
+M029523
+029524
+M029524
+029525
+M029525
+029526
+M029526
+029527
+M029527
+029528
+M029528
+029534
+M029534
+029535
+M029535
+029536
+M029536
+029537
+M029537
+029538
+M029538
+029539
+M029539
+029540
+M029540
+029541
+M029541
+029542
+M029542
+029543
+M029543
+029544
+M029544
+029545
+M029545
+029546
+M029546
+029547
+M029547
+029548
+M029548
+029549
+M029549
+029550
+M029550
+029551
+M029551
+029552
+M029552
+029553
+M029553
+029554
+M029554
+029555
+M029555
+029556
+M029556
+029557
+M029557
+029558
+M029558
+029559
+M029559
+029560
+M029560
+029561
+M029561
+029562
+M029562
+029563
+M029563
+029564
+M029564
+029565
+M029565
+029566
+M029566
+029567
+M029567
+029568
+M029568
+029593
+M029593
+029594
+M029594
+029595
+M029595
+029596
+M029596
+029597
+M029597
+029598
+M029598
+029599
+M029599
+029600
+M029600
+029601
+M029601
+029602
+M029602
+029603
+M029603
+029604
+M029604
+029605
+M029605
+029606
+M029606
+029607
+M029607
+029608
+M029608
+029609
+M029609
+029610
+M029610
+029615
+M029615
+029616
+M029616
+029617
+M029617
+029618
+M029618
+029619
+M029619
+029620
+M029620
+029621
+M029621
+029622
+M029622
+029623
+M029623
+029624
+M029624
+029625
+M029625
+029626
+M029626
+029627
+M029627
+029628
+M029628
+029629
+M029629
+029630
+M029630
+029631
+M029631
+029632
+M029632
+029633
+M029633
+029634
+M029634
+029635
+M029635
+029636
+M029636
+029637
+M029637
+029649
+M029649
+029650
+M029650
+029651
+M029651
+029652
+M029652
+029653
+M029653
+029654
+M029654
+029655
+M029655
+029656
+M029656
+029657
+M029657
+029658
+M029658
+029659
+M029659
+029660
+M029660
+029661
+M029661
+029662
+M029662
+029663
+M029663
+029664
+M029664
+029665
+M029665
+029666
+M029666
+029667
+M029667
+029668
+M029668
+029669
+M029669
+029670
+M029670
+029671
+M029671
+029672
+M029672
+029673
+M029673
+029674
+M029674
+029675
+M029675
+029684
+M029684
+029685
+M029685
+029686
+M029686
+029687
+M029687
+029688
+M029688
+029689
+M029689
+029690
+M029690
+029691
+M029691
+029692
+M029692
+029693
+M029693
+029694
+M029694
+029695
+M029695
+029696
+M029696
+029697
+M029697
+029698
+M029698
+029699
+M029699
+029700
+M029700
+029701
+M029701
+029702
+M029702
+029703
+M029703
+029704
+M029704
+029705
+M029705
+029706
+M029706
+029707
+M029707
+029708
+M029708
+029709
+M029709
+029710
+M029710
+029711
+M029711
+029712
+M029712
+029713
+M029713
+029714
+M029714
+029715
+M029715
+029716
+M029716
+029717
+M029717
+029718
+M029718
+029719
+M029719
+029720
+M029720
+029721
+M029721
+029722
+M029722
+029723
+M029723
+029724
+M029724
+029725
+M029725
+029726
+M029726
+029727
+M029727
+029728
+M029728
+029729
+M029729
+029730
+M029730
+029731
+M029731
+029732
+M029732
+029733
+M029733
+029734
+M029734
+029735
+M029735
+029736
+M029736
+029738
+M029738
+029739
+M029739
+029740
+M029740
+029741
+M029741
+029742
+M029742
+029743
+M029743
+029744
+M029744
+029745
+M029745
+029746
+M029746
+029747
+M029747
+029748
+M029748
+029749
+M029749
+029750
+M029750
+029751
+M029751
+029752
+M029752
+029753
+M029753
+029754
+M029754
+029755
+M029755
+029756
+M029756
+029757
+M029757
+029758
+M029758
+029759
+M029759
+029760
+M029760
+029761
+M029761
+029762
+M029762
+029763
+M029763
+029770
+M029770
+029772
+M029772
+029773
+M029773
+029774
+M029774
+029775
+M029775
+029776
+M029776
+029777
+M029777
+029778
+M029778
+029779
+M029779
+029780
+M029780
+029781
+M029781
+029782
+M029782
+029783
+M029783
+029784
+M029784
+029785
+M029785
+029786
+M029786
+029787
+M029787
+029788
+M029788
+029789
+M029789
+029790
+M029790
+029791
+M029791
+029802
+M029802
+029803
+M029803
+029804
+M029804
+029805
+M029805
+029806
+M029806
+029807
+M029807
+029808
+M029808
+029809
+M029809
+029810
+M029810
+029811
+M029811
+029812
+M029812
+029813
+M029813
+029814
+M029814
+029815
+M029815
+029816
+M029816
+029817
+M029817
+029818
+M029818
+029819
+M029819
+029820
+M029820
+029821
+M029821
+029822
+M029822
+029823
+M029823
+029824
+M029824
+029825
+M029825
+029826
+M029826
+029827
+M029827
+029828
+M029828
+029829
+M029829
+029830
+M029830
+029831
+M029831
+029832
+M029832
+029833
+M029833
+029834
+M029834
+029835
+M029835
+029836
+M029836
+029837
+M029837
+029838
+M029838
+029839
+M029839
+029840
+M029840
+029841
+M029841
+029842
+M029842
+029843
+M029843
+029844
+M029844
+029845
+M029845
+029846
+M029846
+029852
+M029852
+029853
+M029853
+029854
+M029854
+029855
+M029855
+029856
+M029856
+029857
+M029857
+029858
+M029858
+029859
+M029859
+029860
+M029860
+029861
+M029861
+029862
+M029862
+029863
+M029863
+029864
+M029864
+029865
+M029865
+029866
+M029866
+029867
+M029867
+029868
+M029868
+029869
+M029869
+029870
+M029870
+029871
+M029871
+029872
+M029872
+029873
+M029873
+029874
+M029874
+029875
+M029875
+029876
+M029876
+029877
+M029877
+029878
+M029878
+029879
+M029879
+029880
+M029880
+029881
+M029881
+029882
+M029882
+029883
+M029883
+029884
+M029884
+029907
+M029907
+029908
+M029908
+029909
+M029909
+029910
+M029910
+029911
+M029911
+029912
+M029912
+029913
+M029913
+029914
+M029914
+029915
+M029915
+029931
+M029931
+029932
+M029932
+029933
+M029933
+029934
+M029934
+029935
+M029935
+029936
+M029936
+029937
+M029937
+029938
+M029938
+029939
+M029939
+029940
+M029940
+029941
+M029941
+029942
+M029942
+029943
+M029943
+029944
+M029944
+029945
+M029945
+029946
+M029946
+029947
+M029947
+029948
+M029948
+029949
+M029949
+029950
+M029950
+029951
+M029951
+029952
+M029952
+029953
+M029953
+029954
+M029954
+029955
+M029955
+029956
+M029956
+029957
+M029957
+029963
+M029963
+029964
+M029964
+029965
+M029965
+029966
+M029966
+029967
+M029967
+029968
+M029968
+029969
+M029969
+029970
+M029970
+029971
+M029971
+029972
+M029972
+029973
+M029973
+029974
+M029974
+029975
+M029975
+029976
+M029976
+029977
+M029977
+029978
+M029978
+029979
+M029979
+029980
+M029980
+029981
+M029981
+029982
+M029982
+029983
+M029983
+029984
+M029984
+029985
+M029985
+029986
+M029986
+029987
+M029987
+029988
+M029988
+029989
+M029989
+029990
+M029990
+029991
+M029991
+029992
+M029992
+029993
+M029993
+029994
+M029994
+029995
+M029995
+029996
+M029996
+029997
+M029997
+029998
+M029998
+029999
+M029999
+030000
+M030000
+030001
+M030001
+030002
+M030002
+030003
+M030003
+030004
+M030004
+030005
+M030005
+030006
+M030006
+030007
+M030007
+030008
+M030008
+030009
+M030009
+030010
+M030010
+030011
+M030011
+030012
+M030012
+030013
+M030013
+030014
+M030014
+030015
+M030015
+030016
+M030016
+030017
+M030017
+030018
+M030018
+030019
+M030019
+030020
+M030020
+030021
+M030021
+030022
+M030022
+030023
+M030023
+030024
+M030024
+030025
+M030025
+030026
+M030026
+030027
+M030027
+030028
+M030028
+030029
+M030029
+030030
+M030030
+030031
+M030031
+030032
+M030032
+030033
+M030033
+030034
+M030034
+030035
+M030035
+030036
+M030036
+030037
+M030037
+030038
+M030038
+030039
+M030039
+030040
+M030040
+030047
+M030047
+030048
+M030048
+030049
+M030049
+030050
+M030050
+030051
+M030051
+030052
+M030052
+030053
+M030053
+030054
+M030054
+030055
+M030055
+030056
+M030056
+030057
+M030057
+030058
+M030058
+030059
+M030059
+030060
+M030060
+030061
+M030061
+030062
+M030062
+030063
+M030063
+030064
+M030064
+030065
+M030065
+030066
+M030066
+030067
+M030067
+030068
+M030068
+030069
+M030069
+030070
+M030070
+030071
+M030071
+030072
+M030072
+030073
+M030073
+030074
+M030074
+030075
+M030075
+030076
+M030076
+030077
+M030077
+030078
+M030078
+030079
+M030079
+030080
+M030080
+030081
+M030081
+030082
+M030082
+030083
+M030083
+030084
+M030084
+030085
+M030085
+030086
+M030086
+030087
+M030087
+030088
+M030088
+030089
+M030089
+030090
+M030090
+030091
+M030091
+030092
+M030092
+030093
+M030093
+030094
+M030094
+030095
+M030095
+030096
+M030096
+030097
+M030097
+030098
+M030098
+030099
+M030099
+030100
+M030100
+030101
+M030101
+030102
+M030102
+030103
+M030103
+030104
+M030104
+030105
+M030105
+030106
+M030106
+030111
+M030111
+030112
+M030112
+030113
+M030113
+030114
+M030114
+030115
+M030115
+030116
+M030116
+030117
+M030117
+030118
+M030118
+030119
+M030119
+030120
+M030120
+030121
+M030121
+030122
+M030122
+030123
+M030123
+030124
+M030124
+030125
+M030125
+030126
+M030126
+030127
+M030127
+030128
+M030128
+030129
+M030129
+030130
+M030130
+030131
+M030131
+030132
+M030132
+030133
+M030133
+030134
+M030134
+030135
+M030135
+030136
+M030136
+030137
+M030137
+030138
+M030138
+030139
+M030139
+030140
+M030140
+030141
+M030141
+030142
+M030142
+030143
+M030143
+030144
+M030144
+030145
+M030145
+030146
+M030146
+030147
+M030147
+030148
+M030148
+030149
+M030149
+030150
+M030150
+030151
+M030151
+030152
+M030152
+030153
+M030153
+030154
+M030154
+030155
+M030155
+030156
+M030156
+030157
+M030157
+030158
+M030158
+030159
+M030159
+030160
+M030160
+030161
+M030161
+030162
+M030162
+030163
+M030163
+030164
+M030164
+030165
+M030165
+030166
+M030166
+030167
+M030167
+030168
+M030168
+030169
+M030169
+030170
+M030170
+030171
+M030171
+030172
+M030172
+030173
+M030173
+030174
+M030174
+030175
+M030175
+030195
+M030195
+030196
+M030196
+030197
+M030197
+030206
+M030206
+030207
+M030207
+030208
+M030208
+030209
+M030209
+030210
+M030210
+030211
+M030211
+030212
+M030212
+030213
+M030213
+030214
+M030214
+030215
+M030215
+030216
+M030216
+030217
+M030217
+030218
+M030218
+030219
+M030219
+030220
+M030220
+030221
+M030221
+030222
+M030222
+030223
+M030223
+030224
+M030224
+030225
+M030225
+030226
+M030226
+030227
+M030227
+030228
+M030228
+030229
+M030229
+030230
+M030230
+030231
+M030231
+030232
+M030232
+030233
+M030233
+030234
+M030234
+030235
+M030235
+030236
+M030236
+030237
+M030237
+030238
+M030238
+030239
+M030239
+030240
+M030240
+030241
+M030241
+030242
+M030242
+030243
+M030243
+030263
+M030263
+030264
+M030264
+030265
+M030265
+030266
+M030266
+030267
+M030267
+030268
+M030268
+030269
+M030269
+030270
+M030270
+030271
+M030271
+030272
+M030272
+030273
+M030273
+030274
+M030274
+030275
+M030275
+030276
+M030276
+030277
+M030277
+030278
+M030278
+030279
+M030279
+030280
+M030280
+030281
+M030281
+030282
+M030282
+030283
+M030283
+030284
+M030284
+030285
+M030285
+030286
+M030286
+030287
+M030287
+030288
+M030288
+030289
+M030289
+030290
+M030290
+030291
+M030291
+030292
+M030292
+030293
+M030293
+030294
+M030294
+030295
+M030295
+030296
+M030296
+030297
+M030297
+030298
+M030298
+030299
+M030299
+030300
+M030300
+030301
+M030301
+030302
+M030302
+030303
+M030303
+030304
+M030304
+030305
+M030305
+030306
+M030306
+030307
+M030307
+030308
+M030308
+030309
+M030309
+030310
+M030310
+030311
+M030311
+030312
+M030312
+030313
+M030313
+030314
+M030314
+030315
+M030315
+030316
+M030316
+030317
+M030317
+030318
+M030318
+030319
+M030319
+030320
+M030320
+030321
+M030321
+030322
+M030322
+030323
+M030323
+030324
+M030324
+030325
+M030325
+030327
+M030327
+030329
+M030329
+030330
+M030330
+030331
+M030331
+030332
+M030332
+030333
+M030333
+030335
+M030335
+030356
+M030356
+030357
+M030357
+030358
+M030358
+030359
+M030359
+030360
+M030360
+030361
+M030361
+030362
+M030362
+030363
+M030363
+030364
+M030364
+030365
+M030365
+030366
+M030366
+030367
+M030367
+030368
+M030368
+030369
+M030369
+030370
+M030370
+030371
+M030371
+030372
+M030372
+030373
+M030373
+030374
+M030374
+030375
+M030375
+030376
+M030376
+030377
+M030377
+030378
+M030378
+030379
+M030379
+030380
+M030380
+030381
+M030381
+030382
+M030382
+030383
+M030383
+030391
+M030391
+030392
+M030392
+030393
+M030393
+030394
+M030394
+030395
+M030395
+030402
+M030402
+030403
+M030403
+030404
+M030404
+030405
+M030405
+030406
+M030406
+030407
+M030407
+030408
+M030408
+030409
+M030409
+030410
+M030410
+030411
+M030411
+030412
+M030412
+030413
+M030413
+030414
+M030414
+030415
+M030415
+030416
+M030416
+030417
+M030417
+030418
+M030418
+030419
+M030419
+030420
+M030420
+030421
+M030421
+030422
+M030422
+030423
+M030423
+030424
+M030424
+030425
+M030425
+030426
+M030426
+030427
+M030427
+030428
+M030428
+030429
+M030429
+030430
+M030430
+030438
+M030438
+030439
+M030439
+030440
+M030440
+030441
+M030441
+030442
+M030442
+030443
+M030443
+030444
+M030444
+030445
+M030445
+030446
+M030446
+030447
+M030447
+030448
+M030448
+030449
+M030449
+030450
+M030450
+030451
+M030451
+030452
+M030452
+030453
+M030453
+030454
+M030454
+030455
+M030455
+030456
+M030456
+030457
+M030457
+030458
+M030458
+030459
+M030459
+030460
+M030460
+030461
+M030461
+030462
+M030462
+030463
+M030463
+030464
+M030464
+030465
+M030465
+030466
+M030466
+030467
+M030467
+030468
+M030468
+030469
+M030469
+030470
+M030470
+030471
+M030471
+030472
+M030472
+030473
+M030473
+030474
+M030474
+030475
+M030475
+030476
+M030476
+030477
+M030477
+030478
+M030478
+030479
+M030479
+030480
+M030480
+030481
+M030481
+030482
+M030482
+030483
+M030483
+030484
+M030484
+030485
+M030485
+030486
+M030486
+030487
+M030487
+030488
+M030488
+030489
+M030489
+030490
+M030490
+030491
+M030491
+030492
+M030492
+030493
+M030493
+030494
+M030494
+030495
+M030495
+030496
+M030496
+030497
+M030497
+030498
+M030498
+030499
+M030499
+030500
+M030500
+030501
+M030501
+030502
+M030502
+030503
+M030503
+030504
+M030504
+030505
+M030505
+030506
+M030506
+030507
+M030507
+030508
+M030508
+030509
+M030509
+030510
+M030510
+030511
+M030511
+030512
+M030512
+030513
+M030513
+030514
+M030514
+030515
+M030515
+030516
+M030516
+030517
+M030517
+030518
+M030518
+030519
+M030519
+030520
+M030520
+030521
+M030521
+030522
+M030522
+030523
+M030523
+030524
+M030524
+030525
+M030525
+030526
+M030526
+030527
+M030527
+030528
+M030528
+030529
+M030529
+030530
+M030530
+030531
+M030531
+030532
+M030532
+030533
+M030533
+030534
+M030534
+030535
+M030535
+030536
+M030536
+030537
+M030537
+030538
+M030538
+030539
+M030539
+030540
+M030540
+030541
+M030541
+030542
+M030542
+030543
+M030543
+030544
+M030544
+030545
+M030545
+030546
+M030546
+030547
+M030547
+030548
+M030548
+030549
+M030549
+030550
+M030550
+030551
+M030551
+030552
+M030552
+030553
+M030553
+030554
+M030554
+030555
+M030555
+030556
+M030556
+030557
+M030557
+030558
+M030558
+030559
+M030559
+030560
+M030560
+030561
+M030561
+030562
+M030562
+030563
+M030563
+030564
+M030564
+030565
+M030565
+030566
+M030566
+030567
+M030567
+030568
+M030568
+030569
+M030569
+030570
+M030570
+030571
+M030571
+030572
+M030572
+030573
+M030573
+030574
+M030574
+030575
+M030575
+030576
+M030576
+030577
+M030577
+030578
+M030578
+030579
+M030579
+030580
+M030580
+030581
+M030581
+030582
+M030582
+030588
+M030588
+030589
+M030589
+030590
+M030590
+030591
+M030591
+030592
+M030592
+030593
+M030593
+030594
+M030594
+030595
+M030595
+030596
+M030596
+030597
+M030597
+030598
+M030598
+030599
+M030599
+030600
+M030600
+030601
+M030601
+030602
+M030602
+030603
+M030603
+030604
+M030604
+030605
+M030605
+030606
+M030606
+030607
+M030607
+030608
+M030608
+030609
+M030609
+030610
+M030610
+030611
+M030611
+030612
+M030612
+030621
+M030621
+030622
+M030622
+030623
+M030623
+030624
+M030624
+030625
+M030625
+030626
+M030626
+030627
+M030627
+030628
+M030628
+030629
+M030629
+030630
+M030630
+030631
+M030631
+030632
+M030632
+030633
+M030633
+030634
+M030634
+030635
+M030635
+030636
+M030636
+030637
+M030637
+030638
+M030638
+030639
+M030639
+030640
+M030640
+030641
+M030641
+030642
+M030642
+030643
+M030643
+030644
+M030644
+030645
+M030645
+030646
+M030646
+030647
+M030647
+030648
+M030648
+030649
+M030649
+030650
+M030650
+030651
+M030651
+030652
+M030652
+030653
+M030653
+030654
+M030654
+030655
+M030655
+030656
+M030656
+030657
+M030657
+030658
+M030658
+030659
+M030659
+030660
+M030660
+030661
+M030661
+030662
+M030662
+030663
+M030663
+030664
+M030664
+030689
+M030689
+030690
+M030690
+030691
+M030691
+030692
+M030692
+030693
+M030693
+030694
+M030694
+030695
+M030695
+030696
+M030696
+030697
+M030697
+030698
+M030698
+030699
+M030699
+030700
+M030700
+030701
+M030701
+030702
+M030702
+030703
+M030703
+030704
+M030704
+030705
+M030705
+030706
+M030706
+030707
+M030707
+030708
+M030708
+030709
+M030709
+030710
+M030710
+030711
+M030711
+030712
+M030712
+030713
+M030713
+030714
+M030714
+030715
+M030715
+030716
+M030716
+030717
+M030717
+030718
+M030718
+030719
+M030719
+030727
+M030727
+030728
+M030728
+030729
+M030729
+030730
+M030730
+030731
+M030731
+030732
+M030732
+030733
+M030733
+030734
+M030734
+030735
+M030735
+030736
+M030736
+030737
+M030737
+030738
+M030738
+030739
+M030739
+030740
+M030740
+030741
+M030741
+030742
+M030742
+030743
+M030743
+030744
+M030744
+030745
+M030745
+030746
+M030746
+030747
+M030747
+030748
+M030748
+030749
+M030749
+030750
+M030750
+030751
+M030751
+030752
+M030752
+030753
+M030753
+030754
+M030754
+030755
+M030755
+030756
+M030756
+030757
+M030757
+030758
+M030758
+030759
+M030759
+030760
+M030760
+030761
+M030761
+030762
+M030762
+030763
+M030763
+030764
+M030764
+030765
+M030765
+030790
+M030790
+030791
+M030791
+030792
+M030792
+030793
+M030793
+030794
+M030794
+030795
+M030795
+030796
+M030796
+030797
+M030797
+030798
+M030798
+030799
+M030799
+030800
+M030800
+030801
+M030801
+030802
+M030802
+030803
+M030803
+030804
+M030804
+030805
+M030805
+030806
+M030806
+030807
+M030807
+030808
+M030808
+030809
+M030809
+030810
+M030810
+030811
+M030811
+030812
+M030812
+030813
+M030813
+030814
+M030814
+030815
+M030815
+030816
+M030816
+030817
+M030817
+030818
+M030818
+030819
+M030819
+030820
+M030820
+030821
+M030821
+030822
+M030822
+030823
+M030823
+030824
+M030824
+030825
+M030825
+030826
+M030826
+030827
+M030827
+030828
+M030828
+030829
+M030829
+030830
+M030830
+030831
+M030831
+030832
+M030832
+030833
+M030833
+030834
+M030834
+030835
+M030835
+030836
+M030836
+030837
+M030837
+030838
+M030838
+030839
+M030839
+030840
+M030840
+030841
+M030841
+030842
+M030842
+030843
+M030843
+030844
+M030844
+030845
+M030845
+030846
+M030846
+030847
+M030847
+030848
+M030848
+030849
+M030849
+030850
+M030850
+030851
+M030851
+030852
+M030852
+030853
+M030853
+030854
+M030854
+030855
+M030855
+030856
+M030856
+030857
+M030857
+030858
+M030858
+030859
+M030859
+030860
+M030860
+030861
+M030861
+030862
+M030862
+030863
+M030863
+030895
+M030895
+030896
+M030896
+030897
+M030897
+030898
+M030898
+030899
+M030899
+030939
+M030939
+030940
+M030940
+030941
+M030941
+030942
+M030942
+030943
+M030943
+030944
+M030944
+030945
+M030945
+030946
+M030946
+030947
+M030947
+030948
+M030948
+030949
+M030949
+030950
+M030950
+030951
+M030951
+030952
+M030952
+030953
+M030953
+030954
+M030954
+030955
+M030955
+030956
+M030956
+030957
+M030957
+030958
+M030958
+030959
+M030959
+030960
+M030960
+030961
+M030961
+030962
+M030962
+030963
+M030963
+030964
+M030964
+030965
+M030965
+030966
+M030966
+030967
+M030967
+030968
+M030968
+030969
+M030969
+030970
+M030970
+030971
+M030971
+030972
+M030972
+030973
+M030973
+030974
+M030974
+030975
+M030975
+030976
+M030976
+030977
+M030977
+030978
+M030978
+030979
+M030979
+030980
+M030980
+030981
+M030981
+030982
+M030982
+030983
+M030983
+030984
+M030984
+030985
+M030985
+030986
+M030986
+030987
+M030987
+030988
+M030988
+030989
+M030989
+030990
+M030990
+030991
+M030991
+030992
+M030992
+030993
+M030993
+030994
+M030994
+030995
+M030995
+030996
+M030996
+030997
+M030997
+030998
+M030998
+030999
+M030999
+031003
+M031003
+031004
+M031004
+031005
+M031005
+031006
+M031006
+031007
+M031007
+031008
+M031008
+031009
+M031009
+031010
+M031010
+031011
+M031011
+031012
+M031012
+031013
+M031013
+031014
+M031014
+031015
+M031015
+031016
+M031016
+031017
+M031017
+031018
+M031018
+031019
+M031019
+031020
+M031020
+031021
+M031021
+031022
+M031022
+031023
+M031023
+031024
+M031024
+031025
+M031025
+031026
+M031026
+031027
+M031027
+031028
+M031028
+031029
+M031029
+031042
+M031042
+031043
+M031043
+031044
+M031044
+031045
+M031045
+031046
+M031046
+031047
+M031047
+031048
+M031048
+031049
+M031049
+031050
+M031050
+031051
+M031051
+031078
+M031078
+031079
+M031079
+031080
+M031080
+031081
+M031081
+031082
+M031082
+031099
+M031099
+031100
+M031100
+031101
+M031101
+031102
+M031102
+031103
+M031103
+031104
+M031104
+031105
+M031105
+031106
+M031106
+031107
+M031107
+031108
+M031108
+031109
+M031109
+031110
+M031110
+031111
+M031111
+031112
+M031112
+031113
+M031113
+031114
+M031114
+031115
+M031115
+031116
+M031116
+031117
+M031117
+031118
+M031118
+031119
+M031119
+031120
+M031120
+031121
+M031121
+031122
+M031122
+031123
+M031123
+031124
+M031124
+031125
+M031125
+031130
+M031130
+031131
+M031131
+031132
+M031132
+031133
+M031133
+031134
+M031134
+031135
+M031135
+031136
+M031136
+031137
+M031137
+031138
+M031138
+031139
+M031139
+031140
+M031140
+031141
+M031141
+031142
+M031142
+031143
+M031143
+031144
+M031144
+031145
+M031145
+031146
+M031146
+031147
+M031147
+031148
+M031148
+031149
+M031149
+031150
+M031150
+031151
+M031151
+031152
+M031152
+031153
+M031153
+031154
+M031154
+031155
+M031155
+031156
+M031156
+031157
+M031157
+031158
+M031158
+031159
+M031159
+031160
+M031160
+031161
+M031161
+031162
+M031162
+031163
+M031163
+031164
+M031164
+031165
+M031165
+031166
+M031166
+031167
+M031167
+031168
+M031168
+031169
+M031169
+031170
+M031170
+031171
+M031171
+031172
+M031172
+031173
+M031173
+031174
+M031174
+031175
+M031175
+031176
+M031176
+031177
+M031177
+031178
+M031178
+031179
+M031179
+031180
+M031180
+031181
+M031181
+031182
+M031182
+031183
+M031183
+031184
+M031184
+031185
+M031185
+031186
+M031186
+031187
+M031187
+031188
+M031188
+031189
+M031189
+031190
+M031190
+031191
+M031191
+031192
+M031192
+031193
+M031193
+031194
+M031194
+031195
+M031195
+031196
+M031196
+031197
+M031197
+031198
+M031198
+031199
+M031199
+031200
+M031200
+031201
+M031201
+031202
+M031202
+031203
+M031203
+031204
+M031204
+031205
+M031205
+031206
+M031206
+031207
+M031207
+031208
+M031208
+031209
+M031209
+031210
+M031210
+031211
+M031211
+031212
+M031212
+031213
+M031213
+031214
+M031214
+031215
+M031215
+031216
+M031216
+031217
+M031217
+031218
+M031218
+031219
+M031219
+031220
+M031220
+031221
+M031221
+031222
+M031222
+031223
+M031223
+031224
+M031224
+031225
+M031225
+031226
+M031226
+031227
+M031227
+031228
+M031228
+031229
+M031229
+031230
+M031230
+031231
+M031231
+031232
+M031232
+031233
+M031233
+031234
+M031234
+031235
+M031235
+031236
+M031236
+031237
+M031237
+031238
+M031238
+031239
+M031239
+031240
+M031240
+031241
+M031241
+031242
+M031242
+031243
+M031243
+031244
+M031244
+031245
+M031245
+031246
+M031246
+031247
+M031247
+031248
+M031248
+031249
+M031249
+031250
+M031250
+031251
+M031251
+031252
+M031252
+031253
+M031253
+031254
+M031254
+031255
+M031255
+031256
+M031256
+031257
+M031257
+031258
+M031258
+031259
+M031259
+031260
+M031260
+031261
+M031261
+031262
+M031262
+031263
+M031263
+031264
+M031264
+031265
+M031265
+031266
+M031266
+031267
+M031267
+031268
+M031268
+031269
+M031269
+031270
+M031270
+031271
+M031271
+031272
+M031272
+031273
+M031273
+031274
+M031274
+031275
+M031275
+031276
+M031276
+031277
+M031277
+031278
+M031278
+031279
+M031279
+031280
+M031280
+031281
+M031281
+031282
+M031282
+031283
+M031283
+031284
+M031284
+031285
+M031285
+031286
+M031286
+031287
+M031287
+031288
+M031288
+031289
+M031289
+031290
+M031290
+031291
+M031291
+031292
+M031292
+031293
+M031293
+031294
+M031294
+031295
+M031295
+031296
+M031296
+031297
+M031297
+031298
+M031298
+031299
+M031299
+031300
+M031300
+031301
+M031301
+031302
+M031302
+031303
+M031303
+031304
+M031304
+031305
+M031305
+031306
+M031306
+031307
+M031307
+031308
+M031308
+031309
+M031309
+031310
+M031310
+031311
+M031311
+031312
+M031312
+031313
+M031313
+031314
+M031314
+031315
+M031315
+031316
+M031316
+031317
+M031317
+031318
+M031318
+031319
+M031319
+031320
+M031320
+031321
+M031321
+031322
+M031322
+031323
+M031323
+031324
+M031324
+031325
+M031325
+031326
+M031326
+031327
+M031327
+031328
+M031328
+031329
+M031329
+031330
+M031330
+031331
+M031331
+031332
+M031332
+031333
+M031333
+031334
+M031334
+031335
+M031335
+031336
+M031336
+031337
+M031337
+031338
+M031338
+031339
+M031339
+031340
+M031340
+031341
+M031341
+031342
+M031342
+031343
+M031343
+031344
+M031344
+031345
+M031345
+031346
+M031346
+031347
+M031347
+031348
+M031348
+031349
+M031349
+031350
+M031350
+031351
+M031351
+031352
+M031352
+031353
+M031353
+031354
+M031354
+031355
+M031355
+031356
+M031356
+031357
+M031357
+031358
+M031358
+031359
+M031359
+031360
+M031360
+031361
+M031361
+031362
+M031362
+031363
+M031363
+031364
+M031364
+031365
+M031365
+031366
+M031366
+031367
+M031367
+031368
+M031368
+031369
+M031369
+031370
+M031370
+031371
+M031371
+031372
+M031372
+031373
+M031373
+031374
+M031374
+031375
+M031375
+031376
+M031376
+031377
+M031377
+031378
+M031378
+031379
+M031379
+031380
+M031380
+031381
+M031381
+031382
+M031382
+031383
+M031383
+031384
+M031384
+031385
+M031385
+031386
+M031386
+031387
+M031387
+031388
+M031388
+031389
+M031389
+031390
+M031390
+031391
+M031391
+031392
+M031392
+031393
+M031393
+031394
+M031394
+031395
+M031395
+031396
+M031396
+031397
+M031397
+031398
+M031398
+031399
+M031399
+031400
+M031400
+031401
+M031401
+031402
+M031402
+031403
+M031403
+031404
+M031404
+031405
+M031405
+031406
+M031406
+031407
+M031407
+031408
+M031408
+031409
+M031409
+031410
+M031410
+031411
+M031411
+031412
+M031412
+031413
+M031413
+031414
+M031414
+031415
+M031415
+031416
+M031416
+031417
+M031417
+031418
+M031418
+031419
+M031419
+031420
+M031420
+031421
+M031421
+031422
+M031422
+031423
+M031423
+031424
+M031424
+031425
+M031425
+031426
+M031426
+031427
+M031427
+031428
+M031428
+031429
+M031429
+031430
+M031430
+031431
+M031431
+031432
+M031432
+031433
+M031433
+031434
+M031434
+031435
+M031435
+031436
+M031436
+031437
+M031437
+031438
+M031438
+031439
+M031439
+031440
+M031440
+031441
+M031441
+031442
+M031442
+031443
+M031443
+031444
+M031444
+031445
+M031445
+031446
+M031446
+031447
+M031447
+031448
+M031448
+031449
+M031449
+031450
+M031450
+031451
+M031451
+031452
+M031452
+031454
+M031454
+031455
+M031455
+031456
+M031456
+031457
+M031457
+031458
+M031458
+031459
+M031459
+031460
+M031460
+031461
+M031461
+031462
+M031462
+031463
+M031463
+031464
+M031464
+031465
+M031465
+031466
+M031466
+031467
+M031467
+031468
+M031468
+031469
+M031469
+031470
+M031470
+031471
+M031471
+031472
+M031472
+031473
+M031473
+031474
+M031474
+031475
+M031475
+031476
+M031476
+031477
+M031477
+031478
+M031478
+031479
+M031479
+031480
+M031480
+031481
+M031481
+031495
+M031495
+031496
+M031496
+031497
+M031497
+031498
+M031498
+031499
+M031499
+031500
+M031500
+031501
+M031501
+031502
+M031502
+031503
+M031503
+031504
+M031504
+031505
+M031505
+031506
+M031506
+031507
+M031507
+031508
+M031508
+031509
+M031509
+031510
+M031510
+031511
+M031511
+031512
+M031512
+031513
+M031513
+031514
+M031514
+031515
+M031515
+031516
+M031516
+031517
+M031517
+031518
+M031518
+031519
+M031519
+031520
+M031520
+031521
+M031521
+031522
+M031522
+031523
+M031523
+031524
+M031524
+031525
+M031525
+031526
+M031526
+031527
+M031527
+031528
+M031528
+031529
+M031529
+031530
+M031530
+031531
+M031531
+031532
+M031532
+031533
+M031533
+031534
+M031534
+031535
+M031535
+031536
+M031536
+031537
+M031537
+031538
+M031538
+031539
+M031539
+031540
+M031540
+031541
+M031541
+031542
+M031542
+031543
+M031543
+031544
+M031544
+031545
+M031545
+031546
+M031546
+031547
+M031547
+031548
+M031548
+031549
+M031549
+031550
+M031550
+031551
+M031551
+031552
+M031552
+031553
+M031553
+031554
+M031554
+031555
+M031555
+031556
+M031556
+031557
+M031557
+031558
+M031558
+031559
+M031559
+031560
+M031560
+031561
+M031561
+031562
+M031562
+031563
+M031563
+031564
+M031564
+031565
+M031565
+031566
+M031566
+031567
+M031567
+031568
+M031568
+031569
+M031569
+031570
+M031570
+031571
+M031571
+031572
+M031572
+031573
+M031573
+031574
+M031574
+031575
+M031575
+031576
+M031576
+031577
+M031577
+031578
+M031578
+031579
+M031579
+031580
+M031580
+031581
+M031581
+031582
+M031582
+031583
+M031583
+031584
+M031584
+031585
+M031585
+031586
+M031586
+031587
+M031587
+031588
+M031588
+031589
+M031589
+031590
+M031590
+031591
+M031591
+031592
+M031592
+031593
+M031593
+031594
+M031594
+031595
+M031595
+031596
+M031596
+031597
+M031597
+031598
+M031598
+031599
+M031599
+031600
+M031600
+031601
+M031601
+031602
+M031602
+031603
+M031603
+031604
+M031604
+031605
+M031605
+031610
+M031610
+031611
+M031611
+031612
+M031612
+031613
+M031613
+031614
+M031614
+031615
+M031615
+031616
+M031616
+031617
+M031617
+031618
+M031618
+031619
+M031619
+031620
+M031620
+031621
+M031621
+031622
+M031622
+031623
+M031623
+031624
+M031624
+031625
+M031625
+031626
+M031626
+031627
+M031627
+031628
+M031628
+031629
+M031629
+031630
+M031630
+031631
+M031631
+031632
+M031632
+031633
+M031633
+031634
+M031634
+031635
+M031635
+031636
+M031636
+031637
+M031637
+031638
+M031638
+031639
+M031639
+031640
+M031640
+031641
+M031641
+031654
+M031654
+031655
+M031655
+031656
+M031656
+031657
+M031657
+031658
+M031658
+031659
+M031659
+031660
+M031660
+031661
+M031661
+031662
+M031662
+031663
+M031663
+031664
+M031664
+031665
+M031665
+031666
+M031666
+031667
+M031667
+031668
+M031668
+031669
+M031669
+031670
+M031670
+031671
+M031671
+031672
+M031672
+031673
+M031673
+031674
+M031674
+031675
+M031675
+031676
+M031676
+031677
+M031677
+031678
+M031678
+031679
+M031679
+031680
+M031680
+031681
+M031681
+031682
+M031682
+031683
+M031683
+031684
+M031684
+031685
+M031685
+031686
+M031686
+031687
+M031687
+031688
+M031688
+031689
+M031689
+031690
+M031690
+031691
+M031691
+031692
+M031692
+031693
+M031693
+031694
+M031694
+031695
+M031695
+031696
+M031696
+031697
+M031697
+031698
+M031698
+031699
+M031699
+031700
+M031700
+031701
+M031701
+031702
+M031702
+031703
+M031703
+031704
+M031704
+031705
+M031705
+031706
+M031706
+031707
+M031707
+031708
+M031708
+031709
+M031709
+031710
+M031710
+031711
+M031711
+031712
+M031712
+031713
+M031713
+031714
+M031714
+031715
+M031715
+031716
+M031716
+031717
+M031717
+031718
+M031718
+031719
+M031719
+031720
+M031720
+031721
+M031721
+031722
+M031722
+031723
+M031723
+031724
+M031724
+031725
+M031725
+031726
+M031726
+031727
+M031727
+031728
+M031728
+031729
+M031729
+031730
+M031730
+031731
+M031731
+031732
+M031732
+031733
+M031733
+031734
+M031734
+031735
+M031735
+031736
+M031736
+031737
+M031737
+031738
+M031738
+031739
+M031739
+031740
+M031740
+031741
+M031741
+031742
+M031742
+031743
+M031743
+031744
+M031744
+031745
+M031745
+031746
+M031746
+031747
+M031747
+031748
+M031748
+031749
+M031749
+031750
+M031750
+031751
+M031751
+031752
+M031752
+031753
+M031753
+031754
+M031754
+031755
+M031755
+031756
+M031756
+031757
+M031757
+031758
+M031758
+031759
+M031759
+031760
+M031760
+031761
+M031761
+031762
+M031762
+031763
+M031763
+031764
+M031764
+031765
+M031765
+031766
+M031766
+031767
+M031767
+031768
+M031768
+031769
+M031769
+031770
+M031770
+031771
+M031771
+031772
+M031772
+031773
+M031773
+031774
+M031774
+031775
+M031775
+031776
+M031776
+031777
+M031777
+031778
+M031778
+031779
+M031779
+031780
+M031780
+031781
+M031781
+031782
+M031782
+031783
+M031783
+031784
+M031784
+031785
+M031785
+031786
+M031786
+031787
+M031787
+031788
+M031788
+031789
+M031789
+031790
+M031790
+031791
+M031791
+031792
+M031792
+031793
+M031793
+031794
+M031794
+031795
+M031795
+031796
+M031796
+031797
+M031797
+031798
+M031798
+031799
+M031799
+031800
+M031800
+031801
+M031801
+031802
+M031802
+031803
+M031803
+031804
+M031804
+031805
+M031805
+031806
+M031806
+031807
+M031807
+031808
+M031808
+031809
+M031809
+031810
+M031810
+031811
+M031811
+031812
+M031812
+031813
+M031813
+031814
+M031814
+031815
+M031815
+031816
+M031816
+031817
+M031817
+031818
+M031818
+031819
+M031819
+031820
+M031820
+031826
+M031826
+031827
+M031827
+031828
+M031828
+031829
+M031829
+031830
+M031830
+031831
+M031831
+031832
+M031832
+031833
+M031833
+031834
+M031834
+031835
+M031835
+031836
+M031836
+031837
+M031837
+031838
+M031838
+031839
+M031839
+031845
+M031845
+031846
+M031846
+031847
+M031847
+031848
+M031848
+031849
+M031849
+031850
+M031850
+031851
+M031851
+031852
+M031852
+031853
+M031853
+031854
+M031854
+031855
+M031855
+031856
+M031856
+031857
+M031857
+031858
+M031858
+031859
+M031859
+031860
+M031860
+031861
+M031861
+031862
+M031862
+031863
+M031863
+031864
+M031864
+031865
+M031865
+031866
+M031866
+031867
+M031867
+031868
+M031868
+031869
+M031869
+031870
+M031870
+031871
+M031871
+031872
+M031872
+031883
+M031883
+031884
+M031884
+031885
+M031885
+031886
+M031886
+031887
+M031887
+031888
+M031888
+031889
+M031889
+031890
+M031890
+031891
+M031891
+031892
+M031892
+031893
+M031893
+031894
+M031894
+031895
+M031895
+031896
+M031896
+031897
+M031897
+031898
+M031898
+031899
+M031899
+031900
+M031900
+031901
+M031901
+031902
+M031902
+031926
+M031926
+031927
+M031927
+031928
+M031928
+031929
+M031929
+031930
+M031930
+031931
+M031931
+031932
+M031932
+031933
+M031933
+031934
+M031934
+031942
+M031942
+031943
+M031943
+031944
+M031944
+031945
+M031945
+031946
+M031946
+031947
+M031947
+031948
+M031948
+031949
+M031949
+031988
+M031988
+031989
+M031989
+031990
+M031990
+031991
+M031991
+031992
+M031992
+031993
+M031993
+031994
+M031994
+031995
+M031995
+031996
+M031996
+031997
+M031997
+031998
+M031998
+031999
+M031999
+032000
+M032000
+032001
+M032001
+032002
+M032002
+032003
+M032003
+032004
+M032004
+032005
+M032005
+032006
+M032006
+032012
+M032012
+032013
+M032013
+032014
+M032014
+032015
+M032015
+032016
+M032016
+032017
+M032017
+032018
+M032018
+032019
+M032019
+032020
+M032020
+032021
+M032021
+032022
+M032022
+032023
+M032023
+032024
+M032024
+032025
+M032025
+032026
+M032026
+032027
+M032027
+032028
+M032028
+032029
+M032029
+032030
+M032030
+032031
+M032031
+032032
+M032032
+032033
+M032033
+032034
+M032034
+032035
+M032035
+032036
+M032036
+032037
+M032037
+032038
+M032038
+032039
+M032039
+032040
+M032040
+032041
+M032041
+032052
+M032052
+032053
+M032053
+032054
+M032054
+032055
+M032055
+032056
+M032056
+032057
+M032057
+032076
+M032076
+032077
+M032077
+032078
+M032078
+032079
+M032079
+032080
+M032080
+032081
+M032081
+032085
+M032085
+032086
+M032086
+032087
+M032087
+032088
+M032088
+032089
+M032089
+032095
+M032095
+032096
+M032096
+032097
+M032097
+032098
+M032098
+032099
+M032099
+032100
+M032100
+032101
+M032101
+032103
+M032103
+032104
+M032104
+032105
+M032105
+032106
+M032106
+032107
+M032107
+032108
+M032108
+032109
+M032109
+032110
+M032110
+032111
+M032111
+032112
+M032112
+032113
+M032113
+032114
+M032114
+032115
+M032115
+032116
+M032116
+032117
+M032117
+032118
+M032118
+032119
+M032119
+032120
+M032120
+032121
+M032121
+032122
+M032122
+032123
+M032123
+032124
+M032124
+032125
+M032125
+032126
+M032126
+032127
+M032127
+032128
+M032128
+032129
+M032129
+032130
+M032130
+032131
+M032131
+032132
+M032132
+032133
+M032133
+032141
+M032141
+032142
+M032142
+032143
+M032143
+032144
+M032144
+032145
+M032145
+032146
+M032146
+032147
+M032147
+032148
+M032148
+032149
+M032149
+032150
+M032150
+032151
+M032151
+032152
+M032152
+032153
+M032153
+032154
+M032154
+032155
+M032155
+032156
+M032156
+032157
+M032157
+032158
+M032158
+032159
+M032159
+032160
+M032160
+032161
+M032161
+032162
+M032162
+032163
+M032163
+032164
+M032164
+032165
+M032165
+032166
+M032166
+032167
+M032167
+032168
+M032168
+032169
+M032169
+032170
+M032170
+032171
+M032171
+032172
+M032172
+032173
+M032173
+032174
+M032174
+032175
+M032175
+032176
+M032176
+032182
+M032182
+032183
+M032183
+032184
+M032184
+032185
+M032185
+032186
+M032186
+032187
+M032187
+032188
+M032188
+032189
+M032189
+032190
+M032190
+032191
+M032191
+032192
+M032192
+032193
+M032193
+032194
+M032194
+032195
+M032195
+032196
+M032196
+032197
+M032197
+032198
+M032198
+032199
+M032199
+032200
+M032200
+032201
+M032201
+032202
+M032202
+032203
+M032203
+032215
+M032215
+032216
+M032216
+032217
+M032217
+032218
+M032218
+032219
+M032219
+032220
+M032220
+032221
+M032221
+032222
+M032222
+032223
+M032223
+032224
+M032224
+032225
+M032225
+032226
+M032226
+032227
+M032227
+032228
+M032228
+032229
+M032229
+032282
+M032282
+032283
+M032283
+032284
+M032284
+032285
+M032285
+032286
+M032286
+032287
+M032287
+032288
+M032288
+032289
+M032289
+032290
+M032290
+032291
+M032291
+032292
+M032292
+032293
+M032293
+032294
+M032294
+032295
+M032295
+032296
+M032296
+032297
+M032297
+032298
+M032298
+032299
+M032299
+032300
+M032300
+032301
+M032301
+032302
+M032302
+032303
+M032303
+032304
+M032304
+032305
+M032305
+032306
+M032306
+032307
+M032307
+032308
+M032308
+032309
+M032309
+032310
+M032310
+032311
+M032311
+032312
+M032312
+032313
+M032313
+032314
+M032314
+032315
+M032315
+032316
+M032316
+032317
+M032317
+032318
+M032318
+032319
+M032319
+032320
+M032320
+032321
+M032321
+032322
+M032322
+032323
+M032323
+032324
+M032324
+032325
+M032325
+032326
+M032326
+032327
+M032327
+032328
+M032328
+032329
+M032329
+032330
+M032330
+032331
+M032331
+032332
+M032332
+032333
+M032333
+032334
+M032334
+032341
+M032341
+032342
+M032342
+032343
+M032343
+032344
+M032344
+032345
+M032345
+032346
+M032346
+032347
+M032347
+032348
+M032348
+032349
+M032349
+032350
+M032350
+032351
+M032351
+032352
+M032352
+032353
+M032353
+032354
+M032354
+032355
+M032355
+032356
+M032356
+032357
+M032357
+032358
+M032358
+032359
+M032359
+032360
+M032360
+032361
+M032361
+032362
+M032362
+032363
+M032363
+032364
+M032364
+032365
+M032365
+032366
+M032366
+032367
+M032367
+032368
+M032368
+032369
+M032369
+032370
+M032370
+032371
+M032371
+032372
+M032372
+032373
+M032373
+032374
+M032374
+032375
+M032375
+032376
+M032376
+032377
+M032377
+032378
+M032378
+032394
+M032394
+032395
+M032395
+032396
+M032396
+032397
+M032397
+032398
+M032398
+032399
+M032399
+032400
+M032400
+032401
+M032401
+032402
+M032402
+032403
+M032403
+032404
+M032404
+032405
+M032405
+032406
+M032406
+032407
+M032407
+032412
+M032412
+032413
+M032413
+032414
+M032414
+032415
+M032415
+032416
+M032416
+032417
+M032417
+032418
+M032418
+032419
+M032419
+032420
+M032420
+032421
+M032421
+032422
+M032422
+032423
+M032423
+032424
+M032424
+032425
+M032425
+032426
+M032426
+032427
+M032427
+032428
+M032428
+032429
+M032429
+032430
+M032430
+032431
+M032431
+032432
+M032432
+032433
+M032433
+032434
+M032434
+032435
+M032435
+032436
+M032436
+032437
+M032437
+032438
+M032438
+032439
+M032439
+032440
+M032440
+032441
+M032441
+032442
+M032442
+032443
+M032443
+032444
+M032444
+032456
+M032456
+032457
+M032457
+032458
+M032458
+032459
+M032459
+032460
+M032460
+032461
+M032461
+032462
+M032462
+032463
+M032463
+032464
+M032464
+032474
+M032474
+032475
+M032475
+032476
+M032476
+032477
+M032477
+032478
+M032478
+032479
+M032479
+032480
+M032480
+032481
+M032481
+032482
+M032482
+032483
+M032483
+032484
+M032484
+032485
+M032485
+032486
+M032486
+032487
+M032487
+032488
+M032488
+032489
+M032489
+032491
+M032491
+032492
+M032492
+032493
+M032493
+032494
+M032494
+032495
+M032495
+032496
+M032496
+032503
+M032503
+032504
+M032504
+032505
+M032505
+032506
+M032506
+032507
+M032507
+032508
+M032508
+032509
+M032509
+032510
+M032510
+032511
+M032511
+032512
+M032512
+032513
+M032513
+032514
+M032514
+032515
+M032515
+032516
+M032516
+032517
+M032517
+032526
+M032526
+032527
+M032527
+032528
+M032528
+032529
+M032529
+032530
+M032530
+032531
+M032531
+032532
+M032532
+032533
+M032533
+032534
+M032534
+032535
+M032535
+032536
+M032536
+032537
+M032537
+032538
+M032538
+032539
+M032539
+032540
+M032540
+032541
+M032541
+032542
+M032542
+032543
+M032543
+032544
+M032544
+032545
+M032545
+032546
+M032546
+032547
+M032547
+032548
+M032548
+032549
+M032549
+032550
+M032550
+032551
+M032551
+032552
+M032552
+032553
+M032553
+032554
+M032554
+032555
+M032555
+032556
+M032556
+032557
+M032557
+032558
+M032558
+032559
+M032559
+032560
+M032560
+032561
+M032561
+032562
+M032562
+032563
+M032563
+032564
+M032564
+032565
+M032565
+032566
+M032566
+032567
+M032567
+032568
+M032568
+032569
+M032569
+032570
+M032570
+032571
+M032571
+032572
+M032572
+032573
+M032573
+032574
+M032574
+032575
+M032575
+032576
+M032576
+032577
+M032577
+032578
+M032578
+032579
+M032579
+032580
+M032580
+032581
+M032581
+032582
+M032582
+032583
+M032583
+032584
+M032584
+032585
+M032585
+032586
+M032586
+032587
+M032587
+032588
+M032588
+032589
+M032589
+032590
+M032590
+032591
+M032591
+032592
+M032592
+032593
+M032593
+032594
+M032594
+032595
+M032595
+032596
+M032596
+032597
+M032597
+032598
+M032598
+032599
+M032599
+032600
+M032600
+032606
+M032606
+032607
+M032607
+032608
+M032608
+032609
+M032609
+032610
+M032610
+032611
+M032611
+032612
+M032612
+032613
+M032613
+032614
+M032614
+032615
+M032615
+032616
+M032616
+032617
+M032617
+032618
+M032618
+032619
+M032619
+032620
+M032620
+032621
+M032621
+032622
+M032622
+032623
+M032623
+032624
+M032624
+032625
+M032625
+032626
+M032626
+032627
+M032627
+032628
+M032628
+032629
+M032629
+032630
+M032630
+032631
+M032631
+032632
+M032632
+032633
+M032633
+032634
+M032634
+032635
+M032635
+032636
+M032636
+032637
+M032637
+032638
+M032638
+032639
+M032639
+032640
+M032640
+032641
+M032641
+032642
+M032642
+032643
+M032643
+032644
+M032644
+032645
+M032645
+032646
+M032646
+032647
+M032647
+032648
+M032648
+032649
+M032649
+032650
+M032650
+032675
+M032675
+032676
+M032676
+032677
+M032677
+032678
+M032678
+032679
+M032679
+032680
+M032680
+032681
+M032681
+032682
+M032682
+032683
+M032683
+032684
+M032684
+032685
+M032685
+032686
+M032686
+032687
+M032687
+032688
+M032688
+032689
+M032689
+032690
+M032690
+032691
+M032691
+032692
+M032692
+032693
+M032693
+032694
+M032694
+032695
+M032695
+032696
+M032696
+032697
+M032697
+032698
+M032698
+032699
+M032699
+032700
+M032700
+032701
+M032701
+032702
+M032702
+032703
+M032703
+032704
+M032704
+032705
+M032705
+032706
+M032706
+032707
+M032707
+032724
+M032724
+032725
+M032725
+032726
+M032726
+032727
+M032727
+032728
+M032728
+032729
+M032729
+032730
+M032730
+032731
+M032731
+032732
+M032732
+032733
+M032733
+032734
+M032734
+032735
+M032735
+032736
+M032736
+032737
+M032737
+032738
+M032738
+032739
+M032739
+032740
+M032740
+032741
+M032741
+032742
+M032742
+032743
+M032743
+032744
+M032744
+032745
+M032745
+032746
+M032746
+032747
+M032747
+032748
+M032748
+032749
+M032749
+032750
+M032750
+032751
+M032751
+032752
+M032752
+032753
+M032753
+032754
+M032754
+032755
+M032755
+032756
+M032756
+032757
+M032757
+032758
+M032758
+032759
+M032759
+032760
+M032760
+032761
+M032761
+032762
+M032762
+032763
+M032763
+032764
+M032764
+032765
+M032765
+032766
+M032766
+032767
+M032767
+032768
+M032768
+032769
+M032769
+032770
+M032770
+032771
+M032771
+032772
+M032772
+032773
+M032773
+032774
+M032774
+032775
+M032775
+032776
+M032776
+032777
+M032777
+032778
+M032778
+032779
+M032779
+032781
+M032781
+032782
+M032782
+032783
+M032783
+032784
+M032784
+032785
+M032785
+032786
+M032786
+032787
+M032787
+032788
+M032788
+032789
+M032789
+032790
+M032790
+032791
+M032791
+032792
+M032792
+032793
+M032793
+032794
+M032794
+032795
+M032795
+032796
+M032796
+032797
+M032797
+032798
+M032798
+032799
+M032799
+032800
+M032800
+032903
+M032903
+032904
+M032904
+032905
+M032905
+032906
+M032906
+032907
+M032907
+032908
+M032908
+032909
+M032909
+032910
+M032910
+032911
+M032911
+032912
+M032912
+032913
+M032913
+032914
+M032914
+032915
+M032915
+032916
+M032916
+032917
+M032917
+032924
+M032924
+032925
+M032925
+032926
+M032926
+032927
+M032927
+032928
+M032928
+032929
+M032929
+032930
+M032930
+032941
+M032941
+032942
+M032942
+032943
+M032943
+032944
+M032944
+032945
+M032945
+032946
+M032946
+032947
+M032947
+032948
+M032948
+032949
+M032949
+032950
+M032950
+032951
+M032951
+032952
+M032952
+032953
+M032953
+032954
+M032954
+032955
+M032955
+032956
+M032956
+032957
+M032957
+032958
+M032958
+032959
+M032959
+032960
+M032960
+032961
+M032961
+032962
+M032962
+032963
+M032963
+032964
+M032964
+032965
+M032965
+032966
+M032966
+032967
+M032967
+032968
+M032968
+032969
+M032969
+032970
+M032970
+032971
+M032971
+032972
+M032972
+032973
+M032973
+032974
+M032974
+032975
+M032975
+032976
+M032976
+032977
+M032977
+032978
+M032978
+032979
+M032979
+032980
+M032980
+032981
+M032981
+032982
+M032982
+032983
+M032983
+032984
+M032984
+032985
+M032985
+032986
+M032986
+032987
+M032987
+032988
+M032988
+032989
+M032989
+032990
+M032990
+032991
+M032991
+032992
+M032992
+032993
+M032993
+032994
+M032994
+032996
+M032996
+032997
+M032997
+032998
+M032998
+032999
+M032999
+033000
+M033000
+033001
+M033001
+033002
+M033002
+033003
+M033003
+033004
+M033004
+033005
+M033005
+033006
+M033006
+033007
+M033007
+033008
+M033008
+033009
+M033009
+033010
+M033010
+033011
+M033011
+033012
+M033012
+033013
+M033013
+033014
+M033014
+033015
+M033015
+033016
+M033016
+033017
+M033017
+033018
+M033018
+033019
+M033019
+033020
+M033020
+033021
+M033021
+033022
+M033022
+033023
+M033023
+033024
+M033024
+033025
+M033025
+033026
+M033026
+033027
+M033027
+033028
+M033028
+033029
+M033029
+033030
+M033030
+033031
+M033031
+033032
+M033032
+033033
+M033033
+033034
+M033034
+033035
+M033035
+033036
+M033036
+033037
+M033037
+033038
+M033038
+033039
+M033039
+033040
+M033040
+033041
+M033041
+033042
+M033042
+033043
+M033043
+033049
+M033049
+033050
+M033050
+033051
+M033051
+033052
+M033052
+033053
+M033053
+033054
+M033054
+033065
+M033065
+033066
+M033066
+033067
+M033067
+033068
+M033068
+033069
+M033069
+033070
+M033070
+033071
+M033071
+033072
+M033072
+033080
+M033080
+033081
+M033081
+033082
+M033082
+033083
+M033083
+033084
+M033084
+033085
+M033085
+033086
+M033086
+033087
+M033087
+033088
+M033088
+033089
+M033089
+033090
+M033090
+033091
+M033091
+033092
+M033092
+033093
+M033093
+033094
+M033094
+033095
+M033095
+033096
+M033096
+033097
+M033097
+033098
+M033098
+033099
+M033099
+033100
+M033100
+033101
+M033101
+033110
+M033110
+033111
+M033111
+033112
+M033112
+033113
+M033113
+033114
+M033114
+033115
+M033115
+033116
+M033116
+033117
+M033117
+033118
+M033118
+033119
+M033119
+033120
+M033120
+033121
+M033121
+033122
+M033122
+033123
+M033123
+033124
+M033124
+033125
+M033125
+033126
+M033126
+033127
+M033127
+033128
+M033128
+033129
+M033129
+033130
+M033130
+033131
+M033131
+033132
+M033132
+033133
+M033133
+033134
+M033134
+033135
+M033135
+033136
+M033136
+033137
+M033137
+033138
+M033138
+033139
+M033139
+033140
+M033140
+033141
+M033141
+033142
+M033142
+033143
+M033143
+033144
+M033144
+033145
+M033145
+033146
+M033146
+033147
+M033147
+033148
+M033148
+033149
+M033149
+033150
+M033150
+033151
+M033151
+033152
+M033152
+033153
+M033153
+033154
+M033154
+033155
+M033155
+033156
+M033156
+033157
+M033157
+033158
+M033158
+033159
+M033159
+033160
+M033160
+033161
+M033161
+033162
+M033162
+033163
+M033163
+033164
+M033164
+033165
+M033165
+033166
+M033166
+033167
+M033167
+033168
+M033168
+033169
+M033169
+033170
+M033170
+033171
+M033171
+033172
+M033172
+033173
+M033173
+033174
+M033174
+033175
+M033175
+033176
+M033176
+033177
+M033177
+033178
+M033178
+033179
+M033179
+033180
+M033180
+033181
+M033181
+033182
+M033182
+033183
+M033183
+033184
+M033184
+033185
+M033185
+033186
+M033186
+033187
+M033187
+033188
+M033188
+033189
+M033189
+033190
+M033190
+033191
+M033191
+033192
+M033192
+033193
+M033193
+033194
+M033194
+033195
+M033195
+033196
+M033196
+033197
+M033197
+033198
+M033198
+033199
+M033199
+033200
+M033200
+033201
+M033201
+033202
+M033202
+033203
+M033203
+033204
+M033204
+033205
+M033205
+033206
+M033206
+033207
+M033207
+033229
+M033229
+033230
+M033230
+033231
+M033231
+033232
+M033232
+033233
+M033233
+033234
+M033234
+033235
+M033235
+033236
+M033236
+033238
+M033238
+033239
+M033239
+033240
+M033240
+033241
+M033241
+033242
+M033242
+033243
+M033243
+033244
+M033244
+033245
+M033245
+033246
+M033246
+033247
+M033247
+033248
+M033248
+033249
+M033249
+033250
+M033250
+033251
+M033251
+033252
+M033252
+033253
+M033253
+033254
+M033254
+033255
+M033255
+033256
+M033256
+033257
+M033257
+033258
+M033258
+033259
+M033259
+033260
+M033260
+033261
+M033261
+033262
+M033262
+033263
+M033263
+033271
+M033271
+033272
+M033272
+033273
+M033273
+033274
+M033274
+033275
+M033275
+033276
+M033276
+033277
+M033277
+033278
+M033278
+033279
+M033279
+033280
+M033280
+033281
+M033281
+033282
+M033282
+033283
+M033283
+033284
+M033284
+033285
+M033285
+033286
+M033286
+033287
+M033287
+033288
+M033288
+033289
+M033289
+033290
+M033290
+033291
+M033291
+033292
+M033292
+033293
+M033293
+033294
+M033294
+033295
+M033295
+033296
+M033296
+033297
+M033297
+033298
+M033298
+033299
+M033299
+033300
+M033300
+033311
+M033311
+033312
+M033312
+033313
+M033313
+033339
+M033339
+033340
+M033340
+033341
+M033341
+033342
+M033342
+033343
+M033343
+033344
+M033344
+033345
+M033345
+033346
+M033346
+033347
+M033347
+033348
+M033348
+033349
+M033349
+033350
+M033350
+033351
+M033351
+033352
+M033352
+033353
+M033353
+033354
+M033354
+033355
+M033355
+033356
+M033356
+033357
+M033357
+033358
+M033358
+033359
+M033359
+033360
+M033360
+033361
+M033361
+033362
+M033362
+033363
+M033363
+033364
+M033364
+033365
+M033365
+033366
+M033366
+033367
+M033367
+033368
+M033368
+033369
+M033369
+033370
+M033370
+033371
+M033371
+033372
+M033372
+033373
+M033373
+033374
+M033374
+033375
+M033375
+033376
+M033376
+033377
+M033377
+033378
+M033378
+033379
+M033379
+033380
+M033380
+033381
+M033381
+033382
+M033382
+033383
+M033383
+033384
+M033384
+033385
+M033385
+033386
+M033386
+033387
+M033387
+033388
+M033388
+033389
+M033389
+033390
+M033390
+033391
+M033391
+033392
+M033392
+033393
+M033393
+033394
+M033394
+033395
+M033395
+033396
+M033396
+033397
+M033397
+033398
+M033398
+033399
+M033399
+033400
+M033400
+033401
+M033401
+033402
+M033402
+033403
+M033403
+033404
+M033404
+033405
+M033405
+033406
+M033406
+033407
+M033407
+033408
+M033408
+033409
+M033409
+033410
+M033410
+033411
+M033411
+033412
+M033412
+033413
+M033413
+033414
+M033414
+033415
+M033415
+033416
+M033416
+033417
+M033417
+033418
+M033418
+033419
+M033419
+033420
+M033420
+033421
+M033421
+033422
+M033422
+033423
+M033423
+033424
+M033424
+033425
+M033425
+033426
+M033426
+033427
+M033427
+033428
+M033428
+033429
+M033429
+033430
+M033430
+033431
+M033431
+033432
+M033432
+033433
+M033433
+033434
+M033434
+033435
+M033435
+033436
+M033436
+033440
+M033440
+033441
+M033441
+033442
+M033442
+033443
+M033443
+033444
+M033444
+033445
+M033445
+033446
+M033446
+033447
+M033447
+033448
+M033448
+033449
+M033449
+033450
+M033450
+033451
+M033451
+033452
+M033452
+033453
+M033453
+033454
+M033454
+033455
+M033455
+033456
+M033456
+033457
+M033457
+033458
+M033458
+033459
+M033459
+033460
+M033460
+033461
+M033461
+033462
+M033462
+033463
+M033463
+033464
+M033464
+033465
+M033465
+033511
+M033511
+033512
+M033512
+033513
+M033513
+033514
+M033514
+033515
+M033515
+033516
+M033516
+033517
+M033517
+033518
+M033518
+033519
+M033519
+033520
+M033520
+033521
+M033521
+033522
+M033522
+033523
+M033523
+033524
+M033524
+033525
+M033525
+033573
+M033573
+033574
+M033574
+033575
+M033575
+033576
+M033576
+033577
+M033577
+033578
+M033578
+033579
+M033579
+033580
+M033580
+033581
+M033581
+033582
+M033582
+033583
+M033583
+033584
+M033584
+033585
+M033585
+033586
+M033586
+033587
+M033587
+033588
+M033588
+033589
+M033589
+033590
+M033590
+033591
+M033591
+033592
+M033592
+033593
+M033593
+033594
+M033594
+033595
+M033595
+033596
+M033596
+033597
+M033597
+033598
+M033598
+033599
+M033599
+033600
+M033600
+033601
+M033601
+033602
+M033602
+033603
+M033603
+033604
+M033604
+033605
+M033605
+033606
+M033606
+033607
+M033607
+033608
+M033608
+033609
+M033609
+033610
+M033610
+033611
+M033611
+033612
+M033612
+033613
+M033613
+033614
+M033614
+033615
+M033615
+033616
+M033616
+033617
+M033617
+033618
+M033618
+033619
+M033619
+033620
+M033620
+033621
+M033621
+033622
+M033622
+033623
+M033623
+033624
+M033624
+033625
+M033625
+033626
+M033626
+033627
+M033627
+033628
+M033628
+033629
+M033629
+033630
+M033630
+033631
+M033631
+033632
+M033632
+033633
+M033633
+033634
+M033634
+033635
+M033635
+033636
+M033636
+033637
+M033637
+033638
+M033638
+033639
+M033639
+033640
+M033640
+033641
+M033641
+033642
+M033642
+033643
+M033643
+033644
+M033644
+033645
+M033645
+033646
+M033646
+033647
+M033647
+033648
+M033648
+033649
+M033649
+033650
+M033650
+033651
+M033651
+033652
+M033652
+033653
+M033653
+033654
+M033654
+033655
+M033655
+033656
+M033656
+033657
+M033657
+033658
+M033658
+033659
+M033659
+033660
+M033660
+033661
+M033661
+033662
+M033662
+033663
+M033663
+033664
+M033664
+033665
+M033665
+033666
+M033666
+033667
+M033667
+033668
+M033668
+033669
+M033669
+033670
+M033670
+033671
+M033671
+033672
+M033672
+033673
+M033673
+033674
+M033674
+033675
+M033675
+033676
+M033676
+033677
+M033677
+033678
+M033678
+033679
+M033679
+033680
+M033680
+033681
+M033681
+033682
+M033682
+033683
+M033683
+033684
+M033684
+033685
+M033685
+033686
+M033686
+033687
+M033687
+033688
+M033688
+033689
+M033689
+033690
+M033690
+033691
+M033691
+033692
+M033692
+033693
+M033693
+033694
+M033694
+033695
+M033695
+033696
+M033696
+033697
+M033697
+033698
+M033698
+033699
+M033699
+033707
+M033707
+033708
+M033708
+033709
+M033709
+033710
+M033710
+033711
+M033711
+033712
+M033712
+033713
+M033713
+033714
+M033714
+033715
+M033715
+033716
+M033716
+033717
+M033717
+033718
+M033718
+033719
+M033719
+033720
+M033720
+033721
+M033721
+033722
+M033722
+033728
+M033728
+033729
+M033729
+033730
+M033730
+033731
+M033731
+033732
+M033732
+033733
+M033733
+033734
+M033734
+033735
+M033735
+033767
+M033767
+033768
+M033768
+033769
+M033769
+033770
+M033770
+033771
+M033771
+033772
+M033772
+033773
+M033773
+033774
+M033774
+033775
+M033775
+033783
+M033783
+033784
+M033784
+033785
+M033785
+033786
+M033786
+033787
+M033787
+033788
+M033788
+033789
+M033789
+033790
+M033790
+033791
+M033791
+033792
+M033792
+033793
+M033793
+033794
+M033794
+033795
+M033795
+033796
+M033796
+033797
+M033797
+033798
+M033798
+033799
+M033799
+033800
+M033800
+033801
+M033801
+033802
+M033802
+033803
+M033803
+033804
+M033804
+033805
+M033805
+033806
+M033806
+033807
+M033807
+033808
+M033808
+033809
+M033809
+033810
+M033810
+033811
+M033811
+033812
+M033812
+033813
+M033813
+033814
+M033814
+033815
+M033815
+033816
+M033816
+033817
+M033817
+033818
+M033818
+033819
+M033819
+033820
+M033820
+033821
+M033821
+033822
+M033822
+033823
+M033823
+033824
+M033824
+033825
+M033825
+033826
+M033826
+033827
+M033827
+033828
+M033828
+033829
+M033829
+033830
+M033830
+033831
+M033831
+033832
+M033832
+033833
+M033833
+033834
+M033834
+033835
+M033835
+033836
+M033836
+033837
+M033837
+033838
+M033838
+033839
+M033839
+033840
+M033840
+033841
+M033841
+033842
+M033842
+033843
+M033843
+033844
+M033844
+033845
+M033845
+033846
+M033846
+033847
+M033847
+033848
+M033848
+033849
+M033849
+033850
+M033850
+033851
+M033851
+033852
+M033852
+033853
+M033853
+033854
+M033854
+033855
+M033855
+033856
+M033856
+033857
+M033857
+033858
+M033858
+033859
+M033859
+033860
+M033860
+033861
+M033861
+033862
+M033862
+033863
+M033863
+033864
+M033864
+033865
+M033865
+033866
+M033866
+033867
+M033867
+033868
+M033868
+033869
+M033869
+033870
+M033870
+033871
+M033871
+033872
+M033872
+033873
+M033873
+033874
+M033874
+033875
+M033875
+033876
+M033876
+033877
+M033877
+033878
+M033878
+033879
+M033879
+033880
+M033880
+033881
+M033881
+033882
+M033882
+033883
+M033883
+033884
+M033884
+033885
+M033885
+033886
+M033886
+033887
+M033887
+033888
+M033888
+033889
+M033889
+033890
+M033890
+033891
+M033891
+033892
+M033892
+033893
+M033893
+033894
+M033894
+033895
+M033895
+033901
+M033901
+033902
+M033902
+033903
+M033903
+033904
+M033904
+033905
+M033905
+033906
+M033906
+033907
+M033907
+033908
+M033908
+033909
+M033909
+033910
+M033910
+033911
+M033911
+033912
+M033912
+033913
+M033913
+033914
+M033914
+033915
+M033915
+033916
+M033916
+033917
+M033917
+033918
+M033918
+033919
+M033919
+033920
+M033920
+033921
+M033921
+033922
+M033922
+033923
+M033923
+033924
+M033924
+033925
+M033925
+033926
+M033926
+033927
+M033927
+033928
+M033928
+033929
+M033929
+033930
+M033930
+033931
+M033931
+033932
+M033932
+033933
+M033933
+033934
+M033934
+033935
+M033935
+033936
+M033936
+033937
+M033937
+033938
+M033938
+033942
+M033942
+033943
+M033943
+033944
+M033944
+033945
+M033945
+033946
+M033946
+033951
+M033951
+033952
+M033952
+033953
+M033953
+033954
+M033954
+033955
+M033955
+033956
+M033956
+033957
+M033957
+033958
+M033958
+033959
+M033959
+033960
+M033960
+033961
+M033961
+033962
+M033962
+033963
+M033963
+033964
+M033964
+033974
+M033974
+033975
+M033975
+033976
+M033976
+033977
+M033977
+033978
+M033978
+033979
+M033979
+033980
+M033980
+033981
+M033981
+033982
+M033982
+033983
+M033983
+033984
+M033984
+033985
+M033985
+033986
+M033986
+033991
+M033991
+033992
+M033992
+033993
+M033993
+033994
+M033994
+033995
+M033995
+033996
+M033996
+033997
+M033997
+033998
+M033998
+033999
+M033999
+034000
+M034000
+034001
+M034001
+034002
+M034002
+034003
+M034003
+034004
+M034004
+034005
+M034005
+034006
+M034006
+034007
+M034007
+034008
+M034008
+034009
+M034009
+034010
+M034010
+034011
+M034011
+034012
+M034012
+034013
+M034013
+034014
+M034014
+034015
+M034015
+034016
+M034016
+034017
+M034017
+034018
+M034018
+034019
+M034019
+034020
+M034020
+034021
+M034021
+034022
+M034022
+034023
+M034023
+034024
+M034024
+034025
+M034025
+034026
+M034026
+034027
+M034027
+034028
+M034028
+034035
+M034035
+034036
+M034036
+034037
+M034037
+034038
+M034038
+034039
+M034039
+034040
+M034040
+034041
+M034041
+034042
+M034042
+034043
+M034043
+034044
+M034044
+034045
+M034045
+034046
+M034046
+034047
+M034047
+034048
+M034048
+034049
+M034049
+034050
+M034050
+034051
+M034051
+034052
+M034052
+034053
+M034053
+034054
+M034054
+034055
+M034055
+034056
+M034056
+034057
+M034057
+034067
+M034067
+034068
+M034068
+034072
+M034072
+034073
+M034073
+034074
+M034074
+034075
+M034075
+034076
+M034076
+034077
+M034077
+034078
+M034078
+034079
+M034079
+034080
+M034080
+034081
+M034081
+034082
+M034082
+034083
+M034083
+034084
+M034084
+034085
+M034085
+034086
+M034086
+034087
+M034087
+034088
+M034088
+034089
+M034089
+034090
+M034090
+034091
+M034091
+034092
+M034092
+034093
+M034093
+034094
+M034094
+034095
+M034095
+034096
+M034096
+034097
+M034097
+034098
+M034098
+034099
+M034099
+034100
+M034100
+034101
+M034101
+034102
+M034102
+034103
+M034103
+034104
+M034104
+034105
+M034105
+034106
+M034106
+034107
+M034107
+034108
+M034108
+034109
+M034109
+034110
+M034110
+034111
+M034111
+034112
+M034112
+034113
+M034113
+034114
+M034114
+034115
+M034115
+034116
+M034116
+034117
+M034117
+034118
+M034118
+034119
+M034119
+034120
+M034120
+034121
+M034121
+034122
+M034122
+034123
+M034123
+034124
+M034124
+034125
+M034125
+034126
+M034126
+034127
+M034127
+034128
+M034128
+034129
+M034129
+034130
+M034130
+034131
+M034131
+034132
+M034132
+034133
+M034133
+034134
+M034134
+034135
+M034135
+034136
+M034136
+034137
+M034137
+034138
+M034138
+034139
+M034139
+034140
+M034140
+034141
+M034141
+034142
+M034142
+034143
+M034143
+034144
+M034144
+034145
+M034145
+034146
+M034146
+034147
+M034147
+034148
+M034148
+034149
+M034149
+034150
+M034150
+034151
+M034151
+034152
+M034152
+034153
+M034153
+034154
+M034154
+034155
+M034155
+034156
+M034156
+034157
+M034157
+034158
+M034158
+034159
+M034159
+034160
+M034160
+034161
+M034161
+034181
+M034181
+034182
+M034182
+034183
+M034183
+034184
+M034184
+034185
+M034185
+034186
+M034186
+034187
+M034187
+034188
+M034188
+034189
+M034189
+034190
+M034190
+034191
+M034191
+034192
+M034192
+034193
+M034193
+034194
+M034194
+034195
+M034195
+034196
+M034196
+034197
+M034197
+034198
+M034198
+034199
+M034199
+034200
+M034200
+034201
+M034201
+034202
+M034202
+034203
+M034203
+034204
+M034204
+034205
+M034205
+034206
+M034206
+034207
+M034207
+034208
+M034208
+034209
+M034209
+034219
+M034219
+034220
+M034220
+034221
+M034221
+034222
+M034222
+034223
+M034223
+034224
+M034224
+034225
+M034225
+034226
+M034226
+034227
+M034227
+034228
+M034228
+034229
+M034229
+034230
+M034230
+034231
+M034231
+034232
+M034232
+034233
+M034233
+034234
+M034234
+034235
+M034235
+034236
+M034236
+034237
+M034237
+034238
+M034238
+034239
+M034239
+034240
+M034240
+034241
+M034241
+034242
+M034242
+034243
+M034243
+034244
+M034244
+034245
+M034245
+034246
+M034246
+034247
+M034247
+034248
+M034248
+034249
+M034249
+034250
+M034250
+034251
+M034251
+034252
+M034252
+034253
+M034253
+034254
+M034254
+034255
+M034255
+034256
+M034256
+034257
+M034257
+034258
+M034258
+034259
+M034259
+034278
+M034278
+034279
+M034279
+034280
+M034280
+034281
+M034281
+034282
+M034282
+034283
+M034283
+034284
+M034284
+034285
+M034285
+034286
+M034286
+034287
+M034287
+034288
+M034288
+034289
+M034289
+034290
+M034290
+034291
+M034291
+034292
+M034292
+034293
+M034293
+034294
+M034294
+034295
+M034295
+034296
+M034296
+034297
+M034297
+034298
+M034298
+034299
+M034299
+034300
+M034300
+034301
+M034301
+034302
+M034302
+034303
+M034303
+034304
+M034304
+034305
+M034305
+034306
+M034306
+034307
+M034307
+034308
+M034308
+034309
+M034309
+034310
+M034310
+034311
+M034311
+034312
+M034312
+034313
+M034313
+034314
+M034314
+034315
+M034315
+034316
+M034316
+034317
+M034317
+034341
+M034341
+034342
+M034342
+034343
+M034343
+034344
+M034344
+034345
+M034345
+034346
+M034346
+034347
+M034347
+034348
+M034348
+034349
+M034349
+034350
+M034350
+034351
+M034351
+034352
+M034352
+034353
+M034353
+034354
+M034354
+034359
+M034359
+034360
+M034360
+034361
+M034361
+034362
+M034362
+034363
+M034363
+034364
+M034364
+034365
+M034365
+034366
+M034366
+034367
+M034367
+034368
+M034368
+034369
+M034369
+034370
+M034370
+034371
+M034371
+034372
+M034372
+034373
+M034373
+034374
+M034374
+034375
+M034375
+034376
+M034376
+034377
+M034377
+034378
+M034378
+034379
+M034379
+034380
+M034380
+034381
+M034381
+034382
+M034382
+034383
+M034383
+034384
+M034384
+034385
+M034385
+034386
+M034386
+034387
+M034387
+034388
+M034388
+034389
+M034389
+034390
+M034390
+034391
+M034391
+034392
+M034392
+034393
+M034393
+034394
+M034394
+034395
+M034395
+034396
+M034396
+034397
+M034397
+034398
+M034398
+034399
+M034399
+034400
+M034400
+034401
+M034401
+034402
+M034402
+034439
+M034439
+034440
+M034440
+034441
+M034441
+034442
+M034442
+034443
+M034443
+034464
+M034464
+034465
+M034465
+034466
+M034466
+034467
+M034467
+034468
+M034468
+034469
+M034469
+034470
+M034470
+034471
+M034471
+034472
+M034472
+034473
+M034473
+034474
+M034474
+034475
+M034475
+034476
+M034476
+034477
+M034477
+034478
+M034478
+034479
+M034479
+034480
+M034480
+034481
+M034481
+034482
+M034482
+034483
+M034483
+034484
+M034484
+034485
+M034485
+034486
+M034486
+034487
+M034487
+034488
+M034488
+034489
+M034489
+034490
+M034490
+034491
+M034491
+034492
+M034492
+034493
+M034493
+034494
+M034494
+034495
+M034495
+034496
+M034496
+034521
+M034521
+034522
+M034522
+034523
+M034523
+034524
+M034524
+034525
+M034525
+034526
+M034526
+034527
+M034527
+034528
+M034528
+034529
+M034529
+034530
+M034530
+034531
+M034531
+034532
+M034532
+034533
+M034533
+034534
+M034534
+034535
+M034535
+034536
+M034536
+034537
+M034537
+034538
+M034538
+034539
+M034539
+034540
+M034540
+034541
+M034541
+034542
+M034542
+034543
+M034543
+034544
+M034544
+034545
+M034545
+034546
+M034546
+034547
+M034547
+034548
+M034548
+034549
+M034549
+034550
+M034550
+034551
+M034551
+034552
+M034552
+034553
+M034553
+034554
+M034554
+034555
+M034555
+034556
+M034556
+034557
+M034557
+034558
+M034558
+034559
+M034559
+034560
+M034560
+034561
+M034561
+034562
+M034562
+034563
+M034563
+034588
+M034588
+034589
+M034589
+034590
+M034590
+034591
+M034591
+034592
+M034592
+034593
+M034593
+034594
+M034594
+034595
+M034595
+034596
+M034596
+034597
+M034597
+034598
+M034598
+034599
+M034599
+034600
+M034600
+034601
+M034601
+034602
+M034602
+034603
+M034603
+034604
+M034604
+034612
+M034612
+034613
+M034613
+034614
+M034614
+034615
+M034615
+034630
+M034630
+034631
+M034631
+034632
+M034632
+034633
+M034633
+034634
+M034634
+034635
+M034635
+034636
+M034636
+034637
+M034637
+034638
+M034638
+034639
+M034639
+034640
+M034640
+034641
+M034641
+034642
+M034642
+034647
+M034647
+034648
+M034648
+034649
+M034649
+034650
+M034650
+034651
+M034651
+034652
+M034652
+034653
+M034653
+034654
+M034654
+034655
+M034655
+034656
+M034656
+034657
+M034657
+034658
+M034658
+034659
+M034659
+034660
+M034660
+034673
+M034673
+034674
+M034674
+034675
+M034675
+034676
+M034676
+034677
+M034677
+034678
+M034678
+034679
+M034679
+034680
+M034680
+034681
+M034681
+034682
+M034682
+034683
+M034683
+034684
+M034684
+034685
+M034685
+034686
+M034686
+034687
+M034687
+034688
+M034688
+034689
+M034689
+034690
+M034690
+034691
+M034691
+034692
+M034692
+034693
+M034693
+034694
+M034694
+034695
+M034695
+034696
+M034696
+034697
+M034697
+034698
+M034698
+034699
+M034699
+034700
+M034700
+034701
+M034701
+034702
+M034702
+034703
+M034703
+034704
+M034704
+034705
+M034705
+034706
+M034706
+034707
+M034707
+034708
+M034708
+034709
+M034709
+034710
+M034710
+034711
+M034711
+034712
+M034712
+034713
+M034713
+034714
+M034714
+034715
+M034715
+034716
+M034716
+034717
+M034717
+034718
+M034718
+034719
+M034719
+034720
+M034720
+034721
+M034721
+034722
+M034722
+034723
+M034723
+034724
+M034724
+034725
+M034725
+034726
+M034726
+034727
+M034727
+034728
+M034728
+034729
+M034729
+034730
+M034730
+034731
+M034731
+034732
+M034732
+034733
+M034733
+034734
+M034734
+034735
+M034735
+034736
+M034736
+034737
+M034737
+034738
+M034738
+034739
+M034739
+034740
+M034740
+034741
+M034741
+034742
+M034742
+034743
+M034743
+034744
+M034744
+034745
+M034745
+034746
+M034746
+034747
+M034747
+034748
+M034748
+034749
+M034749
+034750
+M034750
+034751
+M034751
+034752
+M034752
+034753
+M034753
+034754
+M034754
+034764
+M034764
+034765
+M034765
+034766
+M034766
+034767
+M034767
+034768
+M034768
+034769
+M034769
+034770
+M034770
+034771
+M034771
+034772
+M034772
+034773
+M034773
+034774
+M034774
+034775
+M034775
+034776
+M034776
+034777
+M034777
+034778
+M034778
+034779
+M034779
+034803
+M034803
+034804
+M034804
+034805
+M034805
+034806
+M034806
+034807
+M034807
+034808
+M034808
+034809
+M034809
+034846
+M034846
+034847
+M034847
+034848
+M034848
+034849
+M034849
+034850
+M034850
+034851
+M034851
+034852
+M034852
+034853
+M034853
+034854
+M034854
+034855
+M034855
+034856
+M034856
+034857
+M034857
+034858
+M034858
+034859
+M034859
+034860
+M034860
+034861
+M034861
+034862
+M034862
+034863
+M034863
+034864
+M034864
+034865
+M034865
+034866
+M034866
+034867
+M034867
+034868
+M034868
+034869
+M034869
+034870
+M034870
+034871
+M034871
+034872
+M034872
+034873
+M034873
+034874
+M034874
+034875
+M034875
+034876
+M034876
+034877
+M034877
+034878
+M034878
+034879
+M034879
+034880
+M034880
+034881
+M034881
+034882
+M034882
+034883
+M034883
+034884
+M034884
+034885
+M034885
+034886
+M034886
+034887
+M034887
+034900
+M034900
+034901
+M034901
+034902
+M034902
+034903
+M034903
+034904
+M034904
+034905
+M034905
+034906
+M034906
+034907
+M034907
+034908
+M034908
+034909
+M034909
+034910
+M034910
+034911
+M034911
+034912
+M034912
+034913
+M034913
+034914
+M034914
+034915
+M034915
+034916
+M034916
+034917
+M034917
+034918
+M034918
+034919
+M034919
+034920
+M034920
+034921
+M034921
+034922
+M034922
+034923
+M034923
+034924
+M034924
+034925
+M034925
+034926
+M034926
+034927
+M034927
+034928
+M034928
+034929
+M034929
+034930
+M034930
+034931
+M034931
+034932
+M034932
+034933
+M034933
+034934
+M034934
+034935
+M034935
+034936
+M034936
+034937
+M034937
+034938
+M034938
+034939
+M034939
+034940
+M034940
+034941
+M034941
+034942
+M034942
+034943
+M034943
+034944
+M034944
+034945
+M034945
+034946
+M034946
+034947
+M034947
+034948
+M034948
+034949
+M034949
+034950
+M034950
+034951
+M034951
+034952
+M034952
+034953
+M034953
+034954
+M034954
+034955
+M034955
+034956
+M034956
+034957
+M034957
+034958
+M034958
+034959
+M034959
+034960
+M034960
+034961
+M034961
+034962
+M034962
+034963
+M034963
+034964
+M034964
+034965
+M034965
+034966
+M034966
+034967
+M034967
+034968
+M034968
+034969
+M034969
+034970
+M034970
+034971
+M034971
+034972
+M034972
+034973
+M034973
+034974
+M034974
+034975
+M034975
+034976
+M034976
+034977
+M034977
+034978
+M034978
+034979
+M034979
+034980
+M034980
+034981
+M034981
+034982
+M034982
+034983
+M034983
+034984
+M034984
+034985
+M034985
+034986
+M034986
+034987
+M034987
+034988
+M034988
+034989
+M034989
+034990
+M034990
+034991
+M034991
+034992
+M034992
+034993
+M034993
+034999
+M034999
+035000
+M035000
+035001
+M035001
+035002
+M035002
+035003
+M035003
+035004
+M035004
+035005
+M035005
+035006
+M035006
+035007
+M035007
+035008
+M035008
+035009
+M035009
+035010
+M035010
+035011
+M035011
+035012
+M035012
+035013
+M035013
+035014
+M035014
+035015
+M035015
+035016
+M035016
+035017
+M035017
+035018
+M035018
+035019
+M035019
+035020
+M035020
+035021
+M035021
+035022
+M035022
+035023
+M035023
+035024
+M035024
+035025
+M035025
+035026
+M035026
+035027
+M035027
+035028
+M035028
+035029
+M035029
+035030
+M035030
+035031
+M035031
+035032
+M035032
+035033
+M035033
+035034
+M035034
+035035
+M035035
+035036
+M035036
+035037
+M035037
+035038
+M035038
+035039
+M035039
+035040
+M035040
+035041
+M035041
+035042
+M035042
+035043
+M035043
+035044
+M035044
+035045
+M035045
+035046
+M035046
+035047
+M035047
+035048
+M035048
+035049
+M035049
+035050
+M035050
+035051
+M035051
+035052
+M035052
+035053
+M035053
+035054
+M035054
+035055
+M035055
+035056
+M035056
+035057
+M035057
+035058
+M035058
+035059
+M035059
+035060
+M035060
+035061
+M035061
+035062
+M035062
+035063
+M035063
+035064
+M035064
+035065
+M035065
+035066
+M035066
+035067
+M035067
+035068
+M035068
+035069
+M035069
+035070
+M035070
+035071
+M035071
+035072
+M035072
+035073
+M035073
+035074
+M035074
+035075
+M035075
+035076
+M035076
+035077
+M035077
+035078
+M035078
+035079
+M035079
+035080
+M035080
+035081
+M035081
+035083
+M035083
+035084
+M035084
+035085
+M035085
+035087
+M035087
+035088
+M035088
+035089
+M035089
+035090
+M035090
+035091
+M035091
+035092
+M035092
+035093
+M035093
+035094
+M035094
+035095
+M035095
+035096
+M035096
+035097
+M035097
+035098
+M035098
+035099
+M035099
+035100
+M035100
+035101
+M035101
+035102
+M035102
+035103
+M035103
+035104
+M035104
+035105
+M035105
+035106
+M035106
+035107
+M035107
+035108
+M035108
+035109
+M035109
+035110
+M035110
+035111
+M035111
+035112
+M035112
+035113
+M035113
+035114
+M035114
+035115
+M035115
+035116
+M035116
+035117
+M035117
+035118
+M035118
+035119
+M035119
+035120
+M035120
+035121
+M035121
+035122
+M035122
+035123
+M035123
+035124
+M035124
+035125
+M035125
+035126
+M035126
+035136
+M035136
+035137
+M035137
+035138
+M035138
+035139
+M035139
+035140
+M035140
+035141
+M035141
+035142
+M035142
+035143
+M035143
+035144
+M035144
+035145
+M035145
+035146
+M035146
+035147
+M035147
+035148
+M035148
+035149
+M035149
+035150
+M035150
+035151
+M035151
+035152
+M035152
+035153
+M035153
+035154
+M035154
+035155
+M035155
+035156
+M035156
+035157
+M035157
+035158
+M035158
+035159
+M035159
+035160
+M035160
+035161
+M035161
+035162
+M035162
+035163
+M035163
+035164
+M035164
+035165
+M035165
+035166
+M035166
+035167
+M035167
+035168
+M035168
+035169
+M035169
+035170
+M035170
+035171
+M035171
+035172
+M035172
+035173
+M035173
+035174
+M035174
+035175
+M035175
+035176
+M035176
+035177
+M035177
+035178
+M035178
+035179
+M035179
+035180
+M035180
+035181
+M035181
+035182
+M035182
+035183
+M035183
+035184
+M035184
+035185
+M035185
+035186
+M035186
+035187
+M035187
+035188
+M035188
+035189
+M035189
+035191
+M035191
+035192
+M035192
+035193
+M035193
+035195
+M035195
+035197
+M035197
+035198
+M035198
+035199
+M035199
+035200
+M035200
+035201
+M035201
+035202
+M035202
+035203
+M035203
+035205
+M035205
+035206
+M035206
+035207
+M035207
+035208
+M035208
+035209
+M035209
+035210
+M035210
+035211
+M035211
+035212
+M035212
+035213
+M035213
+035214
+M035214
+035215
+M035215
+035216
+M035216
+035217
+M035217
+035218
+M035218
+035219
+M035219
+035220
+M035220
+035221
+M035221
+035222
+M035222
+035223
+M035223
+035224
+M035224
+035225
+M035225
+035226
+M035226
+035227
+M035227
+035228
+M035228
+035229
+M035229
+035230
+M035230
+035231
+M035231
+035232
+M035232
+035233
+M035233
+035234
+M035234
+035235
+M035235
+035236
+M035236
+035237
+M035237
+035238
+M035238
+035239
+M035239
+035240
+M035240
+035241
+M035241
+035242
+M035242
+035243
+M035243
+035244
+M035244
+035245
+M035245
+035246
+M035246
+035247
+M035247
+035248
+M035248
+035249
+M035249
+035250
+M035250
+035251
+M035251
+035252
+M035252
+035253
+M035253
+035254
+M035254
+035255
+M035255
+035256
+M035256
+035257
+M035257
+035258
+M035258
+035259
+M035259
+035260
+M035260
+035261
+M035261
+035262
+M035262
+035263
+M035263
+035264
+M035264
+035265
+M035265
+035266
+M035266
+035267
+M035267
+035268
+M035268
+035269
+M035269
+035270
+M035270
+035306
+M035306
+035307
+M035307
+035308
+M035308
+035309
+M035309
+035310
+M035310
+035311
+M035311
+035312
+M035312
+035313
+M035313
+035314
+M035314
+035315
+M035315
+035316
+M035316
+035317
+M035317
+035318
+M035318
+035319
+M035319
+035320
+M035320
+035321
+M035321
+035322
+M035322
+035323
+M035323
+035324
+M035324
+035325
+M035325
+035326
+M035326
+035327
+M035327
+035328
+M035328
+035329
+M035329
+035330
+M035330
+035331
+M035331
+035332
+M035332
+035333
+M035333
+035334
+M035334
+035335
+M035335
+035336
+M035336
+035337
+M035337
+035338
+M035338
+035339
+M035339
+035340
+M035340
+035341
+M035341
+035342
+M035342
+035356
+M035356
+035357
+M035357
+035358
+M035358
+035359
+M035359
+035360
+M035360
+035361
+M035361
+035362
+M035362
+035363
+M035363
+035364
+M035364
+035365
+M035365
+035366
+M035366
+035367
+M035367
+035368
+M035368
+035369
+M035369
+035370
+M035370
+035371
+M035371
+035372
+M035372
+035373
+M035373
+035374
+M035374
+035380
+M035380
+035381
+M035381
+035382
+M035382
+035383
+M035383
+035384
+M035384
+035385
+M035385
+035386
+M035386
+035387
+M035387
+035388
+M035388
+035389
+M035389
+035390
+M035390
+035391
+M035391
+035392
+M035392
+035393
+M035393
+035394
+M035394
+035395
+M035395
+035396
+M035396
+035397
+M035397
+035398
+M035398
+035399
+M035399
+035400
+M035400
+035401
+M035401
+035402
+M035402
+035403
+M035403
+035404
+M035404
+035405
+M035405
+035406
+M035406
+035407
+M035407
+035408
+M035408
+035409
+M035409
+035410
+M035410
+035411
+M035411
+035412
+M035412
+035413
+M035413
+035414
+M035414
+035415
+M035415
+035416
+M035416
+035417
+M035417
+035418
+M035418
+035419
+M035419
+035420
+M035420
+035421
+M035421
+035422
+M035422
+035423
+M035423
+035424
+M035424
+035425
+M035425
+035426
+M035426
+035427
+M035427
+035428
+M035428
+035429
+M035429
+035430
+M035430
+035431
+M035431
+035432
+M035432
+035433
+M035433
+035434
+M035434
+035435
+M035435
+035436
+M035436
+035437
+M035437
+035438
+M035438
+035439
+M035439
+035440
+M035440
+035441
+M035441
+035442
+M035442
+035443
+M035443
+035444
+M035444
+035445
+M035445
+035446
+M035446
+035447
+M035447
+035448
+M035448
+035449
+M035449
+035450
+M035450
+035451
+M035451
+035452
+M035452
+035453
+M035453
+035454
+M035454
+035455
+M035455
+035456
+M035456
+035457
+M035457
+035458
+M035458
+035459
+M035459
+035460
+M035460
+035461
+M035461
+035462
+M035462
+035463
+M035463
+035464
+M035464
+035465
+M035465
+035466
+M035466
+035467
+M035467
+035468
+M035468
+035469
+M035469
+035470
+M035470
+035471
+M035471
+035472
+M035472
+035473
+M035473
+035474
+M035474
+035475
+M035475
+035476
+M035476
+035477
+M035477
+035478
+M035478
+035479
+M035479
+035480
+M035480
+035481
+M035481
+035482
+M035482
+035483
+M035483
+035497
+M035497
+035498
+M035498
+035499
+M035499
+035500
+M035500
+035501
+M035501
+035502
+M035502
+035503
+M035503
+035504
+M035504
+035505
+M035505
+035506
+M035506
+035507
+M035507
+035508
+M035508
+035509
+M035509
+035510
+M035510
+035511
+M035511
+035512
+M035512
+035513
+M035513
+035514
+M035514
+035515
+M035515
+035516
+M035516
+035517
+M035517
+035518
+M035518
+035519
+M035519
+035520
+M035520
+035521
+M035521
+035522
+M035522
+035523
+M035523
+035524
+M035524
+035525
+M035525
+035526
+M035526
+035532
+M035532
+035533
+M035533
+035534
+M035534
+035535
+M035535
+035536
+M035536
+035537
+M035537
+035543
+M035543
+035544
+M035544
+035545
+M035545
+035546
+M035546
+035547
+M035547
+035548
+M035548
+035549
+M035549
+035550
+M035550
+035551
+M035551
+035552
+M035552
+035553
+M035553
+035554
+M035554
+035555
+M035555
+035556
+M035556
+035557
+M035557
+035558
+M035558
+035559
+M035559
+035560
+M035560
+035561
+M035561
+035562
+M035562
+035563
+M035563
+035579
+M035579
+035580
+M035580
+035581
+M035581
+035582
+M035582
+035583
+M035583
+035584
+M035584
+035585
+M035585
+035586
+M035586
+035587
+M035587
+035588
+M035588
+035589
+M035589
+035590
+M035590
+035591
+M035591
+035592
+M035592
+035593
+M035593
+035594
+M035594
+035595
+M035595
+035596
+M035596
+035597
+M035597
+035598
+M035598
+035599
+M035599
+035600
+M035600
+035601
+M035601
+035602
+M035602
+035603
+M035603
+035604
+M035604
+035605
+M035605
+035606
+M035606
+035607
+M035607
+035608
+M035608
+035609
+M035609
+035610
+M035610
+035611
+M035611
+035612
+M035612
+035613
+M035613
+035614
+M035614
+035615
+M035615
+035616
+M035616
+035617
+M035617
+035618
+M035618
+035619
+M035619
+035620
+M035620
+035621
+M035621
+035622
+M035622
+035623
+M035623
+035624
+M035624
+035625
+M035625
+035626
+M035626
+035627
+M035627
+035628
+M035628
+035629
+M035629
+035630
+M035630
+035631
+M035631
+035632
+M035632
+035633
+M035633
+035634
+M035634
+035635
+M035635
+035636
+M035636
+035637
+M035637
+035638
+M035638
+035639
+M035639
+035640
+M035640
+035641
+M035641
+035642
+M035642
+035643
+M035643
+035644
+M035644
+035645
+M035645
+035646
+M035646
+035647
+M035647
+035648
+M035648
+035649
+M035649
+035650
+M035650
+035651
+M035651
+035652
+M035652
+035653
+M035653
+035654
+M035654
+035655
+M035655
+035656
+M035656
+035657
+M035657
+035658
+M035658
+035659
+M035659
+035660
+M035660
+035661
+M035661
+035662
+M035662
+035663
+M035663
+035664
+M035664
+035665
+M035665
+035666
+M035666
+035667
+M035667
+035668
+M035668
+035669
+M035669
+035670
+M035670
+035671
+M035671
+035672
+M035672
+035673
+M035673
+035674
+M035674
+035675
+M035675
+035676
+M035676
+035677
+M035677
+035678
+M035678
+035679
+M035679
+035680
+M035680
+035681
+M035681
+035682
+M035682
+035683
+M035683
+035684
+M035684
+035685
+M035685
+035686
+M035686
+035687
+M035687
+035688
+M035688
+035689
+M035689
+035690
+M035690
+035691
+M035691
+035692
+M035692
+035693
+M035693
+035694
+M035694
+035695
+M035695
+035696
+M035696
+035697
+M035697
+035698
+M035698
+035699
+M035699
+035700
+M035700
+035701
+M035701
+035702
+M035702
+035703
+M035703
+035704
+M035704
+035705
+M035705
+035706
+M035706
+035707
+M035707
+035708
+M035708
+035709
+M035709
+035710
+M035710
+035711
+M035711
+035712
+M035712
+035713
+M035713
+035714
+M035714
+035715
+M035715
+035716
+M035716
+035717
+M035717
+035718
+M035718
+035719
+M035719
+035720
+M035720
+035721
+M035721
+035722
+M035722
+035723
+M035723
+035724
+M035724
+035725
+M035725
+035726
+M035726
+035727
+M035727
+035728
+M035728
+035729
+M035729
+035730
+M035730
+035731
+M035731
+035732
+M035732
+035733
+M035733
+035734
+M035734
+035735
+M035735
+035736
+M035736
+035737
+M035737
+035738
+M035738
+035739
+M035739
+035740
+M035740
+035741
+M035741
+035742
+M035742
+035743
+M035743
+035744
+M035744
+035745
+M035745
+035746
+M035746
+035747
+M035747
+035748
+M035748
+035749
+M035749
+035750
+M035750
+035751
+M035751
+035752
+M035752
+035753
+M035753
+035754
+M035754
+035755
+M035755
+035761
+M035761
+035762
+M035762
+035763
+M035763
+035764
+M035764
+035765
+M035765
+035766
+M035766
+035767
+M035767
+035768
+M035768
+035769
+M035769
+035770
+M035770
+035771
+M035771
+035772
+M035772
+035773
+M035773
+035774
+M035774
+035775
+M035775
+035776
+M035776
+035777
+M035777
+035778
+M035778
+035779
+M035779
+035780
+M035780
+035781
+M035781
+035782
+M035782
+035783
+M035783
+035784
+M035784
+035785
+M035785
+035786
+M035786
+035787
+M035787
+035788
+M035788
+035789
+M035789
+035790
+M035790
+035791
+M035791
+035792
+M035792
+035793
+M035793
+035794
+M035794
+035795
+M035795
+035796
+M035796
+035797
+M035797
+035798
+M035798
+035799
+M035799
+035800
+M035800
+035801
+M035801
+035802
+M035802
+035803
+M035803
+035804
+M035804
+035805
+M035805
+035806
+M035806
+035807
+M035807
+035808
+M035808
+035809
+M035809
+035810
+M035810
+035811
+M035811
+035815
+M035815
+035816
+M035816
+035817
+M035817
+035818
+M035818
+035819
+M035819
+035820
+M035820
+035821
+M035821
+035822
+M035822
+035823
+M035823
+035824
+M035824
+035825
+M035825
+035832
+M035832
+035833
+M035833
+035834
+M035834
+035835
+M035835
+035836
+M035836
+035837
+M035837
+035838
+M035838
+035839
+M035839
+035840
+M035840
+035841
+M035841
+035842
+M035842
+035843
+M035843
+035844
+M035844
+035845
+M035845
+035846
+M035846
+035847
+M035847
+035848
+M035848
+035849
+M035849
+035850
+M035850
+035851
+M035851
+035852
+M035852
+035853
+M035853
+035854
+M035854
+035855
+M035855
+035856
+M035856
+035857
+M035857
+035858
+M035858
+035859
+M035859
+035860
+M035860
+035861
+M035861
+035862
+M035862
+035863
+M035863
+035864
+M035864
+035865
+M035865
+035866
+M035866
+035867
+M035867
+035868
+M035868
+035869
+M035869
+035870
+M035870
+035871
+M035871
+035872
+M035872
+035873
+M035873
+035874
+M035874
+035875
+M035875
+035876
+M035876
+035877
+M035877
+035878
+M035878
+035879
+M035879
+035880
+M035880
+035881
+M035881
+035882
+M035882
+035883
+M035883
+035884
+M035884
+035885
+M035885
+035886
+M035886
+035887
+M035887
+035888
+M035888
+035889
+M035889
+035890
+M035890
+035891
+M035891
+035892
+M035892
+035893
+M035893
+035894
+M035894
+035895
+M035895
+035896
+M035896
+035897
+M035897
+035898
+M035898
+035899
+M035899
+035900
+M035900
+035901
+M035901
+035902
+M035902
+035903
+M035903
+035904
+M035904
+035905
+M035905
+035906
+M035906
+035907
+M035907
+035908
+M035908
+035909
+M035909
+035910
+M035910
+035911
+M035911
+035912
+M035912
+035913
+M035913
+035914
+M035914
+035915
+M035915
+035916
+M035916
+035917
+M035917
+035923
+M035923
+035924
+M035924
+035925
+M035925
+035926
+M035926
+035927
+M035927
+035928
+M035928
+035929
+M035929
+035930
+M035930
+035931
+M035931
+035932
+M035932
+035933
+M035933
+035934
+M035934
+035935
+M035935
+035936
+M035936
+035937
+M035937
+035938
+M035938
+035939
+M035939
+035940
+M035940
+035941
+M035941
+035942
+M035942
+035943
+M035943
+035944
+M035944
+035945
+M035945
+035946
+M035946
+035947
+M035947
+035948
+M035948
+035949
+M035949
+035950
+M035950
+035951
+M035951
+035952
+M035952
+035953
+M035953
+035954
+M035954
+035955
+M035955
+035956
+M035956
+035962
+M035962
+035963
+M035963
+035964
+M035964
+035965
+M035965
+035966
+M035966
+035972
+M035972
+035973
+M035973
+035974
+M035974
+035975
+M035975
+035976
+M035976
+035977
+M035977
+035978
+M035978
+035979
+M035979
+035980
+M035980
+035981
+M035981
+035982
+M035982
+035983
+M035983
+035984
+M035984
+035985
+M035985
+035986
+M035986
+035987
+M035987
+035988
+M035988
+035989
+M035989
+035990
+M035990
+035991
+M035991
+035992
+M035992
+035993
+M035993
+035994
+M035994
+035995
+M035995
+035996
+M035996
+035997
+M035997
+035998
+M035998
+035999
+M035999
+036000
+M036000
+036001
+M036001
+036002
+M036002
+036003
+M036003
+036004
+M036004
+036005
+M036005
+036006
+M036006
+036007
+M036007
+036008
+M036008
+036009
+M036009
+036010
+M036010
+036011
+M036011
+036012
+M036012
+036013
+M036013
+036014
+M036014
+036020
+M036020
+036021
+M036021
+036022
+M036022
+036023
+M036023
+036024
+M036024
+036025
+M036025
+036031
+M036031
+036032
+M036032
+036033
+M036033
+036034
+M036034
+036035
+M036035
+036036
+M036036
+036037
+M036037
+036038
+M036038
+036039
+M036039
+036040
+M036040
+036041
+M036041
+036042
+M036042
+036043
+M036043
+036044
+M036044
+036061
+M036061
+036062
+M036062
+036063
+M036063
+036064
+M036064
+036065
+M036065
+036066
+M036066
+036067
+M036067
+036068
+M036068
+036069
+M036069
+036070
+M036070
+036071
+M036071
+036072
+M036072
+036073
+M036073
+036074
+M036074
+036075
+M036075
+036076
+M036076
+036077
+M036077
+036078
+M036078
+036079
+M036079
+036080
+M036080
+036081
+M036081
+036082
+M036082
+036083
+M036083
+036084
+M036084
+036085
+M036085
+036086
+M036086
+036087
+M036087
+036088
+M036088
+036089
+M036089
+036090
+M036090
+036091
+M036091
+036092
+M036092
+036093
+M036093
+036094
+M036094
+036095
+M036095
+036096
+M036096
+036097
+M036097
+036098
+M036098
+036099
+M036099
+036100
+M036100
+036101
+M036101
+036102
+M036102
+036103
+M036103
+036104
+M036104
+036111
+M036111
+036112
+M036112
+036113
+M036113
+036114
+M036114
+036115
+M036115
+036116
+M036116
+036121
+M036121
+036122
+M036122
+036123
+M036123
+036141
+M036141
+036142
+M036142
+036143
+M036143
+036144
+M036144
+036145
+M036145
+036146
+M036146
+036147
+M036147
+036148
+M036148
+036149
+M036149
+036150
+M036150
+036151
+M036151
+036152
+M036152
+036153
+M036153
+036154
+M036154
+036155
+M036155
+036156
+M036156
+036157
+M036157
+036158
+M036158
+036159
+M036159
+036160
+M036160
+036161
+M036161
+036162
+M036162
+036163
+M036163
+036164
+M036164
+036170
+M036170
+036171
+M036171
+036172
+M036172
+036173
+M036173
+036178
+M036178
+036179
+M036179
+036180
+M036180
+036181
+M036181
+036182
+M036182
+036183
+M036183
+036184
+M036184
+036185
+M036185
+036186
+M036186
+036187
+M036187
+036188
+M036188
+036189
+M036189
+036190
+M036190
+036191
+M036191
+036192
+M036192
+036193
+M036193
+036194
+M036194
+036195
+M036195
+036196
+M036196
+036197
+M036197
+036198
+M036198
+036199
+M036199
+036200
+M036200
+036201
+M036201
+036202
+M036202
+036203
+M036203
+036204
+M036204
+036205
+M036205
+036206
+M036206
+036207
+M036207
+036208
+M036208
+036209
+M036209
+036210
+M036210
+036211
+M036211
+036212
+M036212
+036213
+M036213
+036214
+M036214
+036215
+M036215
+036216
+M036216
+036217
+M036217
+036218
+M036218
+036219
+M036219
+036220
+M036220
+036221
+M036221
+036222
+M036222
+036223
+M036223
+036229
+M036229
+036230
+M036230
+036231
+M036231
+036232
+M036232
+036233
+M036233
+036234
+M036234
+036235
+M036235
+036236
+M036236
+036237
+M036237
+036238
+M036238
+036239
+M036239
+036240
+M036240
+036241
+M036241
+036242
+M036242
+036243
+M036243
+036244
+M036244
+036245
+M036245
+036246
+M036246
+036247
+M036247
+036248
+M036248
+036249
+M036249
+036250
+M036250
+036251
+M036251
+036252
+M036252
+036253
+M036253
+036254
+M036254
+036255
+M036255
+036256
+M036256
+036257
+M036257
+036258
+M036258
+036259
+M036259
+036260
+M036260
+036261
+M036261
+036262
+M036262
+036263
+M036263
+036265
+M036265
+036266
+M036266
+036267
+M036267
+036268
+M036268
+036269
+M036269
+036270
+M036270
+036271
+M036271
+036272
+M036272
+036273
+M036273
+036274
+M036274
+036275
+M036275
+036276
+M036276
+036277
+M036277
+036278
+M036278
+036279
+M036279
+036280
+M036280
+036281
+M036281
+036282
+M036282
+036283
+M036283
+036284
+M036284
+036285
+M036285
+036286
+M036286
+036287
+M036287
+036288
+M036288
+036289
+M036289
+036290
+M036290
+036291
+M036291
+036292
+M036292
+036293
+M036293
+036294
+M036294
+036295
+M036295
+036296
+M036296
+036297
+M036297
+036298
+M036298
+036299
+M036299
+036300
+M036300
+036301
+M036301
+036302
+M036302
+036303
+M036303
+036304
+M036304
+036305
+M036305
+036306
+M036306
+036307
+M036307
+036308
+M036308
+036309
+M036309
+036310
+M036310
+036311
+M036311
+036312
+M036312
+036313
+M036313
+036314
+M036314
+036315
+M036315
+036316
+M036316
+036317
+M036317
+036318
+M036318
+036319
+M036319
+036320
+M036320
+036321
+M036321
+036323
+M036323
+036324
+M036324
+036325
+M036325
+036326
+M036326
+036327
+M036327
+036328
+M036328
+036329
+M036329
+036330
+M036330
+036331
+M036331
+036332
+M036332
+036333
+M036333
+036334
+M036334
+036335
+M036335
+036336
+M036336
+036337
+M036337
+036338
+M036338
+036339
+M036339
+036340
+M036340
+036341
+M036341
+036342
+M036342
+036343
+M036343
+036344
+M036344
+036345
+M036345
+036346
+M036346
+036347
+M036347
+036348
+M036348
+036349
+M036349
+036350
+M036350
+036351
+M036351
+036352
+M036352
+036353
+M036353
+036354
+M036354
+036355
+M036355
+036356
+M036356
+036357
+M036357
+036358
+M036358
+036359
+M036359
+036360
+M036360
+036361
+M036361
+036362
+M036362
+036363
+M036363
+036364
+M036364
+036365
+M036365
+036366
+M036366
+036367
+M036367
+036368
+M036368
+036369
+M036369
+036370
+M036370
+036371
+M036371
+036372
+M036372
+036373
+M036373
+036374
+M036374
+036393
+M036393
+036394
+M036394
+036395
+M036395
+036396
+M036396
+036397
+M036397
+036398
+M036398
+036399
+M036399
+036400
+M036400
+036401
+M036401
+036402
+M036402
+036403
+M036403
+036404
+M036404
+036405
+M036405
+036406
+M036406
+036407
+M036407
+036408
+M036408
+036409
+M036409
+036410
+M036410
+036411
+M036411
+036412
+M036412
+036413
+M036413
+036414
+M036414
+036415
+M036415
+036416
+M036416
+036417
+M036417
+036418
+M036418
+036419
+M036419
+036420
+M036420
+036421
+M036421
+036422
+M036422
+036425
+M036425
+036426
+M036426
+036427
+M036427
+036428
+M036428
+036429
+M036429
+036430
+M036430
+036431
+M036431
+036432
+M036432
+036433
+M036433
+036434
+M036434
+036435
+M036435
+036436
+M036436
+036437
+M036437
+036438
+M036438
+036439
+M036439
+036440
+M036440
+036441
+M036441
+036442
+M036442
+036443
+M036443
+036444
+M036444
+036445
+M036445
+036446
+M036446
+036447
+M036447
+036474
+M036474
+036475
+M036475
+036476
+M036476
+036477
+M036477
+036478
+M036478
+036479
+M036479
+036480
+M036480
+036481
+M036481
+036482
+M036482
+036483
+M036483
+036484
+M036484
+036485
+M036485
+036486
+M036486
+036487
+M036487
+036488
+M036488
+036489
+M036489
+036490
+M036490
+036491
+M036491
+036492
+M036492
+036493
+M036493
+036494
+M036494
+036495
+M036495
+036496
+M036496
+036497
+M036497
+036498
+M036498
+036499
+M036499
+036500
+M036500
+036512
+M036512
+036513
+M036513
+036514
+M036514
+036515
+M036515
+036516
+M036516
+036517
+M036517
+036518
+M036518
+036519
+M036519
+036520
+M036520
+036521
+M036521
+036522
+M036522
+036523
+M036523
+036524
+M036524
+036525
+M036525
+036526
+M036526
+036527
+M036527
+036528
+M036528
+036529
+M036529
+036530
+M036530
+036531
+M036531
+036532
+M036532
+036533
+M036533
+036534
+M036534
+036535
+M036535
+036536
+M036536
+036537
+M036537
+036538
+M036538
+036540
+M036540
+036541
+M036541
+036542
+M036542
+036543
+M036543
+036544
+M036544
+036545
+M036545
+036546
+M036546
+036547
+M036547
+036548
+M036548
+036549
+M036549
+036550
+M036550
+036551
+M036551
+036552
+M036552
+036553
+M036553
+036554
+M036554
+036555
+M036555
+036556
+M036556
+036557
+M036557
+036558
+M036558
+036559
+M036559
+036560
+M036560
+036561
+M036561
+036562
+M036562
+036563
+M036563
+036564
+M036564
+036565
+M036565
+036566
+M036566
+036567
+M036567
+036568
+M036568
+036569
+M036569
+036570
+M036570
+036571
+M036571
+036583
+M036583
+036584
+M036584
+036585
+M036585
+036586
+M036586
+036587
+M036587
+036588
+M036588
+036589
+M036589
+036590
+M036590
+036591
+M036591
+036592
+M036592
+036593
+M036593
+036594
+M036594
+036595
+M036595
+036596
+M036596
+036597
+M036597
+036598
+M036598
+036599
+M036599
+036600
+M036600
+036601
+M036601
+036602
+M036602
+036603
+M036603
+036604
+M036604
+036605
+M036605
+036606
+M036606
+036607
+M036607
+036608
+M036608
+036609
+M036609
+036610
+M036610
+036611
+M036611
+036612
+M036612
+036613
+M036613
+036614
+M036614
+036615
+M036615
+036616
+M036616
+036617
+M036617
+036618
+M036618
+036619
+M036619
+036620
+M036620
+036621
+M036621
+036627
+M036627
+036628
+M036628
+036629
+M036629
+036630
+M036630
+036631
+M036631
+036632
+M036632
+036633
+M036633
+036634
+M036634
+036635
+M036635
+036636
+M036636
+036637
+M036637
+036638
+M036638
+036639
+M036639
+036640
+M036640
+036649
+M036649
+036650
+M036650
+036651
+M036651
+036652
+M036652
+036653
+M036653
+036654
+M036654
+036655
+M036655
+036656
+M036656
+036657
+M036657
+036658
+M036658
+036659
+M036659
+036660
+M036660
+036661
+M036661
+036665
+M036665
+036666
+M036666
+036667
+M036667
+036668
+M036668
+036669
+M036669
+036670
+M036670
+036671
+M036671
+036672
+M036672
+036673
+M036673
+036674
+M036674
+036675
+M036675
+036676
+M036676
+036677
+M036677
+036678
+M036678
+036679
+M036679
+036680
+M036680
+036681
+M036681
+036682
+M036682
+036683
+M036683
+036684
+M036684
+036685
+M036685
+036686
+M036686
+036687
+M036687
+036688
+M036688
+036689
+M036689
+036690
+M036690
+036691
+M036691
+036692
+M036692
+036693
+M036693
+036694
+M036694
+036695
+M036695
+036704
+M036704
+036705
+M036705
+036706
+M036706
+036707
+M036707
+036708
+M036708
+036709
+M036709
+036710
+M036710
+036711
+M036711
+036714
+M036714
+036715
+M036715
+036716
+M036716
+036717
+M036717
+036718
+M036718
+036719
+M036719
+036720
+M036720
+036721
+M036721
+036722
+M036722
+036723
+M036723
+036724
+M036724
+036725
+M036725
+036726
+M036726
+036727
+M036727
+036728
+M036728
+036729
+M036729
+036730
+M036730
+036731
+M036731
+036732
+M036732
+036733
+M036733
+036734
+M036734
+036735
+M036735
+036736
+M036736
+036737
+M036737
+036738
+M036738
+036739
+M036739
+036740
+M036740
+036758
+M036758
+036759
+M036759
+036760
+M036760
+036761
+M036761
+036762
+M036762
+036763
+M036763
+036764
+M036764
+036765
+M036765
+036766
+M036766
+036768
+M036768
+036769
+M036769
+036770
+M036770
+036771
+M036771
+036772
+M036772
+036773
+M036773
+036774
+M036774
+036775
+M036775
+036789
+M036789
+036790
+M036790
+036791
+M036791
+036792
+M036792
+036793
+M036793
+036794
+M036794
+036795
+M036795
+036796
+M036796
+036797
+M036797
+036798
+M036798
+036799
+M036799
+036800
+M036800
+036801
+M036801
+036802
+M036802
+036803
+M036803
+036804
+M036804
+036805
+M036805
+036806
+M036806
+036807
+M036807
+036808
+M036808
+036809
+M036809
+036810
+M036810
+036811
+M036811
+036812
+M036812
+036813
+M036813
+036814
+M036814
+036815
+M036815
+036819
+M036819
+036820
+M036820
+036821
+M036821
+036822
+M036822
+036823
+M036823
+036824
+M036824
+036825
+M036825
+036826
+M036826
+036827
+M036827
+036828
+M036828
+036829
+M036829
+036830
+M036830
+036831
+M036831
+036832
+M036832
+036833
+M036833
+036834
+M036834
+036838
+M036838
+036839
+M036839
+036840
+M036840
+036841
+M036841
+036842
+M036842
+036843
+M036843
+036844
+M036844
+036845
+M036845
+036846
+M036846
+036847
+M036847
+036848
+M036848
+036849
+M036849
+036850
+M036850
+036851
+M036851
+036852
+M036852
+036853
+M036853
+036854
+M036854
+036855
+M036855
+036856
+M036856
+036857
+M036857
+036858
+M036858
+036859
+M036859
+036860
+M036860
+036861
+M036861
+036862
+M036862
+036863
+M036863
+036864
+M036864
+036865
+M036865
+036866
+M036866
+036867
+M036867
+036868
+M036868
+036869
+M036869
+036870
+M036870
+036871
+M036871
+036872
+M036872
+036873
+M036873
+036874
+M036874
+036875
+M036875
+036876
+M036876
+036877
+M036877
+036878
+M036878
+036879
+M036879
+036880
+M036880
+036881
+M036881
+036882
+M036882
+036883
+M036883
+036884
+M036884
+036885
+M036885
+036886
+M036886
+036887
+M036887
+036888
+M036888
+036889
+M036889
+036890
+M036890
+036891
+M036891
+036892
+M036892
+036893
+M036893
+036894
+M036894
+036895
+M036895
+036896
+M036896
+036897
+M036897
+036898
+M036898
+036899
+M036899
+036900
+M036900
+036901
+M036901
+036902
+M036902
+036903
+M036903
+036913
+M036913
+036914
+M036914
+036915
+M036915
+036916
+M036916
+036921
+M036921
+036922
+M036922
+036923
+M036923
+036924
+M036924
+036925
+M036925
+036926
+M036926
+036927
+M036927
+036928
+M036928
+036929
+M036929
+036930
+M036930
+036931
+M036931
+036932
+M036932
+036933
+M036933
+036934
+M036934
+036935
+M036935
+036936
+M036936
+036937
+M036937
+036938
+M036938
+036939
+M036939
+036940
+M036940
+036941
+M036941
+036942
+M036942
+036943
+M036943
+036944
+M036944
+036945
+M036945
+036946
+M036946
+036947
+M036947
+036948
+M036948
+036949
+M036949
+036950
+M036950
+036951
+M036951
+036952
+M036952
+036953
+M036953
+036954
+M036954
+036955
+M036955
+036956
+M036956
+036957
+M036957
+036958
+M036958
+036959
+M036959
+036960
+M036960
+036961
+M036961
+036962
+M036962
+036963
+M036963
+036964
+M036964
+036965
+M036965
+036966
+M036966
+036967
+M036967
+036968
+M036968
+036969
+M036969
+036970
+M036970
+036971
+M036971
+036979
+M036979
+036980
+M036980
+036981
+M036981
+036982
+M036982
+036983
+M036983
+036984
+M036984
+036985
+M036985
+036986
+M036986
+036987
+M036987
+036988
+M036988
+036989
+M036989
+036990
+M036990
+036991
+M036991
+036992
+M036992
+036993
+M036993
+036994
+M036994
+036995
+M036995
+036996
+M036996
+036997
+M036997
+036998
+M036998
+036999
+M036999
+037000
+M037000
+037001
+M037001
+037002
+M037002
+037003
+M037003
+037004
+M037004
+037005
+M037005
+037006
+M037006
+037018
+M037018
+037019
+M037019
+037020
+M037020
+037021
+M037021
+037022
+M037022
+037023
+M037023
+037024
+M037024
+037025
+M037025
+037026
+M037026
+037027
+M037027
+037028
+M037028
+037029
+M037029
+037030
+M037030
+037031
+M037031
+037032
+M037032
+037033
+M037033
+037034
+M037034
+037035
+M037035
+037036
+M037036
+037037
+M037037
+037038
+M037038
+037039
+M037039
+037040
+M037040
+037041
+M037041
+037042
+M037042
+037043
+M037043
+037044
+M037044
+037045
+M037045
+037046
+M037046
+037047
+M037047
+037048
+M037048
+037049
+M037049
+037050
+M037050
+037051
+M037051
+037052
+M037052
+037053
+M037053
+037054
+M037054
+037055
+M037055
+037056
+M037056
+037057
+M037057
+037058
+M037058
+037059
+M037059
+037060
+M037060
+037061
+M037061
+037062
+M037062
+037063
+M037063
+037064
+M037064
+037065
+M037065
+037066
+M037066
+037067
+M037067
+037068
+M037068
+037069
+M037069
+037070
+M037070
+037071
+M037071
+037072
+M037072
+037073
+M037073
+037074
+M037074
+037075
+M037075
+037076
+M037076
+037077
+M037077
+037078
+M037078
+037079
+M037079
+037080
+M037080
+037081
+M037081
+037082
+M037082
+037083
+M037083
+037084
+M037084
+037085
+M037085
+037086
+M037086
+037087
+M037087
+037088
+M037088
+037089
+M037089
+037090
+M037090
+037091
+M037091
+037092
+M037092
+037093
+M037093
+037094
+M037094
+037095
+M037095
+037096
+M037096
+037097
+M037097
+037098
+M037098
+037099
+M037099
+037100
+M037100
+037110
+M037110
+037111
+M037111
+037112
+M037112
+037113
+M037113
+037114
+M037114
+037126
+M037126
+037127
+M037127
+037128
+M037128
+037129
+M037129
+037130
+M037130
+037131
+M037131
+037132
+M037132
+037133
+M037133
+037134
+M037134
+037135
+M037135
+037136
+M037136
+037137
+M037137
+037138
+M037138
+037139
+M037139
+037140
+M037140
+037141
+M037141
+037142
+M037142
+037143
+M037143
+037144
+M037144
+037145
+M037145
+037146
+M037146
+037147
+M037147
+037148
+M037148
+037149
+M037149
+037150
+M037150
+037151
+M037151
+037152
+M037152
+037153
+M037153
+037154
+M037154
+037156
+M037156
+037157
+M037157
+037158
+M037158
+037159
+M037159
+037160
+M037160
+037161
+M037161
+037162
+M037162
+037163
+M037163
+037164
+M037164
+037165
+M037165
+037166
+M037166
+037174
+M037174
+037175
+M037175
+037176
+M037176
+037177
+M037177
+037178
+M037178
+037179
+M037179
+037180
+M037180
+037181
+M037181
+037182
+M037182
+037183
+M037183
+037184
+M037184
+037185
+M037185
+037186
+M037186
+037187
+M037187
+037188
+M037188
+037189
+M037189
+037190
+M037190
+037191
+M037191
+037192
+M037192
+037193
+M037193
+037194
+M037194
+037195
+M037195
+037196
+M037196
+037197
+M037197
+037198
+M037198
+037199
+M037199
+037200
+M037200
+037201
+M037201
+037202
+M037202
+037203
+M037203
+037204
+M037204
+037205
+M037205
+037206
+M037206
+037207
+M037207
+037208
+M037208
+037211
+M037211
+037213
+M037213
+037214
+M037214
+037215
+M037215
+037216
+M037216
+037217
+M037217
+037218
+M037218
+037219
+M037219
+037220
+M037220
+037221
+M037221
+037222
+M037222
+037223
+M037223
+037225
+M037225
+037226
+M037226
+037227
+M037227
+037228
+M037228
+037229
+M037229
+037230
+M037230
+037231
+M037231
+037235
+M037235
+037236
+M037236
+037237
+M037237
+037238
+M037238
+037239
+M037239
+037240
+M037240
+037241
+M037241
+037242
+M037242
+037243
+M037243
+037244
+M037244
+037245
+M037245
+037246
+M037246
+037247
+M037247
+037248
+M037248
+037249
+M037249
+037250
+M037250
+037251
+M037251
+037252
+M037252
+037253
+M037253
+037254
+M037254
+037255
+M037255
+037256
+M037256
+037257
+M037257
+037258
+M037258
+037259
+M037259
+037260
+M037260
+037261
+M037261
+037262
+M037262
+037263
+M037263
+037264
+M037264
+037265
+M037265
+037266
+M037266
+037267
+M037267
+037268
+M037268
+037269
+M037269
+037270
+M037270
+037271
+M037271
+037272
+M037272
+037273
+M037273
+037274
+M037274
+037275
+M037275
+037276
+M037276
+037277
+M037277
+037278
+M037278
+037279
+M037279
+037280
+M037280
+037281
+M037281
+037282
+M037282
+037283
+M037283
+037284
+M037284
+037285
+M037285
+037286
+M037286
+037287
+M037287
+037288
+M037288
+037289
+M037289
+037290
+M037290
+037291
+M037291
+037292
+M037292
+037293
+M037293
+037294
+M037294
+037296
+M037296
+037297
+M037297
+037298
+M037298
+037299
+M037299
+037300
+M037300
+037301
+M037301
+037302
+M037302
+037303
+M037303
+037304
+M037304
+037305
+M037305
+037306
+M037306
+037307
+M037307
+037308
+M037308
+037309
+M037309
+037310
+M037310
+037311
+M037311
+037312
+M037312
+037313
+M037313
+037314
+M037314
+037315
+M037315
+037316
+M037316
+037317
+M037317
+037318
+M037318
+037319
+M037319
+037320
+M037320
+037321
+M037321
+037322
+M037322
+037323
+M037323
+037324
+M037324
+037325
+M037325
+037326
+M037326
+037327
+M037327
+037328
+M037328
+037329
+M037329
+037330
+M037330
+037331
+M037331
+037332
+M037332
+037333
+M037333
+037334
+M037334
+037335
+M037335
+037336
+M037336
+037337
+M037337
+037338
+M037338
+037339
+M037339
+037340
+M037340
+037341
+M037341
+037342
+M037342
+037343
+M037343
+037344
+M037344
+037345
+M037345
+037346
+M037346
+037347
+M037347
+037348
+M037348
+037349
+M037349
+037350
+M037350
+037351
+M037351
+037352
+M037352
+037353
+M037353
+037354
+M037354
+037355
+M037355
+037356
+M037356
+037357
+M037357
+037358
+M037358
+037359
+M037359
+037360
+M037360
+037361
+M037361
+037362
+M037362
+037363
+M037363
+037364
+M037364
+037365
+M037365
+037366
+M037366
+037367
+M037367
+037368
+M037368
+037369
+M037369
+037384
+M037384
+037385
+M037385
+037386
+M037386
+037387
+M037387
+037388
+M037388
+037389
+M037389
+037390
+M037390
+037391
+M037391
+037392
+M037392
+037415
+M037415
+037416
+M037416
+037417
+M037417
+037418
+M037418
+037419
+M037419
+037447
+M037447
+037448
+M037448
+037449
+M037449
+037450
+M037450
+037451
+M037451
+037452
+M037452
+037453
+M037453
+037454
+M037454
+037455
+M037455
+037456
+M037456
+037457
+M037457
+037458
+M037458
+037459
+M037459
+037460
+M037460
+037461
+M037461
+037462
+M037462
+037463
+M037463
+037464
+M037464
+037465
+M037465
+037466
+M037466
+037467
+M037467
+037468
+M037468
+037469
+M037469
+037470
+M037470
+037471
+M037471
+037472
+M037472
+037489
+M037489
+037490
+M037490
+037491
+M037491
+037492
+M037492
+037493
+M037493
+037494
+M037494
+037495
+M037495
+037496
+M037496
+037497
+M037497
+037498
+M037498
+037499
+M037499
+037500
+M037500
+037501
+M037501
+037502
+M037502
+037503
+M037503
+037504
+M037504
+037505
+M037505
+037506
+M037506
+037507
+M037507
+037508
+M037508
+037509
+M037509
+037510
+M037510
+037511
+M037511
+037512
+M037512
+037513
+M037513
+037514
+M037514
+037515
+M037515
+037516
+M037516
+037517
+M037517
+037529
+M037529
+037530
+M037530
+037531
+M037531
+037532
+M037532
+037533
+M037533
+037534
+M037534
+037535
+M037535
+037536
+M037536
+037537
+M037537
+037538
+M037538
+037539
+M037539
+037540
+M037540
+037541
+M037541
+037542
+M037542
+037543
+M037543
+037544
+M037544
+037545
+M037545
+037546
+M037546
+037547
+M037547
+037548
+M037548
+037549
+M037549
+037550
+M037550
+037551
+M037551
+037552
+M037552
+037553
+M037553
+037554
+M037554
+037555
+M037555
+037556
+M037556
+037557
+M037557
+037558
+M037558
+037559
+M037559
+037560
+M037560
+037561
+M037561
+037562
+M037562
+037563
+M037563
+037564
+M037564
+037565
+M037565
+037566
+M037566
+037567
+M037567
+037568
+M037568
+037569
+M037569
+037570
+M037570
+037571
+M037571
+037572
+M037572
+037573
+M037573
+037574
+M037574
+037575
+M037575
+037576
+M037576
+037577
+M037577
+037578
+M037578
+037579
+M037579
+037580
+M037580
+037581
+M037581
+037582
+M037582
+037583
+M037583
+037584
+M037584
+037585
+M037585
+037586
+M037586
+037587
+M037587
+037588
+M037588
+037589
+M037589
+037590
+M037590
+037591
+M037591
+037603
+M037603
+037604
+M037604
+037605
+M037605
+037606
+M037606
+037607
+M037607
+037608
+M037608
+037609
+M037609
+037610
+M037610
+037614
+M037614
+037615
+M037615
+037616
+M037616
+037617
+M037617
+037618
+M037618
+037619
+M037619
+037620
+M037620
+037621
+M037621
+037622
+M037622
+037623
+M037623
+037624
+M037624
+037625
+M037625
+037626
+M037626
+037627
+M037627
+037628
+M037628
+037629
+M037629
+037630
+M037630
+037631
+M037631
+037632
+M037632
+037633
+M037633
+037634
+M037634
+037635
+M037635
+037636
+M037636
+037637
+M037637
+037638
+M037638
+037639
+M037639
+037640
+M037640
+037641
+M037641
+037642
+M037642
+037643
+M037643
+037644
+M037644
+037645
+M037645
+037646
+M037646
+037647
+M037647
+037648
+M037648
+037649
+M037649
+037650
+M037650
+037651
+M037651
+037655
+M037655
+037656
+M037656
+037657
+M037657
+037658
+M037658
+037659
+M037659
+037660
+M037660
+037661
+M037661
+037662
+M037662
+037663
+M037663
+037664
+M037664
+037665
+M037665
+037666
+M037666
+037667
+M037667
+037668
+M037668
+037669
+M037669
+037670
+M037670
+037671
+M037671
+037672
+M037672
+037673
+M037673
+037674
+M037674
+037675
+M037675
+037676
+M037676
+037677
+M037677
+037678
+M037678
+037679
+M037679
+037680
+M037680
+037681
+M037681
+037682
+M037682
+037683
+M037683
+037684
+M037684
+037685
+M037685
+037686
+M037686
+037687
+M037687
+037688
+M037688
+037695
+M037695
+037696
+M037696
+037697
+M037697
+037698
+M037698
+037699
+M037699
+037700
+M037700
+037701
+M037701
+037702
+M037702
+037703
+M037703
+037704
+M037704
+037705
+M037705
+037706
+M037706
+037707
+M037707
+037708
+M037708
+037709
+M037709
+037710
+M037710
+037711
+M037711
+037712
+M037712
+037713
+M037713
+037714
+M037714
+037715
+M037715
+037716
+M037716
+037717
+M037717
+037718
+M037718
+037719
+M037719
+037720
+M037720
+037721
+M037721
+037722
+M037722
+037723
+M037723
+037724
+M037724
+037725
+M037725
+037726
+M037726
+037727
+M037727
+037728
+M037728
+037729
+M037729
+037730
+M037730
+037735
+M037735
+037736
+M037736
+037737
+M037737
+037738
+M037738
+037739
+M037739
+037740
+M037740
+037754
+M037754
+037755
+M037755
+037756
+M037756
+037757
+M037757
+037758
+M037758
+037759
+M037759
+037760
+M037760
+037761
+M037761
+037762
+M037762
+037763
+M037763
+037764
+M037764
+037765
+M037765
+037766
+M037766
+037767
+M037767
+037768
+M037768
+037769
+M037769
+037770
+M037770
+037771
+M037771
+037772
+M037772
+037773
+M037773
+037774
+M037774
+037775
+M037775
+037776
+M037776
+037777
+M037777
+037778
+M037778
+037779
+M037779
+037780
+M037780
+037781
+M037781
+037782
+M037782
+037783
+M037783
+037784
+M037784
+037785
+M037785
+037786
+M037786
+037787
+M037787
+037788
+M037788
+037789
+M037789
+037794
+M037794
+037795
+M037795
+037796
+M037796
+037797
+M037797
+037798
+M037798
+037799
+M037799
+037800
+M037800
+037801
+M037801
+037802
+M037802
+037803
+M037803
+037804
+M037804
+037805
+M037805
+037811
+M037811
+037812
+M037812
+037813
+M037813
+037814
+M037814
+037815
+M037815
+037816
+M037816
+037817
+M037817
+037818
+M037818
+037819
+M037819
+037820
+M037820
+037821
+M037821
+037822
+M037822
+037823
+M037823
+037824
+M037824
+037825
+M037825
+037826
+M037826
+037827
+M037827
+037828
+M037828
+037829
+M037829
+037830
+M037830
+037831
+M037831
+037832
+M037832
+037838
+M037838
+037839
+M037839
+037840
+M037840
+037841
+M037841
+037842
+M037842
+037843
+M037843
+037844
+M037844
+037845
+M037845
+037846
+M037846
+037847
+M037847
+037848
+M037848
+037849
+M037849
+037850
+M037850
+037851
+M037851
+037852
+M037852
+037853
+M037853
+037854
+M037854
+037855
+M037855
+037856
+M037856
+037877
+M037877
+037878
+M037878
+037879
+M037879
+037880
+M037880
+037881
+M037881
+037882
+M037882
+037883
+M037883
+037884
+M037884
+037885
+M037885
+037886
+M037886
+037887
+M037887
+037888
+M037888
+037889
+M037889
+037890
+M037890
+037891
+M037891
+037892
+M037892
+037893
+M037893
+037894
+M037894
+037903
+M037903
+037904
+M037904
+037905
+M037905
+037906
+M037906
+037907
+M037907
+037908
+M037908
+037909
+M037909
+037910
+M037910
+037911
+M037911
+037912
+M037912
+037913
+M037913
+037914
+M037914
+037915
+M037915
+037916
+M037916
+037917
+M037917
+037918
+M037918
+037919
+M037919
+037920
+M037920
+037921
+M037921
+037931
+M037931
+037932
+M037932
+037933
+M037933
+037934
+M037934
+037935
+M037935
+037936
+M037936
+037937
+M037937
+037938
+M037938
+037939
+M037939
+037940
+M037940
+037941
+M037941
+037942
+M037942
+037943
+M037943
+037944
+M037944
+037945
+M037945
+037946
+M037946
+037947
+M037947
+037948
+M037948
+037949
+M037949
+037950
+M037950
+037951
+M037951
+037952
+M037952
+037953
+M037953
+037954
+M037954
+037955
+M037955
+037956
+M037956
+037957
+M037957
+037958
+M037958
+037959
+M037959
+037960
+M037960
+037976
+M037976
+037977
+M037977
+037978
+M037978
+037979
+M037979
+037980
+M037980
+037981
+M037981
+037982
+M037982
+037983
+M037983
+037984
+M037984
+037985
+M037985
+037986
+M037986
+037987
+M037987
+037988
+M037988
+037989
+M037989
+037990
+M037990
+037991
+M037991
+037992
+M037992
+037993
+M037993
+037994
+M037994
+037995
+M037995
+037996
+M037996
+037997
+M037997
+037998
+M037998
+037999
+M037999
+038000
+M038000
+038001
+M038001
+038002
+M038002
+038003
+M038003
+038004
+M038004
+038005
+M038005
+038006
+M038006
+038007
+M038007
+038008
+M038008
+038009
+M038009
+038010
+M038010
+038011
+M038011
+038012
+M038012
+038013
+M038013
+038014
+M038014
+038015
+M038015
+038016
+M038016
+038017
+M038017
+038018
+M038018
+038019
+M038019
+038020
+M038020
+038021
+M038021
+038022
+M038022
+038023
+M038023
+038024
+M038024
+038025
+M038025
+038026
+M038026
+038027
+M038027
+038028
+M038028
+038029
+M038029
+038030
+M038030
+038031
+M038031
+038032
+M038032
+038033
+M038033
+038039
+M038039
+038040
+M038040
+038041
+M038041
+038042
+M038042
+038043
+M038043
+038044
+M038044
+038045
+M038045
+038046
+M038046
+038047
+M038047
+038048
+M038048
+038049
+M038049
+038050
+M038050
+038051
+M038051
+038052
+M038052
+038053
+M038053
+038054
+M038054
+038055
+M038055
+038056
+M038056
+038057
+M038057
+038058
+M038058
+038059
+M038059
+038060
+M038060
+038061
+M038061
+038062
+M038062
+038063
+M038063
+038064
+M038064
+038065
+M038065
+038066
+M038066
+038067
+M038067
+038068
+M038068
+038069
+M038069
+038070
+M038070
+038077
+M038077
+038078
+M038078
+038079
+M038079
+038080
+M038080
+038081
+M038081
+038082
+M038082
+038083
+M038083
+038084
+M038084
+038085
+M038085
+038086
+M038086
+038087
+M038087
+038096
+M038096
+038097
+M038097
+038098
+M038098
+038099
+M038099
+038100
+M038100
+038110
+M038110
+038111
+M038111
+038112
+M038112
+038113
+M038113
+038114
+M038114
+038115
+M038115
+038116
+M038116
+038117
+M038117
+038118
+M038118
+038119
+M038119
+038120
+M038120
+038121
+M038121
+038122
+M038122
+038123
+M038123
+038129
+M038129
+038130
+M038130
+038131
+M038131
+038132
+M038132
+038133
+M038133
+038134
+M038134
+038135
+M038135
+038136
+M038136
+038137
+M038137
+038138
+M038138
+038139
+M038139
+038140
+M038140
+038141
+M038141
+038142
+M038142
+038143
+M038143
+038144
+M038144
+038145
+M038145
+038146
+M038146
+038147
+M038147
+038148
+M038148
+038149
+M038149
+038150
+M038150
+038151
+M038151
+038152
+M038152
+038153
+M038153
+038154
+M038154
+038155
+M038155
+038156
+M038156
+038157
+M038157
+038158
+M038158
+038159
+M038159
+038160
+M038160
+038161
+M038161
+038162
+M038162
+038163
+M038163
+038164
+M038164
+038165
+M038165
+038166
+M038166
+038167
+M038167
+038168
+M038168
+038169
+M038169
+038170
+M038170
+038171
+M038171
+038172
+M038172
+038173
+M038173
+038174
+M038174
+038176
+M038176
+038177
+M038177
+038178
+M038178
+038179
+M038179
+038180
+M038180
+038181
+M038181
+038182
+M038182
+038183
+M038183
+038184
+M038184
+038185
+M038185
+038186
+M038186
+038187
+M038187
+038188
+M038188
+038189
+M038189
+038190
+M038190
+038191
+M038191
+038192
+M038192
+038193
+M038193
+038194
+M038194
+038195
+M038195
+038196
+M038196
+038197
+M038197
+038198
+M038198
+038199
+M038199
+038200
+M038200
+038221
+M038221
+038222
+M038222
+038223
+M038223
+038224
+M038224
+038225
+M038225
+038226
+M038226
+038227
+M038227
+038228
+M038228
+038229
+M038229
+038230
+M038230
+038231
+M038231
+038232
+M038232
+038233
+M038233
+038234
+M038234
+038235
+M038235
+038236
+M038236
+038237
+M038237
+038238
+M038238
+038239
+M038239
+038240
+M038240
+038241
+M038241
+038242
+M038242
+038243
+M038243
+038244
+M038244
+038245
+M038245
+038246
+M038246
+038247
+M038247
+038248
+M038248
+038249
+M038249
+038250
+M038250
+038251
+M038251
+038252
+M038252
+038253
+M038253
+038254
+M038254
+038255
+M038255
+038256
+M038256
+038257
+M038257
+038258
+M038258
+038259
+M038259
+038260
+M038260
+038261
+M038261
+038262
+M038262
+038263
+M038263
+038264
+M038264
+038265
+M038265
+038266
+M038266
+038278
+M038278
+038279
+M038279
+038280
+M038280
+038281
+M038281
+038282
+M038282
+038304
+M038304
+038305
+M038305
+038306
+M038306
+038307
+M038307
+038308
+M038308
+038350
+M038350
+038351
+M038351
+038352
+M038352
+038353
+M038353
+038354
+M038354
+038355
+M038355
+038356
+M038356
+038357
+M038357
+038358
+M038358
+038359
+M038359
+038360
+M038360
+038361
+M038361
+038362
+M038362
+038363
+M038363
+038364
+M038364
+038365
+M038365
+038366
+M038366
+038367
+M038367
+038368
+M038368
+038369
+M038369
+038370
+M038370
+038371
+M038371
+038383
+M038383
+038384
+M038384
+038385
+M038385
+038386
+M038386
+038387
+M038387
+038388
+M038388
+038409
+M038409
+038410
+M038410
+038411
+M038411
+038412
+M038412
+038413
+M038413
+038414
+M038414
+038415
+M038415
+038416
+M038416
+038417
+M038417
+038418
+M038418
+038419
+M038419
+038420
+M038420
+038421
+M038421
+038422
+M038422
+038423
+M038423
+038424
+M038424
+038425
+M038425
+038426
+M038426
+038427
+M038427
+038428
+M038428
+038429
+M038429
+038430
+M038430
+038431
+M038431
+038432
+M038432
+038433
+M038433
+038434
+M038434
+038435
+M038435
+038436
+M038436
+038437
+M038437
+038438
+M038438
+038439
+M038439
+038440
+M038440
+038441
+M038441
+038442
+M038442
+038443
+M038443
+038444
+M038444
+038445
+M038445
+038446
+M038446
+038447
+M038447
+038448
+M038448
+038449
+M038449
+038450
+M038450
+038451
+M038451
+038452
+M038452
+038453
+M038453
+038454
+M038454
+038455
+M038455
+038456
+M038456
+038457
+M038457
+038458
+M038458
+038459
+M038459
+038460
+M038460
+038461
+M038461
+038462
+M038462
+038463
+M038463
+038464
+M038464
+038465
+M038465
+038466
+M038466
+038467
+M038467
+038468
+M038468
+038469
+M038469
+038470
+M038470
+038485
+M038485
+038486
+M038486
+038487
+M038487
+038488
+M038488
+038489
+M038489
+038490
+M038490
+038491
+M038491
+038492
+M038492
+038493
+M038493
+038494
+M038494
+038495
+M038495
+038496
+M038496
+038497
+M038497
+038498
+M038498
+038499
+M038499
+038500
+M038500
+038501
+M038501
+038502
+M038502
+038503
+M038503
+038504
+M038504
+038505
+M038505
+038506
+M038506
+038507
+M038507
+038508
+M038508
+038509
+M038509
+038510
+M038510
+038511
+M038511
+038512
+M038512
+038513
+M038513
+038514
+M038514
+038515
+M038515
+038516
+M038516
+038517
+M038517
+038518
+M038518
+038519
+M038519
+038520
+M038520
+038521
+M038521
+038522
+M038522
+038523
+M038523
+038524
+M038524
+038525
+M038525
+038526
+M038526
+038527
+M038527
+038528
+M038528
+038529
+M038529
+038530
+M038530
+038531
+M038531
+038532
+M038532
+038533
+M038533
+038534
+M038534
+038535
+M038535
+038536
+M038536
+038537
+M038537
+038538
+M038538
+038539
+M038539
+038540
+M038540
+038541
+M038541
+038542
+M038542
+038543
+M038543
+038544
+M038544
+038545
+M038545
+038546
+M038546
+038547
+M038547
+038548
+M038548
+038549
+M038549
+038550
+M038550
+038551
+M038551
+038552
+M038552
+038553
+M038553
+038554
+M038554
+038555
+M038555
+038556
+M038556
+038557
+M038557
+038558
+M038558
+038559
+M038559
+038560
+M038560
+038561
+M038561
+038575
+M038575
+038576
+M038576
+038577
+M038577
+038578
+M038578
+038579
+M038579
+038580
+M038580
+038581
+M038581
+038582
+M038582
+038588
+M038588
+038589
+M038589
+038590
+M038590
+038591
+M038591
+038592
+M038592
+038593
+M038593
+038594
+M038594
+038595
+M038595
+038596
+M038596
+038597
+M038597
+038598
+M038598
+038599
+M038599
+038600
+M038600
+038601
+M038601
+038602
+M038602
+038603
+M038603
+038604
+M038604
+038608
+M038608
+038609
+M038609
+038610
+M038610
+038611
+M038611
+038612
+M038612
+038613
+M038613
+038614
+M038614
+038615
+M038615
+038616
+M038616
+038617
+M038617
+038618
+M038618
+038619
+M038619
+038620
+M038620
+038621
+M038621
+038622
+M038622
+038623
+M038623
+038624
+M038624
+038625
+M038625
+038626
+M038626
+038627
+M038627
+038628
+M038628
+038629
+M038629
+038630
+M038630
+038631
+M038631
+038632
+M038632
+038633
+M038633
+038634
+M038634
+038635
+M038635
+038636
+M038636
+038637
+M038637
+038638
+M038638
+038639
+M038639
+038640
+M038640
+038651
+M038651
+038652
+M038652
+038653
+M038653
+038654
+M038654
+038655
+M038655
+038656
+M038656
+038657
+M038657
+038658
+M038658
+038660
+M038660
+038661
+M038661
+038662
+M038662
+038663
+M038663
+038664
+M038664
+038665
+M038665
+038666
+M038666
+038667
+M038667
+038668
+M038668
+038669
+M038669
+038670
+M038670
+038671
+M038671
+038672
+M038672
+038673
+M038673
+038674
+M038674
+038675
+M038675
+038676
+M038676
+038677
+M038677
+038678
+M038678
+038679
+M038679
+038680
+M038680
+038681
+M038681
+038682
+M038682
+038683
+M038683
+038684
+M038684
+038685
+M038685
+038686
+M038686
+038687
+M038687
+038688
+M038688
+038702
+M038702
+038703
+M038703
+038704
+M038704
+038705
+M038705
+038706
+M038706
+038707
+M038707
+038708
+M038708
+038709
+M038709
+038710
+M038710
+038711
+M038711
+038712
+M038712
+038713
+M038713
+038714
+M038714
+038725
+M038725
+038726
+M038726
+038727
+M038727
+038728
+M038728
+038729
+M038729
+038749
+M038749
+038750
+M038750
+038751
+M038751
+038752
+M038752
+038753
+M038753
+038754
+M038754
+038755
+M038755
+038756
+M038756
+038757
+M038757
+038788
+M038788
+038789
+M038789
+038790
+M038790
+038791
+M038791
+038792
+M038792
+038793
+M038793
+038794
+M038794
+038795
+M038795
+038796
+M038796
+038797
+M038797
+038798
+M038798
+038799
+M038799
+038800
+M038800
+038801
+M038801
+038802
+M038802
+038803
+M038803
+038804
+M038804
+038805
+M038805
+038806
+M038806
+038807
+M038807
+038808
+M038808
+038809
+M038809
+038810
+M038810
+038811
+M038811
+038812
+M038812
+038813
+M038813
+038814
+M038814
+038815
+M038815
+038816
+M038816
+038817
+M038817
+038818
+M038818
+038819
+M038819
+038820
+M038820
+038821
+M038821
+038822
+M038822
+038823
+M038823
+038824
+M038824
+038825
+M038825
+038826
+M038826
+038827
+M038827
+038828
+M038828
+038829
+M038829
+038830
+M038830
+038831
+M038831
+038832
+M038832
+038833
+M038833
+038834
+M038834
+038835
+M038835
+038836
+M038836
+038837
+M038837
+038838
+M038838
+038839
+M038839
+038840
+M038840
+038841
+M038841
+038842
+M038842
+038843
+M038843
+038844
+M038844
+038845
+M038845
+038846
+M038846
+038847
+M038847
+038848
+M038848
+038849
+M038849
+038850
+M038850
+038851
+M038851
+038852
+M038852
+038853
+M038853
+038854
+M038854
+038855
+M038855
+038856
+M038856
+038857
+M038857
+038858
+M038858
+038859
+M038859
+038860
+M038860
+038862
+M038862
+038863
+M038863
+038864
+M038864
+038865
+M038865
+038866
+M038866
+038867
+M038867
+038868
+M038868
+038869
+M038869
+038870
+M038870
+038880
+M038880
+038881
+M038881
+038882
+M038882
+038883
+M038883
+038884
+M038884
+038885
+M038885
+038886
+M038886
+038887
+M038887
+038888
+M038888
+038889
+M038889
+038890
+M038890
+038891
+M038891
+038892
+M038892
+038893
+M038893
+038894
+M038894
+038895
+M038895
+038896
+M038896
+038897
+M038897
+038898
+M038898
+038899
+M038899
+038900
+M038900
+038901
+M038901
+038902
+M038902
+038904
+M038904
+038905
+M038905
+038906
+M038906
+038907
+M038907
+038908
+M038908
+038909
+M038909
+038910
+M038910
+038911
+M038911
+038948
+M038948
+038949
+M038949
+038950
+M038950
+038951
+M038951
+038974
+M038974
+038975
+M038975
+038976
+M038976
+038977
+M038977
+038978
+M038978
+038979
+M038979
+038980
+M038980
+038981
+M038981
+038982
+M038982
+038983
+M038983
+038984
+M038984
+038985
+M038985
+038986
+M038986
+038987
+M038987
+038988
+M038988
+038989
+M038989
+038990
+M038990
+038991
+M038991
+038992
+M038992
+038993
+M038993
+038994
+M038994
+038995
+M038995
+038996
+M038996
+038997
+M038997
+038998
+M038998
+038999
+M038999
+039000
+M039000
+039001
+M039001
+039002
+M039002
+039003
+M039003
+039004
+M039004
+039005
+M039005
+039006
+M039006
+039007
+M039007
+039008
+M039008
+039009
+M039009
+039010
+M039010
+039011
+M039011
+039012
+M039012
+039013
+M039013
+039014
+M039014
+039015
+M039015
+039016
+M039016
+039017
+M039017
+039018
+M039018
+039019
+M039019
+039020
+M039020
+039021
+M039021
+039022
+M039022
+039023
+M039023
+039024
+M039024
+039025
+M039025
+039026
+M039026
+039027
+M039027
+039028
+M039028
+039029
+M039029
+039030
+M039030
+039031
+M039031
+039032
+M039032
+039033
+M039033
+039034
+M039034
+039035
+M039035
+039036
+M039036
+039037
+M039037
+039038
+M039038
+039039
+M039039
+039040
+M039040
+039041
+M039041
+039042
+M039042
+039043
+M039043
+039044
+M039044
+039045
+M039045
+039046
+M039046
+039047
+M039047
+039052
+M039052
+039053
+M039053
+039054
+M039054
+039055
+M039055
+039056
+M039056
+039057
+M039057
+039063
+M039063
+039064
+M039064
+039065
+M039065
+039066
+M039066
+039067
+M039067
+039068
+M039068
+039069
+M039069
+039070
+M039070
+039071
+M039071
+039072
+M039072
+039073
+M039073
+039074
+M039074
+039075
+M039075
+039076
+M039076
+039077
+M039077
+039078
+M039078
+039079
+M039079
+039080
+M039080
+039081
+M039081
+039082
+M039082
+039086
+M039086
+039087
+M039087
+039088
+M039088
+039089
+M039089
+039090
+M039090
+039091
+M039091
+039092
+M039092
+039093
+M039093
+039094
+M039094
+039096
+M039096
+039097
+M039097
+039098
+M039098
+039099
+M039099
+039100
+M039100
+039101
+M039101
+039102
+M039102
+039103
+M039103
+039104
+M039104
+039105
+M039105
+039106
+M039106
+039107
+M039107
+039108
+M039108
+039109
+M039109
+039110
+M039110
+039111
+M039111
+039112
+M039112
+039113
+M039113
+039114
+M039114
+039115
+M039115
+039116
+M039116
+039117
+M039117
+039118
+M039118
+039119
+M039119
+039120
+M039120
+039121
+M039121
+039122
+M039122
+039123
+M039123
+039124
+M039124
+039125
+M039125
+039133
+M039133
+039134
+M039134
+039135
+M039135
+039136
+M039136
+039137
+M039137
+039138
+M039138
+039139
+M039139
+039140
+M039140
+039141
+M039141
+039142
+M039142
+039143
+M039143
+039144
+M039144
+039145
+M039145
+039146
+M039146
+039158
+M039158
+039159
+M039159
+039160
+M039160
+039161
+M039161
+039162
+M039162
+039163
+M039163
+039164
+M039164
+039165
+M039165
+039166
+M039166
+039167
+M039167
+039168
+M039168
+039169
+M039169
+039170
+M039170
+039171
+M039171
+039172
+M039172
+039173
+M039173
+039174
+M039174
+039175
+M039175
+039176
+M039176
+039177
+M039177
+039178
+M039178
+039179
+M039179
+039180
+M039180
+039197
+M039197
+039198
+M039198
+039199
+M039199
+039200
+M039200
+039201
+M039201
+039202
+M039202
+039203
+M039203
+039204
+M039204
+039205
+M039205
+039206
+M039206
+039207
+M039207
+039208
+M039208
+039209
+M039209
+039210
+M039210
+039211
+M039211
+039212
+M039212
+039213
+M039213
+039214
+M039214
+039215
+M039215
+039216
+M039216
+039217
+M039217
+039218
+M039218
+039219
+M039219
+039220
+M039220
+039221
+M039221
+039222
+M039222
+039223
+M039223
+039224
+M039224
+039225
+M039225
+039226
+M039226
+039227
+M039227
+039228
+M039228
+039229
+M039229
+039230
+M039230
+039237
+M039237
+039238
+M039238
+039239
+M039239
+039240
+M039240
+039241
+M039241
+039242
+M039242
+039243
+M039243
+039244
+M039244
+039245
+M039245
+039246
+M039246
+039247
+M039247
+039248
+M039248
+039249
+M039249
+039250
+M039250
+039251
+M039251
+039252
+M039252
+039253
+M039253
+039254
+M039254
+039255
+M039255
+039256
+M039256
+039257
+M039257
+039258
+M039258
+039259
+M039259
+039260
+M039260
+039261
+M039261
+039262
+M039262
+039263
+M039263
+039264
+M039264
+039265
+M039265
+039266
+M039266
+039267
+M039267
+039268
+M039268
+039269
+M039269
+039270
+M039270
+039271
+M039271
+039272
+M039272
+039273
+M039273
+039274
+M039274
+039275
+M039275
+039276
+M039276
+039277
+M039277
+039278
+M039278
+039279
+M039279
+039280
+M039280
+039281
+M039281
+039282
+M039282
+039283
+M039283
+039284
+M039284
+039285
+M039285
+039286
+M039286
+039287
+M039287
+039288
+M039288
+039289
+M039289
+039290
+M039290
+039291
+M039291
+039292
+M039292
+039293
+M039293
+039294
+M039294
+039295
+M039295
+039296
+M039296
+039297
+M039297
+039298
+M039298
+039299
+M039299
+039309
+M039309
+039310
+M039310
+039311
+M039311
+039312
+M039312
+039313
+M039313
+039314
+M039314
+039315
+M039315
+039321
+M039321
+039322
+M039322
+039323
+M039323
+039324
+M039324
+039325
+M039325
+039326
+M039326
+039327
+M039327
+039328
+M039328
+039329
+M039329
+039330
+M039330
+039331
+M039331
+039332
+M039332
+039333
+M039333
+039334
+M039334
+039335
+M039335
+039336
+M039336
+039337
+M039337
+039338
+M039338
+039339
+M039339
+039340
+M039340
+039341
+M039341
+039342
+M039342
+039343
+M039343
+039344
+M039344
+039345
+M039345
+039355
+M039355
+039356
+M039356
+039357
+M039357
+039358
+M039358
+039359
+M039359
+039360
+M039360
+039361
+M039361
+039362
+M039362
+039363
+M039363
+039364
+M039364
+039365
+M039365
+039366
+M039366
+039367
+M039367
+039368
+M039368
+039369
+M039369
+039370
+M039370
+039371
+M039371
+039372
+M039372
+039373
+M039373
+039374
+M039374
+039375
+M039375
+039376
+M039376
+039377
+M039377
+039378
+M039378
+039379
+M039379
+039385
+M039385
+039386
+M039386
+039387
+M039387
+039388
+M039388
+039389
+M039389
+039390
+M039390
+039391
+M039391
+039392
+M039392
+039393
+M039393
+039394
+M039394
+039395
+M039395
+039396
+M039396
+039397
+M039397
+039398
+M039398
+039399
+M039399
+039400
+M039400
+039401
+M039401
+039402
+M039402
+039403
+M039403
+039404
+M039404
+039405
+M039405
+039406
+M039406
+039407
+M039407
+039408
+M039408
+039409
+M039409
+039410
+M039410
+039411
+M039411
+039412
+M039412
+039413
+M039413
+039414
+M039414
+039415
+M039415
+039416
+M039416
+039417
+M039417
+039418
+M039418
+039419
+M039419
+039420
+M039420
+039421
+M039421
+039422
+M039422
+039423
+M039423
+039424
+M039424
+039425
+M039425
+039426
+M039426
+039427
+M039427
+039428
+M039428
+039429
+M039429
+039430
+M039430
+039431
+M039431
+039432
+M039432
+039433
+M039433
+039434
+M039434
+039435
+M039435
+039436
+M039436
+039437
+M039437
+039438
+M039438
+039439
+M039439
+039440
+M039440
+039441
+M039441
+039442
+M039442
+039443
+M039443
+039444
+M039444
+039445
+M039445
+039446
+M039446
+039447
+M039447
+039448
+M039448
+039449
+M039449
+039450
+M039450
+039451
+M039451
+039452
+M039452
+039453
+M039453
+039454
+M039454
+039455
+M039455
+039456
+M039456
+039479
+M039479
+039480
+M039480
+039481
+M039481
+039482
+M039482
+039483
+M039483
+039484
+M039484
+039485
+M039485
+039486
+M039486
+039487
+M039487
+039488
+M039488
+039489
+M039489
+039490
+M039490
+039491
+M039491
+039492
+M039492
+039493
+M039493
+039494
+M039494
+039495
+M039495
+039496
+M039496
+039497
+M039497
+039498
+M039498
+039499
+M039499
+039500
+M039500
+039501
+M039501
+039502
+M039502
+039503
+M039503
+039504
+M039504
+039505
+M039505
+039527
+M039527
+039528
+M039528
+039583
+M039583
+039584
+M039584
+039585
+M039585
+039586
+M039586
+039587
+M039587
+039588
+M039588
+039589
+M039589
+039590
+M039590
+039591
+M039591
+039592
+M039592
+039593
+M039593
+039594
+M039594
+039595
+M039595
+039596
+M039596
+039597
+M039597
+039598
+M039598
+039599
+M039599
+039600
+M039600
+039601
+M039601
+039602
+M039602
+039603
+M039603
+039604
+M039604
+039605
+M039605
+039606
+M039606
+039607
+M039607
+039608
+M039608
+039609
+M039609
+039610
+M039610
+039611
+M039611
+039622
+M039622
+039623
+M039623
+039624
+M039624
+039625
+M039625
+039626
+M039626
+039627
+M039627
+039628
+M039628
+039629
+M039629
+039630
+M039630
+039631
+M039631
+039632
+M039632
+039633
+M039633
+039634
+M039634
+039635
+M039635
+039636
+M039636
+039637
+M039637
+039638
+M039638
+039639
+M039639
+039640
+M039640
+039641
+M039641
+039642
+M039642
+039643
+M039643
+039644
+M039644
+039645
+M039645
+039646
+M039646
+039647
+M039647
+039648
+M039648
+039649
+M039649
+039650
+M039650
+039651
+M039651
+039652
+M039652
+039653
+M039653
+039654
+M039654
+039655
+M039655
+039656
+M039656
+039657
+M039657
+039658
+M039658
+039659
+M039659
+039660
+M039660
+039661
+M039661
+039662
+M039662
+039663
+M039663
+039664
+M039664
+039665
+M039665
+039666
+M039666
+039667
+M039667
+039668
+M039668
+039669
+M039669
+039670
+M039670
+039671
+M039671
+039672
+M039672
+039673
+M039673
+039674
+M039674
+039675
+M039675
+039676
+M039676
+039677
+M039677
+039678
+M039678
+039679
+M039679
+039680
+M039680
+039681
+M039681
+039682
+M039682
+039683
+M039683
+039684
+M039684
+039685
+M039685
+039686
+M039686
+039687
+M039687
+039688
+M039688
+039689
+M039689
+039690
+M039690
+039691
+M039691
+039692
+M039692
+039693
+M039693
+039694
+M039694
+039695
+M039695
+039696
+M039696
+039697
+M039697
+039698
+M039698
+039699
+M039699
+039700
+M039700
+039701
+M039701
+039702
+M039702
+039703
+M039703
+039704
+M039704
+039705
+M039705
+039706
+M039706
+039707
+M039707
+039708
+M039708
+039709
+M039709
+039710
+M039710
+039711
+M039711
+039712
+M039712
+039713
+M039713
+039714
+M039714
+039715
+M039715
+039716
+M039716
+039717
+M039717
+039718
+M039718
+039719
+M039719
+039720
+M039720
+039721
+M039721
+039722
+M039722
+039723
+M039723
+039724
+M039724
+039725
+M039725
+039726
+M039726
+039727
+M039727
+039728
+M039728
+039729
+M039729
+039730
+M039730
+039731
+M039731
+039732
+M039732
+039733
+M039733
+039734
+M039734
+039735
+M039735
+039736
+M039736
+039737
+M039737
+039749
+M039749
+039750
+M039750
+039751
+M039751
+039752
+M039752
+039753
+M039753
+039754
+M039754
+039755
+M039755
+039756
+M039756
+039757
+M039757
+039758
+M039758
+039759
+M039759
+039760
+M039760
+039761
+M039761
+039762
+M039762
+039763
+M039763
+039764
+M039764
+039765
+M039765
+039766
+M039766
+039767
+M039767
+039768
+M039768
+039769
+M039769
+039770
+M039770
+039771
+M039771
+039772
+M039772
+039773
+M039773
+039774
+M039774
+039775
+M039775
+039776
+M039776
+039777
+M039777
+039778
+M039778
+039779
+M039779
+039780
+M039780
+039781
+M039781
+039782
+M039782
+039783
+M039783
+039784
+M039784
+039785
+M039785
+039786
+M039786
+039787
+M039787
+039788
+M039788
+039789
+M039789
+039790
+M039790
+039791
+M039791
+039792
+M039792
+039793
+M039793
+039794
+M039794
+039795
+M039795
+039803
+M039803
+039804
+M039804
+039805
+M039805
+039806
+M039806
+039807
+M039807
+039808
+M039808
+039809
+M039809
+039810
+M039810
+039811
+M039811
+039812
+M039812
+039813
+M039813
+039814
+M039814
+039815
+M039815
+039816
+M039816
+039817
+M039817
+039818
+M039818
+039819
+M039819
+039820
+M039820
+039821
+M039821
+039822
+M039822
+039823
+M039823
+039824
+M039824
+039825
+M039825
+039826
+M039826
+039827
+M039827
+039828
+M039828
+039829
+M039829
+039830
+M039830
+039831
+M039831
+039832
+M039832
+039833
+M039833
+039834
+M039834
+039835
+M039835
+039836
+M039836
+039837
+M039837
+039838
+M039838
+039839
+M039839
+039840
+M039840
+039841
+M039841
+039842
+M039842
+039843
+M039843
+039844
+M039844
+039846
+M039846
+039847
+M039847
+039848
+M039848
+039849
+M039849
+039850
+M039850
+039851
+M039851
+039852
+M039852
+039853
+M039853
+039854
+M039854
+039855
+M039855
+039856
+M039856
+039857
+M039857
+039858
+M039858
+039859
+M039859
+039889
+M039889
+039890
+M039890
+039891
+M039891
+039892
+M039892
+039893
+M039893
+039911
+M039911
+039912
+M039912
+039913
+M039913
+039914
+M039914
+039915
+M039915
+039916
+M039916
+039917
+M039917
+039918
+M039918
+039919
+M039919
+039920
+M039920
+039921
+M039921
+039922
+M039922
+039923
+M039923
+039924
+M039924
+039925
+M039925
+039926
+M039926
+039927
+M039927
+039928
+M039928
+039929
+M039929
+039930
+M039930
+039931
+M039931
+039932
+M039932
+039933
+M039933
+039934
+M039934
+039935
+M039935
+039936
+M039936
+039937
+M039937
+039938
+M039938
+039939
+M039939
+039940
+M039940
+039941
+M039941
+039942
+M039942
+039943
+M039943
+039944
+M039944
+039945
+M039945
+039946
+M039946
+039947
+M039947
+039948
+M039948
+039949
+M039949
+039950
+M039950
+039951
+M039951
+039952
+M039952
+039953
+M039953
+039954
+M039954
+039966
+M039966
+039967
+M039967
+039968
+M039968
+039969
+M039969
+039970
+M039970
+039971
+M039971
+039972
+M039972
+039973
+M039973
+039974
+M039974
+039975
+M039975
+039976
+M039976
+039977
+M039977
+039978
+M039978
+039979
+M039979
+039980
+M039980
+039981
+M039981
+039982
+M039982
+039983
+M039983
+039984
+M039984
+039985
+M039985
+039986
+M039986
+039987
+M039987
+039988
+M039988
+039989
+M039989
+039990
+M039990
+039991
+M039991
+039992
+M039992
+039993
+M039993
+039994
+M039994
+039995
+M039995
+039996
+M039996
+039997
+M039997
+039998
+M039998
+039999
+M039999
+040000
+M040000
+040001
+M040001
+040002
+M040002
+040003
+M040003
+040004
+M040004
+040005
+M040005
+040006
+M040006
+040007
+M040007
+040008
+M040008
+040009
+M040009
+040010
+M040010
+040011
+M040011
+040012
+M040012
+040013
+M040013
+040014
+M040014
+040015
+M040015
+040016
+M040016
+040017
+M040017
+040018
+M040018
+040019
+M040019
+040020
+M040020
+040021
+M040021
+040022
+M040022
+040023
+M040023
+040024
+M040024
+040126
+M040126
+040127
+M040127
+040128
+M040128
+040129
+M040129
+040130
+M040130
+040131
+M040131
+040132
+M040132
+040133
+M040133
+040134
+M040134
+040135
+M040135
+040136
+M040136
+040142
+M040142
+040143
+M040143
+040144
+M040144
+040145
+M040145
+040146
+M040146
+040147
+M040147
+040148
+M040148
+040149
+M040149
+040150
+M040150
+040151
+M040151
+040152
+M040152
+040153
+M040153
+040154
+M040154
+040155
+M040155
+040156
+M040156
+040157
+M040157
+040158
+M040158
+040159
+M040159
+040160
+M040160
+040161
+M040161
+040162
+M040162
+040163
+M040163
+040164
+M040164
+040165
+M040165
+040166
+M040166
+040167
+M040167
+040168
+M040168
+040169
+M040169
+040170
+M040170
+040171
+M040171
+040172
+M040172
+040173
+M040173
+040174
+M040174
+040175
+M040175
+040176
+M040176
+040177
+M040177
+040178
+M040178
+040179
+M040179
+040180
+M040180
+040181
+M040181
+040182
+M040182
+040183
+M040183
+040184
+M040184
+040185
+M040185
+040186
+M040186
+040187
+M040187
+040188
+M040188
+040189
+M040189
+040190
+M040190
+040191
+M040191
+040192
+M040192
+040193
+M040193
+040200
+M040200
+040201
+M040201
+040202
+M040202
+040203
+M040203
+040204
+M040204
+040205
+M040205
+040206
+M040206
+040207
+M040207
+040208
+M040208
+040209
+M040209
+040210
+M040210
+040211
+M040211
+040212
+M040212
+040213
+M040213
+040214
+M040214
+040215
+M040215
+040216
+M040216
+040217
+M040217
+040218
+M040218
+040219
+M040219
+040220
+M040220
+040221
+M040221
+040222
+M040222
+040223
+M040223
+040224
+M040224
+040225
+M040225
+040226
+M040226
+040227
+M040227
+040228
+M040228
+040229
+M040229
+040230
+M040230
+040231
+M040231
+040232
+M040232
+040233
+M040233
+040234
+M040234
+040235
+M040235
+040236
+M040236
+040237
+M040237
+040238
+M040238
+040239
+M040239
+040240
+M040240
+040241
+M040241
+040242
+M040242
+040243
+M040243
+040244
+M040244
+040245
+M040245
+040246
+M040246
+040247
+M040247
+040248
+M040248
+040249
+M040249
+040250
+M040250
+040251
+M040251
+040252
+M040252
+040253
+M040253
+040254
+M040254
+040255
+M040255
+040256
+M040256
+040257
+M040257
+040258
+M040258
+040259
+M040259
+040260
+M040260
+040261
+M040261
+040262
+M040262
+040263
+M040263
+040264
+M040264
+040265
+M040265
+040266
+M040266
+040267
+M040267
+040268
+M040268
+040269
+M040269
+040270
+M040270
+040271
+M040271
+040272
+M040272
+040273
+M040273
+040274
+M040274
+040275
+M040275
+040276
+M040276
+040277
+M040277
+040278
+M040278
+040279
+M040279
+040280
+M040280
+040281
+M040281
+040282
+M040282
+040283
+M040283
+040284
+M040284
+040285
+M040285
+040286
+M040286
+040287
+M040287
+040288
+M040288
+040289
+M040289
+040290
+M040290
+040291
+M040291
+040292
+M040292
+040293
+M040293
+040294
+M040294
+040295
+M040295
+040296
+M040296
+040297
+M040297
+040298
+M040298
+040299
+M040299
+040300
+M040300
+040301
+M040301
+040302
+M040302
+040303
+M040303
+040304
+M040304
+040305
+M040305
+040306
+M040306
+040307
+M040307
+040308
+M040308
+040309
+M040309
+040310
+M040310
+040311
+M040311
+040312
+M040312
+040313
+M040313
+040314
+M040314
+040315
+M040315
+040316
+M040316
+040317
+M040317
+040318
+M040318
+040319
+M040319
+040320
+M040320
+040321
+M040321
+040322
+M040322
+040323
+M040323
+040324
+M040324
+040328
+M040328
+040329
+M040329
+040330
+M040330
+040331
+M040331
+040332
+M040332
+040333
+M040333
+040334
+M040334
+040335
+M040335
+040336
+M040336
+040337
+M040337
+040338
+M040338
+040339
+M040339
+040340
+M040340
+040341
+M040341
+040342
+M040342
+040343
+M040343
+040344
+M040344
+040347
+M040347
+040348
+M040348
+040349
+M040349
+040378
+M040378
+040379
+M040379
+040380
+M040380
+040381
+M040381
+040382
+M040382
+040383
+M040383
+040384
+M040384
+040385
+M040385
+040388
+M040388
+040389
+M040389
+040390
+M040390
+040391
+M040391
+040395
+M040395
+040396
+M040396
+040397
+M040397
+040398
+M040398
+040399
+M040399
+040400
+M040400
+040401
+M040401
+040413
+M040413
+040414
+M040414
+040415
+M040415
+040416
+M040416
+040417
+M040417
+040418
+M040418
+040419
+M040419
+040420
+M040420
+040421
+M040421
+040422
+M040422
+040423
+M040423
+040424
+M040424
+040425
+M040425
+040426
+M040426
+040427
+M040427
+040428
+M040428
+040429
+M040429
+040430
+M040430
+040431
+M040431
+040456
+M040456
+040457
+M040457
+040458
+M040458
+040459
+M040459
+040460
+M040460
+040461
+M040461
+040462
+M040462
+040463
+M040463
+040464
+M040464
+040465
+M040465
+040466
+M040466
+040467
+M040467
+040468
+M040468
+040469
+M040469
+040470
+M040470
+040471
+M040471
+040472
+M040472
+040473
+M040473
+040474
+M040474
+040475
+M040475
+040476
+M040476
+040477
+M040477
+040487
+M040487
+040488
+M040488
+040489
+M040489
+040490
+M040490
+040491
+M040491
+040492
+M040492
+040493
+M040493
+040494
+M040494
+040495
+M040495
+040496
+M040496
+040497
+M040497
+040498
+M040498
+040499
+M040499
+040500
+M040500
+040501
+M040501
+040502
+M040502
+040503
+M040503
+040504
+M040504
+040505
+M040505
+040506
+M040506
+040507
+M040507
+040508
+M040508
+040509
+M040509
+040510
+M040510
+040530
+M040530
+040531
+M040531
+040532
+M040532
+040533
+M040533
+040534
+M040534
+040535
+M040535
+040536
+M040536
+040537
+M040537
+040552
+M040552
+040553
+M040553
+040554
+M040554
+040555
+M040555
+040556
+M040556
+040557
+M040557
+040558
+M040558
+040559
+M040559
+040560
+M040560
+040561
+M040561
+040562
+M040562
+040563
+M040563
+040564
+M040564
+040565
+M040565
+040566
+M040566
+040567
+M040567
+040568
+M040568
+040569
+M040569
+040570
+M040570
+040571
+M040571
+040572
+M040572
+040573
+M040573
+040574
+M040574
+040575
+M040575
+040576
+M040576
+040577
+M040577
+040578
+M040578
+040579
+M040579
+040580
+M040580
+040581
+M040581
+040582
+M040582
+040583
+M040583
+040584
+M040584
+040585
+M040585
+040586
+M040586
+040587
+M040587
+040588
+M040588
+040589
+M040589
+040590
+M040590
+040591
+M040591
+040592
+M040592
+040593
+M040593
+040594
+M040594
+040595
+M040595
+040596
+M040596
+040597
+M040597
+040598
+M040598
+040599
+M040599
+040600
+M040600
+040601
+M040601
+040602
+M040602
+040603
+M040603
+040604
+M040604
+040605
+M040605
+040606
+M040606
+040607
+M040607
+040608
+M040608
+040609
+M040609
+040610
+M040610
+040611
+M040611
+040612
+M040612
+040613
+M040613
+040614
+M040614
+040615
+M040615
+040616
+M040616
+040617
+M040617
+040618
+M040618
+040619
+M040619
+040620
+M040620
+040621
+M040621
+040622
+M040622
+040623
+M040623
+040624
+M040624
+040625
+M040625
+040626
+M040626
+040627
+M040627
+040628
+M040628
+040629
+M040629
+040630
+M040630
+040631
+M040631
+040632
+M040632
+040633
+M040633
+040634
+M040634
+040635
+M040635
+040636
+M040636
+040637
+M040637
+040638
+M040638
+040639
+M040639
+040640
+M040640
+040641
+M040641
+040642
+M040642
+040643
+M040643
+040644
+M040644
+040645
+M040645
+040646
+M040646
+040654
+M040654
+040655
+M040655
+040656
+M040656
+040657
+M040657
+040658
+M040658
+040665
+M040665
+040666
+M040666
+040667
+M040667
+040668
+M040668
+040669
+M040669
+040670
+M040670
+040671
+M040671
+040672
+M040672
+040673
+M040673
+040674
+M040674
+040675
+M040675
+040676
+M040676
+040677
+M040677
+040678
+M040678
+040679
+M040679
+040680
+M040680
+040681
+M040681
+040682
+M040682
+040683
+M040683
+040684
+M040684
+040685
+M040685
+040686
+M040686
+040687
+M040687
+040688
+M040688
+040689
+M040689
+040690
+M040690
+040691
+M040691
+040692
+M040692
+040693
+M040693
+040694
+M040694
+040695
+M040695
+040696
+M040696
+040697
+M040697
+040698
+M040698
+040699
+M040699
+040700
+M040700
+040701
+M040701
+040702
+M040702
+040703
+M040703
+040704
+M040704
+040705
+M040705
+040706
+M040706
+040707
+M040707
+040708
+M040708
+040709
+M040709
+040710
+M040710
+040711
+M040711
+040712
+M040712
+040713
+M040713
+040714
+M040714
+040734
+M040734
+040735
+M040735
+040736
+M040736
+040737
+M040737
+040738
+M040738
+040739
+M040739
+040740
+M040740
+040741
+M040741
+040742
+M040742
+040743
+M040743
+040744
+M040744
+040745
+M040745
+040746
+M040746
+040747
+M040747
+040748
+M040748
+040749
+M040749
+040750
+M040750
+040751
+M040751
+040752
+M040752
+040775
+M040775
+040776
+M040776
+040777
+M040777
+040778
+M040778
+040779
+M040779
+040780
+M040780
+040781
+M040781
+040782
+M040782
+040783
+M040783
+040784
+M040784
+040785
+M040785
+040786
+M040786
+040787
+M040787
+040788
+M040788
+040789
+M040789
+040790
+M040790
+040791
+M040791
+040792
+M040792
+040793
+M040793
+040794
+M040794
+040795
+M040795
+040796
+M040796
+040799
+M040799
+040800
+M040800
+040801
+M040801
+040802
+M040802
+040803
+M040803
+040804
+M040804
+040805
+M040805
+040806
+M040806
+040807
+M040807
+040808
+M040808
+040809
+M040809
+040810
+M040810
+040811
+M040811
+040817
+M040817
+040818
+M040818
+040819
+M040819
+040820
+M040820
+040821
+M040821
+040822
+M040822
+040823
+M040823
+040824
+M040824
+040825
+M040825
+040826
+M040826
+040827
+M040827
+040828
+M040828
+040829
+M040829
+040830
+M040830
+040831
+M040831
+040832
+M040832
+040833
+M040833
+040834
+M040834
+040835
+M040835
+040836
+M040836
+040837
+M040837
+040838
+M040838
+040839
+M040839
+040840
+M040840
+040841
+M040841
+040842
+M040842
+040843
+M040843
+040844
+M040844
+040845
+M040845
+040846
+M040846
+040847
+M040847
+040848
+M040848
+040849
+M040849
+040850
+M040850
+040851
+M040851
+040852
+M040852
+040853
+M040853
+040854
+M040854
+040855
+M040855
+040856
+M040856
+040857
+M040857
+040858
+M040858
+040859
+M040859
+040860
+M040860
+040861
+M040861
+040862
+M040862
+040863
+M040863
+040864
+M040864
+040865
+M040865
+040866
+M040866
+040867
+M040867
+040868
+M040868
+040869
+M040869
+040870
+M040870
+040871
+M040871
+040872
+M040872
+040873
+M040873
+040874
+M040874
+040875
+M040875
+040876
+M040876
+040877
+M040877
+040878
+M040878
+040879
+M040879
+040880
+M040880
+040881
+M040881
+040882
+M040882
+040883
+M040883
+040884
+M040884
+040885
+M040885
+040886
+M040886
+040887
+M040887
+040888
+M040888
+040889
+M040889
+040890
+M040890
+040891
+M040891
+040892
+M040892
+040893
+M040893
+040894
+M040894
+040895
+M040895
+040896
+M040896
+040897
+M040897
+040898
+M040898
+040899
+M040899
+040900
+M040900
+040901
+M040901
+040902
+M040902
+040903
+M040903
+040904
+M040904
+040905
+M040905
+040906
+M040906
+040907
+M040907
+040908
+M040908
+040909
+M040909
+040910
+M040910
+040911
+M040911
+040912
+M040912
+040913
+M040913
+040938
+M040938
+040939
+M040939
+040940
+M040940
+040941
+M040941
+040942
+M040942
+040943
+M040943
+040944
+M040944
+040945
+M040945
+040946
+M040946
+040947
+M040947
+040948
+M040948
+040949
+M040949
+040950
+M040950
+040951
+M040951
+040952
+M040952
+040953
+M040953
+040954
+M040954
+040955
+M040955
+040956
+M040956
+040957
+M040957
+040958
+M040958
+040959
+M040959
+040960
+M040960
+040961
+M040961
+040962
+M040962
+040963
+M040963
+040964
+M040964
+040965
+M040965
+040966
+M040966
+040967
+M040967
+040968
+M040968
+040969
+M040969
+040970
+M040970
+040971
+M040971
+040972
+M040972
+040973
+M040973
+040974
+M040974
+040975
+M040975
+040976
+M040976
+040977
+M040977
+040978
+M040978
+040979
+M040979
+040980
+M040980
+040981
+M040981
+040982
+M040982
+040983
+M040983
+041025
+M041025
+041026
+M041026
+041027
+M041027
+041028
+M041028
+041029
+M041029
+041030
+M041030
+041031
+M041031
+041032
+M041032
+041033
+M041033
+041034
+M041034
+041035
+M041035
+041036
+M041036
+041037
+M041037
+041038
+M041038
+041039
+M041039
+041040
+M041040
+041041
+M041041
+041042
+M041042
+041043
+M041043
+041044
+M041044
+041045
+M041045
+041046
+M041046
+041047
+M041047
+041048
+M041048
+041049
+M041049
+041050
+M041050
+041051
+M041051
+041052
+M041052
+041053
+M041053
+041054
+M041054
+041055
+M041055
+041056
+M041056
+041057
+M041057
+041058
+M041058
+041059
+M041059
+041060
+M041060
+041061
+M041061
+041062
+M041062
+041063
+M041063
+041064
+M041064
+041065
+M041065
+041066
+M041066
+041067
+M041067
+041068
+M041068
+041069
+M041069
+041070
+M041070
+041071
+M041071
+041072
+M041072
+041073
+M041073
+041074
+M041074
+041075
+M041075
+041076
+M041076
+041077
+M041077
+041078
+M041078
+041079
+M041079
+041080
+M041080
+041081
+M041081
+041082
+M041082
+041083
+M041083
+041084
+M041084
+041085
+M041085
+041086
+M041086
+041087
+M041087
+041088
+M041088
+041089
+M041089
+041090
+M041090
+041091
+M041091
+041092
+M041092
+041093
+M041093
+041094
+M041094
+041095
+M041095
+041096
+M041096
+041097
+M041097
+041098
+M041098
+041099
+M041099
+041100
+M041100
+041101
+M041101
+041102
+M041102
+041103
+M041103
+041104
+M041104
+041113
+M041113
+041114
+M041114
+041115
+M041115
+041116
+M041116
+041117
+M041117
+041118
+M041118
+041119
+M041119
+041120
+M041120
+041121
+M041121
+041122
+M041122
+041123
+M041123
+041124
+M041124
+041125
+M041125
+041126
+M041126
+041127
+M041127
+041128
+M041128
+041129
+M041129
+041130
+M041130
+041131
+M041131
+041132
+M041132
+041133
+M041133
+041134
+M041134
+041135
+M041135
+041136
+M041136
+041137
+M041137
+041138
+M041138
+041139
+M041139
+041140
+M041140
+041141
+M041141
+041142
+M041142
+041143
+M041143
+041144
+M041144
+041145
+M041145
+041146
+M041146
+041147
+M041147
+041148
+M041148
+041149
+M041149
+041150
+M041150
+041151
+M041151
+041152
+M041152
+041153
+M041153
+041154
+M041154
+041155
+M041155
+041156
+M041156
+041157
+M041157
+041158
+M041158
+041159
+M041159
+041160
+M041160
+041161
+M041161
+041162
+M041162
+041163
+M041163
+041164
+M041164
+041165
+M041165
+041166
+M041166
+041167
+M041167
+041168
+M041168
+041169
+M041169
+041170
+M041170
+041171
+M041171
+041172
+M041172
+041176
+M041176
+041177
+M041177
+041178
+M041178
+041179
+M041179
+041180
+M041180
+041213
+M041213
+041214
+M041214
+041215
+M041215
+041216
+M041216
+041217
+M041217
+041218
+M041218
+041219
+M041219
+041220
+M041220
+041222
+M041222
+041223
+M041223
+041224
+M041224
+041225
+M041225
+041226
+M041226
+041227
+M041227
+041228
+M041228
+041229
+M041229
+041230
+M041230
+041231
+M041231
+041232
+M041232
+041233
+M041233
+041234
+M041234
+041235
+M041235
+041236
+M041236
+041237
+M041237
+041238
+M041238
+041239
+M041239
+041240
+M041240
+041241
+M041241
+041242
+M041242
+041243
+M041243
+041244
+M041244
+041245
+M041245
+041246
+M041246
+041247
+M041247
+041248
+M041248
+041249
+M041249
+041250
+M041250
+041251
+M041251
+041252
+M041252
+041253
+M041253
+041254
+M041254
+041255
+M041255
+041256
+M041256
+041257
+M041257
+041258
+M041258
+041259
+M041259
+041260
+M041260
+041262
+M041262
+041263
+M041263
+041264
+M041264
+041265
+M041265
+041266
+M041266
+041267
+M041267
+041268
+M041268
+041269
+M041269
+041270
+M041270
+041271
+M041271
+041272
+M041272
+041273
+M041273
+041274
+M041274
+041275
+M041275
+041276
+M041276
+041277
+M041277
+041278
+M041278
+041279
+M041279
+041280
+M041280
+041281
+M041281
+041282
+M041282
+041283
+M041283
+041284
+M041284
+041285
+M041285
+041286
+M041286
+041287
+M041287
+041288
+M041288
+041289
+M041289
+041290
+M041290
+041291
+M041291
+041292
+M041292
+041293
+M041293
+041294
+M041294
+041295
+M041295
+041296
+M041296
+041297
+M041297
+041298
+M041298
+041299
+M041299
+041300
+M041300
+041301
+M041301
+041302
+M041302
+041303
+M041303
+041304
+M041304
+041305
+M041305
+041306
+M041306
+041307
+M041307
+041308
+M041308
+041309
+M041309
+041310
+M041310
+041311
+M041311
+041312
+M041312
+041313
+M041313
+041314
+M041314
+041315
+M041315
+041316
+M041316
+041317
+M041317
+041318
+M041318
+041319
+M041319
+041320
+M041320
+041321
+M041321
+041322
+M041322
+041323
+M041323
+041324
+M041324
+041325
+M041325
+041326
+M041326
+041327
+M041327
+041328
+M041328
+041329
+M041329
+041330
+M041330
+041331
+M041331
+041332
+M041332
+041333
+M041333
+041334
+M041334
+041335
+M041335
+041336
+M041336
+041337
+M041337
+041338
+M041338
+041339
+M041339
+041340
+M041340
+041341
+M041341
+041342
+M041342
+041343
+M041343
+041344
+M041344
+041345
+M041345
+041346
+M041346
+041347
+M041347
+041348
+M041348
+041349
+M041349
+041350
+M041350
+041351
+M041351
+041352
+M041352
+041353
+M041353
+041354
+M041354
+041355
+M041355
+041356
+M041356
+041357
+M041357
+041358
+M041358
+041359
+M041359
+041360
+M041360
+041361
+M041361
+041362
+M041362
+041363
+M041363
+041364
+M041364
+041365
+M041365
+041366
+M041366
+041367
+M041367
+041368
+M041368
+041369
+M041369
+041370
+M041370
+041371
+M041371
+041372
+M041372
+041373
+M041373
+041383
+M041383
+041384
+M041384
+041385
+M041385
+041386
+M041386
+041387
+M041387
+041388
+M041388
+041389
+M041389
+041390
+M041390
+041391
+M041391
+041392
+M041392
+041393
+M041393
+041394
+M041394
+041395
+M041395
+041396
+M041396
+041397
+M041397
+041398
+M041398
+041399
+M041399
+041400
+M041400
+041401
+M041401
+041402
+M041402
+041403
+M041403
+041404
+M041404
+041405
+M041405
+041406
+M041406
+041407
+M041407
+041408
+M041408
+041409
+M041409
+041410
+M041410
+041411
+M041411
+041412
+M041412
+041413
+M041413
+041414
+M041414
+041415
+M041415
+041416
+M041416
+041417
+M041417
+041418
+M041418
+041419
+M041419
+041439
+M041439
+041440
+M041440
+041441
+M041441
+041442
+M041442
+041443
+M041443
+041444
+M041444
+041445
+M041445
+041446
+M041446
+041447
+M041447
+041448
+M041448
+041449
+M041449
+041450
+M041450
+041451
+M041451
+041452
+M041452
+041453
+M041453
+041454
+M041454
+041455
+M041455
+041456
+M041456
+041457
+M041457
+041458
+M041458
+041459
+M041459
+041460
+M041460
+041461
+M041461
+041462
+M041462
+041463
+M041463
+041464
+M041464
+041465
+M041465
+041466
+M041466
+041467
+M041467
+041468
+M041468
+041469
+M041469
+041470
+M041470
+041471
+M041471
+041472
+M041472
+041473
+M041473
+041474
+M041474
+041475
+M041475
+041476
+M041476
+041477
+M041477
+041478
+M041478
+041484
+M041484
+041485
+M041485
+041486
+M041486
+041487
+M041487
+041488
+M041488
+041489
+M041489
+041490
+M041490
+041491
+M041491
+041492
+M041492
+041493
+M041493
+041494
+M041494
+041495
+M041495
+041496
+M041496
+041497
+M041497
+041498
+M041498
+041499
+M041499
+041500
+M041500
+041501
+M041501
+041502
+M041502
+041503
+M041503
+041507
+M041507
+041508
+M041508
+041509
+M041509
+041510
+M041510
+041511
+M041511
+041512
+M041512
+041513
+M041513
+041514
+M041514
+041515
+M041515
+041516
+M041516
+041517
+M041517
+041518
+M041518
+041519
+M041519
+041520
+M041520
+041524
+M041524
+041525
+M041525
+041526
+M041526
+041527
+M041527
+041528
+M041528
+041529
+M041529
+041530
+M041530
+041531
+M041531
+041532
+M041532
+041533
+M041533
+041534
+M041534
+041535
+M041535
+041536
+M041536
+041566
+M041566
+041567
+M041567
+041568
+M041568
+041569
+M041569
+041570
+M041570
+041571
+M041571
+041572
+M041572
+041573
+M041573
+041574
+M041574
+041575
+M041575
+041576
+M041576
+041577
+M041577
+041578
+M041578
+041579
+M041579
+041580
+M041580
+041581
+M041581
+041582
+M041582
+041583
+M041583
+041584
+M041584
+041585
+M041585
+041586
+M041586
+041587
+M041587
+041588
+M041588
+041589
+M041589
+041590
+M041590
+041591
+M041591
+041592
+M041592
+041593
+M041593
+041594
+M041594
+041595
+M041595
+041596
+M041596
+041597
+M041597
+041598
+M041598
+041599
+M041599
+041600
+M041600
+041601
+M041601
+041602
+M041602
+041603
+M041603
+041604
+M041604
+041605
+M041605
+041606
+M041606
+041607
+M041607
+041608
+M041608
+041609
+M041609
+041610
+M041610
+041611
+M041611
+041612
+M041612
+041613
+M041613
+041614
+M041614
+041615
+M041615
+041616
+M041616
+041617
+M041617
+041618
+M041618
+041619
+M041619
+041620
+M041620
+041621
+M041621
+041622
+M041622
+041623
+M041623
+041624
+M041624
+041625
+M041625
+041626
+M041626
+041627
+M041627
+041628
+M041628
+041629
+M041629
+041630
+M041630
+041631
+M041631
+041632
+M041632
+041633
+M041633
+041634
+M041634
+041635
+M041635
+041636
+M041636
+041638
+M041638
+041639
+M041639
+041640
+M041640
+041641
+M041641
+041642
+M041642
+041643
+M041643
+041644
+M041644
+041645
+M041645
+041646
+M041646
+041647
+M041647
+041648
+M041648
+041649
+M041649
+041650
+M041650
+041651
+M041651
+041652
+M041652
+041653
+M041653
+041654
+M041654
+041655
+M041655
+041656
+M041656
+041657
+M041657
+041658
+M041658
+041659
+M041659
+041660
+M041660
+041661
+M041661
+041662
+M041662
+041663
+M041663
+041664
+M041664
+041665
+M041665
+041666
+M041666
+041667
+M041667
+041668
+M041668
+041669
+M041669
+041670
+M041670
+041671
+M041671
+041672
+M041672
+041673
+M041673
+041674
+M041674
+041675
+M041675
+041676
+M041676
+041677
+M041677
+041678
+M041678
+041679
+M041679
+041680
+M041680
+041681
+M041681
+041682
+M041682
+041683
+M041683
+041684
+M041684
+041685
+M041685
+041686
+M041686
+041687
+M041687
+041688
+M041688
+041689
+M041689
+041690
+M041690
+041734
+M041734
+041735
+M041735
+041736
+M041736
+041737
+M041737
+041738
+M041738
+041739
+M041739
+041740
+M041740
+041741
+M041741
+041742
+M041742
+041743
+M041743
+041744
+M041744
+041745
+M041745
+041746
+M041746
+041747
+M041747
+041748
+M041748
+041749
+M041749
+041750
+M041750
+041751
+M041751
+041752
+M041752
+041753
+M041753
+041754
+M041754
+041755
+M041755
+041756
+M041756
+041757
+M041757
+041758
+M041758
+041759
+M041759
+041760
+M041760
+041761
+M041761
+041762
+M041762
+041763
+M041763
+041764
+M041764
+041765
+M041765
+041766
+M041766
+041767
+M041767
+041768
+M041768
+041769
+M041769
+041770
+M041770
+041771
+M041771
+041772
+M041772
+041773
+M041773
+041774
+M041774
+041775
+M041775
+041776
+M041776
+041777
+M041777
+041778
+M041778
+041779
+M041779
+041780
+M041780
+041781
+M041781
+041782
+M041782
+041783
+M041783
+041784
+M041784
+041785
+M041785
+041793
+M041793
+041794
+M041794
+041795
+M041795
+041796
+M041796
+041797
+M041797
+041798
+M041798
+041799
+M041799
+041800
+M041800
+041801
+M041801
+041802
+M041802
+041803
+M041803
+041804
+M041804
+041805
+M041805
+041806
+M041806
+041807
+M041807
+041808
+M041808
+041809
+M041809
+041810
+M041810
+041811
+M041811
+041812
+M041812
+041813
+M041813
+041814
+M041814
+041815
+M041815
+041816
+M041816
+041817
+M041817
+041818
+M041818
+041819
+M041819
+041820
+M041820
+041821
+M041821
+041822
+M041822
+041823
+M041823
+041824
+M041824
+041825
+M041825
+041826
+M041826
+041827
+M041827
+041828
+M041828
+041829
+M041829
+041830
+M041830
+041831
+M041831
+041832
+M041832
+041833
+M041833
+041834
+M041834
+041835
+M041835
+041836
+M041836
+041837
+M041837
+041838
+M041838
+041839
+M041839
+041840
+M041840
+041841
+M041841
+041842
+M041842
+041843
+M041843
+041844
+M041844
+041845
+M041845
+041846
+M041846
+041847
+M041847
+041848
+M041848
+041849
+M041849
+041850
+M041850
+041851
+M041851
+041852
+M041852
+041853
+M041853
+041854
+M041854
+041855
+M041855
+041856
+M041856
+041857
+M041857
+041858
+M041858
+041859
+M041859
+041860
+M041860
+041861
+M041861
+041862
+M041862
+041863
+M041863
+041864
+M041864
+041865
+M041865
+041866
+M041866
+041867
+M041867
+041868
+M041868
+041893
+M041893
+041894
+M041894
+041895
+M041895
+041896
+M041896
+041921
+M041921
+041922
+M041922
+041923
+M041923
+041924
+M041924
+041925
+M041925
+041926
+M041926
+041927
+M041927
+041928
+M041928
+041929
+M041929
+041930
+M041930
+041931
+M041931
+041932
+M041932
+041933
+M041933
+041934
+M041934
+041935
+M041935
+041936
+M041936
+041937
+M041937
+041938
+M041938
+041939
+M041939
+041940
+M041940
+041941
+M041941
+041949
+M041949
+041950
+M041950
+041951
+M041951
+041952
+M041952
+041953
+M041953
+041954
+M041954
+041955
+M041955
+041956
+M041956
+041957
+M041957
+041958
+M041958
+041959
+M041959
+041960
+M041960
+041961
+M041961
+041962
+M041962
+041971
+M041971
+041972
+M041972
+041973
+M041973
+041974
+M041974
+041975
+M041975
+041976
+M041976
+041977
+M041977
+041978
+M041978
+041979
+M041979
+041980
+M041980
+041981
+M041981
+041982
+M041982
+041983
+M041983
+041984
+M041984
+041985
+M041985
+041986
+M041986
+041987
+M041987
+041988
+M041988
+041989
+M041989
+041990
+M041990
+041991
+M041991
+041992
+M041992
+041993
+M041993
+041994
+M041994
+041995
+M041995
+041996
+M041996
+041997
+M041997
+041998
+M041998
+041999
+M041999
+042000
+M042000
+042001
+M042001
+042002
+M042002
+042003
+M042003
+042010
+M042010
+042011
+M042011
+042012
+M042012
+042013
+M042013
+042014
+M042014
+042015
+M042015
+042016
+M042016
+042017
+M042017
+042018
+M042018
+042019
+M042019
+042020
+M042020
+042021
+M042021
+042022
+M042022
+042023
+M042023
+042024
+M042024
+042025
+M042025
+042026
+M042026
+042027
+M042027
+042028
+M042028
+042029
+M042029
+042030
+M042030
+042031
+M042031
+042032
+M042032
+042033
+M042033
+042034
+M042034
+042035
+M042035
+042036
+M042036
+042037
+M042037
+042038
+M042038
+042039
+M042039
+042040
+M042040
+042043
+M042043
+042044
+M042044
+042045
+M042045
+042046
+M042046
+042047
+M042047
+042048
+M042048
+042049
+M042049
+042050
+M042050
+042051
+M042051
+042052
+M042052
+042053
+M042053
+042054
+M042054
+042055
+M042055
+042056
+M042056
+042057
+M042057
+042058
+M042058
+042059
+M042059
+042060
+M042060
+042061
+M042061
+042062
+M042062
+042063
+M042063
+042064
+M042064
+042065
+M042065
+042066
+M042066
+042067
+M042067
+042068
+M042068
+042069
+M042069
+042070
+M042070
+042071
+M042071
+042072
+M042072
+042073
+M042073
+042074
+M042074
+042075
+M042075
+042076
+M042076
+042077
+M042077
+042078
+M042078
+042079
+M042079
+042080
+M042080
+042081
+M042081
+042082
+M042082
+042083
+M042083
+042084
+M042084
+042085
+M042085
+042086
+M042086
+042087
+M042087
+042088
+M042088
+042089
+M042089
+042090
+M042090
+042091
+M042091
+042092
+M042092
+042093
+M042093
+042094
+M042094
+042095
+M042095
+042096
+M042096
+042097
+M042097
+042146
+M042146
+042147
+M042147
+042148
+M042148
+042149
+M042149
+042150
+M042150
+042175
+M042175
+042176
+M042176
+042177
+M042177
+042178
+M042178
+042179
+M042179
+042180
+M042180
+042181
+M042181
+042182
+M042182
+042183
+M042183
+042184
+M042184
+042185
+M042185
+042186
+M042186
+042187
+M042187
+042188
+M042188
+042189
+M042189
+042190
+M042190
+042191
+M042191
+042192
+M042192
+042193
+M042193
+042194
+M042194
+042195
+M042195
+042196
+M042196
+042197
+M042197
+042198
+M042198
+042199
+M042199
+042200
+M042200
+042201
+M042201
+042202
+M042202
+042203
+M042203
+042204
+M042204
+042205
+M042205
+042206
+M042206
+042207
+M042207
+042208
+M042208
+042209
+M042209
+042210
+M042210
+042211
+M042211
+042212
+M042212
+042213
+M042213
+042214
+M042214
+042215
+M042215
+042216
+M042216
+042217
+M042217
+042218
+M042218
+042219
+M042219
+042220
+M042220
+042221
+M042221
+042222
+M042222
+042223
+M042223
+042224
+M042224
+042225
+M042225
+042226
+M042226
+042227
+M042227
+042228
+M042228
+042229
+M042229
+042230
+M042230
+042231
+M042231
+042232
+M042232
+042233
+M042233
+042234
+M042234
+042235
+M042235
+042236
+M042236
+042237
+M042237
+042238
+M042238
+042239
+M042239
+042240
+M042240
+042241
+M042241
+042242
+M042242
+042243
+M042243
+042244
+M042244
+042245
+M042245
+042246
+M042246
+042247
+M042247
+042248
+M042248
+042249
+M042249
+042250
+M042250
+042251
+M042251
+042252
+M042252
+042253
+M042253
+042254
+M042254
+042255
+M042255
+042256
+M042256
+042257
+M042257
+042258
+M042258
+042259
+M042259
+042260
+M042260
+042261
+M042261
+042262
+M042262
+042263
+M042263
+042264
+M042264
+042265
+M042265
+042266
+M042266
+042267
+M042267
+042268
+M042268
+042269
+M042269
+042270
+M042270
+042271
+M042271
+042272
+M042272
+042273
+M042273
+042274
+M042274
+042275
+M042275
+042276
+M042276
+042277
+M042277
+042278
+M042278
+042279
+M042279
+042280
+M042280
+042281
+M042281
+042282
+M042282
+042283
+M042283
+042284
+M042284
+042285
+M042285
+042286
+M042286
+042287
+M042287
+042288
+M042288
+042289
+M042289
+042290
+M042290
+042299
+M042299
+042300
+M042300
+042301
+M042301
+042302
+M042302
+042303
+M042303
+042304
+M042304
+042305
+M042305
+042306
+M042306
+042307
+M042307
+042308
+M042308
+042309
+M042309
+042310
+M042310
+042311
+M042311
+042312
+M042312
+042313
+M042313
+042314
+M042314
+042315
+M042315
+042316
+M042316
+042317
+M042317
+042318
+M042318
+042319
+M042319
+042320
+M042320
+042321
+M042321
+042322
+M042322
+042323
+M042323
+042324
+M042324
+042325
+M042325
+042326
+M042326
+042327
+M042327
+042328
+M042328
+042329
+M042329
+042330
+M042330
+042331
+M042331
+042332
+M042332
+042333
+M042333
+042334
+M042334
+042335
+M042335
+042336
+M042336
+042337
+M042337
+042338
+M042338
+042339
+M042339
+042340
+M042340
+042341
+M042341
+042342
+M042342
+042343
+M042343
+042344
+M042344
+042345
+M042345
+042346
+M042346
+042347
+M042347
+042348
+M042348
+042349
+M042349
+042350
+M042350
+042351
+M042351
+042352
+M042352
+042353
+M042353
+042354
+M042354
+042355
+M042355
+042356
+M042356
+042357
+M042357
+042358
+M042358
+042359
+M042359
+042360
+M042360
+042361
+M042361
+042362
+M042362
+042363
+M042363
+042364
+M042364
+042365
+M042365
+042366
+M042366
+042367
+M042367
+042368
+M042368
+042369
+M042369
+042370
+M042370
+042371
+M042371
+042381
+M042381
+042382
+M042382
+042383
+M042383
+042384
+M042384
+042385
+M042385
+042386
+M042386
+042387
+M042387
+042388
+M042388
+042389
+M042389
+042390
+M042390
+042391
+M042391
+042398
+M042398
+042399
+M042399
+042400
+M042400
+042401
+M042401
+042402
+M042402
+042403
+M042403
+042404
+M042404
+042405
+M042405
+042406
+M042406
+042407
+M042407
+042408
+M042408
+042409
+M042409
+042410
+M042410
+042411
+M042411
+042412
+M042412
+042413
+M042413
+042414
+M042414
+042415
+M042415
+042416
+M042416
+042417
+M042417
+042418
+M042418
+042419
+M042419
+042420
+M042420
+042421
+M042421
+042422
+M042422
+042423
+M042423
+042424
+M042424
+042425
+M042425
+042426
+M042426
+042427
+M042427
+042428
+M042428
+042429
+M042429
+042430
+M042430
+042431
+M042431
+042432
+M042432
+042433
+M042433
+042434
+M042434
+042435
+M042435
+042436
+M042436
+042437
+M042437
+042438
+M042438
+042439
+M042439
+042440
+M042440
+042441
+M042441
+042442
+M042442
+042443
+M042443
+042444
+M042444
+042445
+M042445
+042446
+M042446
+042447
+M042447
+042448
+M042448
+042449
+M042449
+042450
+M042450
+042451
+M042451
+042452
+M042452
+042453
+M042453
+042454
+M042454
+042455
+M042455
+042456
+M042456
+042457
+M042457
+042458
+M042458
+042459
+M042459
+042460
+M042460
+042461
+M042461
+042462
+M042462
+042463
+M042463
+042464
+M042464
+042465
+M042465
+042466
+M042466
+042467
+M042467
+042468
+M042468
+042469
+M042469
+042470
+M042470
+042471
+M042471
+042472
+M042472
+042473
+M042473
+042474
+M042474
+042475
+M042475
+042476
+M042476
+042477
+M042477
+042478
+M042478
+042479
+M042479
+042480
+M042480
+042481
+M042481
+042482
+M042482
+042483
+M042483
+042484
+M042484
+042485
+M042485
+042486
+M042486
+042487
+M042487
+042488
+M042488
+042489
+M042489
+042490
+M042490
+042491
+M042491
+042492
+M042492
+042493
+M042493
+042494
+M042494
+042495
+M042495
+042496
+M042496
+042512
+M042512
+042513
+M042513
+042514
+M042514
+042515
+M042515
+042516
+M042516
+042517
+M042517
+042518
+M042518
+042519
+M042519
+042520
+M042520
+042521
+M042521
+042522
+M042522
+042523
+M042523
+042524
+M042524
+042525
+M042525
+042541
+M042541
+042542
+M042542
+042543
+M042543
+042544
+M042544
+042545
+M042545
+042546
+M042546
+042547
+M042547
+042561
+M042561
+042562
+M042562
+042563
+M042563
+042564
+M042564
+042565
+M042565
+042566
+M042566
+042567
+M042567
+042568
+M042568
+042569
+M042569
+042570
+M042570
+042571
+M042571
+042572
+M042572
+042573
+M042573
+042574
+M042574
+042575
+M042575
+042576
+M042576
+042577
+M042577
+042578
+M042578
+042579
+M042579
+042580
+M042580
+042581
+M042581
+042582
+M042582
+042583
+M042583
+042584
+M042584
+042585
+M042585
+042586
+M042586
+042587
+M042587
+042588
+M042588
+042589
+M042589
+042590
+M042590
+042591
+M042591
+042592
+M042592
+042593
+M042593
+042594
+M042594
+042595
+M042595
+042596
+M042596
+042597
+M042597
+042598
+M042598
+042599
+M042599
+042600
+M042600
+042601
+M042601
+042602
+M042602
+042603
+M042603
+042604
+M042604
+042605
+M042605
+042606
+M042606
+042607
+M042607
+042608
+M042608
+042609
+M042609
+042610
+M042610
+042611
+M042611
+042612
+M042612
+042613
+M042613
+042614
+M042614
+042615
+M042615
+042620
+M042620
+042621
+M042621
+042622
+M042622
+042623
+M042623
+042624
+M042624
+042625
+M042625
+042626
+M042626
+042627
+M042627
+042628
+M042628
+042629
+M042629
+042630
+M042630
+042631
+M042631
+042632
+M042632
+042633
+M042633
+042634
+M042634
+042635
+M042635
+042636
+M042636
+042637
+M042637
+042638
+M042638
+042639
+M042639
+042640
+M042640
+042641
+M042641
+042642
+M042642
+042643
+M042643
+042644
+M042644
+042645
+M042645
+042646
+M042646
+042647
+M042647
+042648
+M042648
+042649
+M042649
+042650
+M042650
+042651
+M042651
+042652
+M042652
+042653
+M042653
+042654
+M042654
+042655
+M042655
+042656
+M042656
+042657
+M042657
+042658
+M042658
+042659
+M042659
+042660
+M042660
+042661
+M042661
+042662
+M042662
+042663
+M042663
+042664
+M042664
+042665
+M042665
+042666
+M042666
+042667
+M042667
+042668
+M042668
+042669
+M042669
+042670
+M042670
+042671
+M042671
+042672
+M042672
+042673
+M042673
+042674
+M042674
+042675
+M042675
+042676
+M042676
+042677
+M042677
+042678
+M042678
+042679
+M042679
+042680
+M042680
+042681
+M042681
+042682
+M042682
+042683
+M042683
+042684
+M042684
+042686
+M042686
+042687
+M042687
+042688
+M042688
+042689
+M042689
+042690
+M042690
+042691
+M042691
+042692
+M042692
+042693
+M042693
+042694
+M042694
+042695
+M042695
+042696
+M042696
+042697
+M042697
+042698
+M042698
+042699
+M042699
+042700
+M042700
+042701
+M042701
+042702
+M042702
+042703
+M042703
+042704
+M042704
+042705
+M042705
+042706
+M042706
+042707
+M042707
+042708
+M042708
+042709
+M042709
+042710
+M042710
+042711
+M042711
+042712
+M042712
+042713
+M042713
+042714
+M042714
+042715
+M042715
+042716
+M042716
+042717
+M042717
+042718
+M042718
+042719
+M042719
+042720
+M042720
+042721
+M042721
+042722
+M042722
+042723
+M042723
+042724
+M042724
+042725
+M042725
+042726
+M042726
+042727
+M042727
+042728
+M042728
+042729
+M042729
+042730
+M042730
+042731
+M042731
+042732
+M042732
+042733
+M042733
+042734
+M042734
+042735
+M042735
+042736
+M042736
+042737
+M042737
+042738
+M042738
+042739
+M042739
+042740
+M042740
+042741
+M042741
+042742
+M042742
+042743
+M042743
+042744
+M042744
+042745
+M042745
+042746
+M042746
+042747
+M042747
+042783
+M042783
+042784
+M042784
+042785
+M042785
+042786
+M042786
+042787
+M042787
+042788
+M042788
+042789
+M042789
+042790
+M042790
+042791
+M042791
+042792
+M042792
+042793
+M042793
+042794
+M042794
+042798
+M042798
+042799
+M042799
+042800
+M042800
+042801
+M042801
+042802
+M042802
+042803
+M042803
+042804
+M042804
+042805
+M042805
+042806
+M042806
+042807
+M042807
+042808
+M042808
+042809
+M042809
+042810
+M042810
+042811
+M042811
+042812
+M042812
+042813
+M042813
+042814
+M042814
+042815
+M042815
+042837
+M042837
+042838
+M042838
+042839
+M042839
+042840
+M042840
+042841
+M042841
+042851
+M042851
+042852
+M042852
+042853
+M042853
+042854
+M042854
+042855
+M042855
+042856
+M042856
+042857
+M042857
+042858
+M042858
+042859
+M042859
+042860
+M042860
+042861
+M042861
+042862
+M042862
+042875
+M042875
+042876
+M042876
+042877
+M042877
+042878
+M042878
+042879
+M042879
+042880
+M042880
+042881
+M042881
+042882
+M042882
+042883
+M042883
+042884
+M042884
+042885
+M042885
+042886
+M042886
+042887
+M042887
+042888
+M042888
+042889
+M042889
+042890
+M042890
+042891
+M042891
+042892
+M042892
+042893
+M042893
+042894
+M042894
+042895
+M042895
+042896
+M042896
+042897
+M042897
+042898
+M042898
+042899
+M042899
+042900
+M042900
+042901
+M042901
+042902
+M042902
+042903
+M042903
+042904
+M042904
+042905
+M042905
+042906
+M042906
+042907
+M042907
+042908
+M042908
+042909
+M042909
+042910
+M042910
+042911
+M042911
+042912
+M042912
+042913
+M042913
+042914
+M042914
+042915
+M042915
+042916
+M042916
+042917
+M042917
+042918
+M042918
+042919
+M042919
+042920
+M042920
+042921
+M042921
+042922
+M042922
+042923
+M042923
+042924
+M042924
+042925
+M042925
+042926
+M042926
+042927
+M042927
+042928
+M042928
+042929
+M042929
+042930
+M042930
+042931
+M042931
+042932
+M042932
+042933
+M042933
+042934
+M042934
+042935
+M042935
+042936
+M042936
+042937
+M042937
+042938
+M042938
+042939
+M042939
+042940
+M042940
+042941
+M042941
+042942
+M042942
+042943
+M042943
+042944
+M042944
+042945
+M042945
+042946
+M042946
+042947
+M042947
+042948
+M042948
+042949
+M042949
+042950
+M042950
+042951
+M042951
+042952
+M042952
+042953
+M042953
+042954
+M042954
+042955
+M042955
+042956
+M042956
+042957
+M042957
+042958
+M042958
+042959
+M042959
+042960
+M042960
+042961
+M042961
+042962
+M042962
+042963
+M042963
+042964
+M042964
+042965
+M042965
+042966
+M042966
+042967
+M042967
+042968
+M042968
+042969
+M042969
+042970
+M042970
+042971
+M042971
+042972
+M042972
+042973
+M042973
+042974
+M042974
+042975
+M042975
+042976
+M042976
+042977
+M042977
+042988
+M042988
+042989
+M042989
+042990
+M042990
+042991
+M042991
+042992
+M042992
+042993
+M042993
+042994
+M042994
+042995
+M042995
+042996
+M042996
+042997
+M042997
+042998
+M042998
+042999
+M042999
+043000
+M043000
+043001
+M043001
+043002
+M043002
+043003
+M043003
+043004
+M043004
+043005
+M043005
+043006
+M043006
+043007
+M043007
+043008
+M043008
+043009
+M043009
+043010
+M043010
+043011
+M043011
+043012
+M043012
+043013
+M043013
+043014
+M043014
+043015
+M043015
+043016
+M043016
+043017
+M043017
+043018
+M043018
+043019
+M043019
+043020
+M043020
+043021
+M043021
+043022
+M043022
+043023
+M043023
+043024
+M043024
+043025
+M043025
+043026
+M043026
+043027
+M043027
+043028
+M043028
+043034
+M043034
+043035
+M043035
+043036
+M043036
+043037
+M043037
+043038
+M043038
+043039
+M043039
+043040
+M043040
+043041
+M043041
+043042
+M043042
+043043
+M043043
+043044
+M043044
+043045
+M043045
+043046
+M043046
+043047
+M043047
+043048
+M043048
+043049
+M043049
+043050
+M043050
+043051
+M043051
+043052
+M043052
+043053
+M043053
+043054
+M043054
+043055
+M043055
+043056
+M043056
+043057
+M043057
+043058
+M043058
+043059
+M043059
+043060
+M043060
+043061
+M043061
+043062
+M043062
+043063
+M043063
+043064
+M043064
+043065
+M043065
+043066
+M043066
+043067
+M043067
+043068
+M043068
+043069
+M043069
+043070
+M043070
+043071
+M043071
+043072
+M043072
+043073
+M043073
+043074
+M043074
+043075
+M043075
+043076
+M043076
+043077
+M043077
+043078
+M043078
+043079
+M043079
+043080
+M043080
+043081
+M043081
+043082
+M043082
+043083
+M043083
+043084
+M043084
+043085
+M043085
+043086
+M043086
+043090
+M043090
+043091
+M043091
+043092
+M043092
+043093
+M043093
+043094
+M043094
+043095
+M043095
+043096
+M043096
+043097
+M043097
+043098
+M043098
+043099
+M043099
+043100
+M043100
+043101
+M043101
+043102
+M043102
+043103
+M043103
+043104
+M043104
+043105
+M043105
+043106
+M043106
+043107
+M043107
+043108
+M043108
+043109
+M043109
+043110
+M043110
+043111
+M043111
+043112
+M043112
+043113
+M043113
+043114
+M043114
+043115
+M043115
+043116
+M043116
+043117
+M043117
+043118
+M043118
+043129
+M043129
+043130
+M043130
+043131
+M043131
+043132
+M043132
+043133
+M043133
+043134
+M043134
+043135
+M043135
+043136
+M043136
+043137
+M043137
+043138
+M043138
+043139
+M043139
+043140
+M043140
+043141
+M043141
+043142
+M043142
+043143
+M043143
+043144
+M043144
+043145
+M043145
+043146
+M043146
+043147
+M043147
+043148
+M043148
+043149
+M043149
+043150
+M043150
+043151
+M043151
+043152
+M043152
+043153
+M043153
+043154
+M043154
+043155
+M043155
+043156
+M043156
+043157
+M043157
+043158
+M043158
+043159
+M043159
+043160
+M043160
+043161
+M043161
+043162
+M043162
+043163
+M043163
+043164
+M043164
+043165
+M043165
+043166
+M043166
+043167
+M043167
+043168
+M043168
+043169
+M043169
+043170
+M043170
+043171
+M043171
+043172
+M043172
+043173
+M043173
+043174
+M043174
+043175
+M043175
+043176
+M043176
+043177
+M043177
+043178
+M043178
+043179
+M043179
+043180
+M043180
+043181
+M043181
+043182
+M043182
+043183
+M043183
+043184
+M043184
+043185
+M043185
+043186
+M043186
+043187
+M043187
+043188
+M043188
+043189
+M043189
+043190
+M043190
+043191
+M043191
+043192
+M043192
+043193
+M043193
+043194
+M043194
+043195
+M043195
+043196
+M043196
+043197
+M043197
+043198
+M043198
+043199
+M043199
+043200
+M043200
+043201
+M043201
+043202
+M043202
+043203
+M043203
+043204
+M043204
+043205
+M043205
+043206
+M043206
+043207
+M043207
+043208
+M043208
+043209
+M043209
+043210
+M043210
+043211
+M043211
+043212
+M043212
+043213
+M043213
+043228
+M043228
+043229
+M043229
+043230
+M043230
+043231
+M043231
+043232
+M043232
+043233
+M043233
+043234
+M043234
+043235
+M043235
+043236
+M043236
+043237
+M043237
+043238
+M043238
+043239
+M043239
+043240
+M043240
+043241
+M043241
+043242
+M043242
+043243
+M043243
+043245
+M043245
+043246
+M043246
+043247
+M043247
+043248
+M043248
+043249
+M043249
+043250
+M043250
+043251
+M043251
+043252
+M043252
+043253
+M043253
+043254
+M043254
+043255
+M043255
+043256
+M043256
+043257
+M043257
+043258
+M043258
+043259
+M043259
+043260
+M043260
+043261
+M043261
+043262
+M043262
+043263
+M043263
+043264
+M043264
+043265
+M043265
+043266
+M043266
+043267
+M043267
+043268
+M043268
+043269
+M043269
+043270
+M043270
+043271
+M043271
+043272
+M043272
+043273
+M043273
+043274
+M043274
+043275
+M043275
+043276
+M043276
+043277
+M043277
+043278
+M043278
+043279
+M043279
+043280
+M043280
+043281
+M043281
+043282
+M043282
+043283
+M043283
+043284
+M043284
+043285
+M043285
+043286
+M043286
+043287
+M043287
+043288
+M043288
+043289
+M043289
+043290
+M043290
+043291
+M043291
+043292
+M043292
+043293
+M043293
+043294
+M043294
+043295
+M043295
+043296
+M043296
+043297
+M043297
+043298
+M043298
+043299
+M043299
+043300
+M043300
+043301
+M043301
+043302
+M043302
+043303
+M043303
+043304
+M043304
+043305
+M043305
+043306
+M043306
+043307
+M043307
+043308
+M043308
+043309
+M043309
+043310
+M043310
+043311
+M043311
+043312
+M043312
+043313
+M043313
+043314
+M043314
+043315
+M043315
+043316
+M043316
+043317
+M043317
+043318
+M043318
+043319
+M043319
+043320
+M043320
+043321
+M043321
+043322
+M043322
+043323
+M043323
+043324
+M043324
+043325
+M043325
+043326
+M043326
+043327
+M043327
+043333
+M043333
+043334
+M043334
+043335
+M043335
+043336
+M043336
+043337
+M043337
+043338
+M043338
+043339
+M043339
+043340
+M043340
+043348
+M043348
+043349
+M043349
+043350
+M043350
+043351
+M043351
+043352
+M043352
+043353
+M043353
+043354
+M043354
+043355
+M043355
+043356
+M043356
+043357
+M043357
+043358
+M043358
+043359
+M043359
+043360
+M043360
+043361
+M043361
+043362
+M043362
+043363
+M043363
+043364
+M043364
+043365
+M043365
+043366
+M043366
+043367
+M043367
+043368
+M043368
+043369
+M043369
+043370
+M043370
+043371
+M043371
+043372
+M043372
+043373
+M043373
+043374
+M043374
+043375
+M043375
+043376
+M043376
+043377
+M043377
+043378
+M043378
+043379
+M043379
+043380
+M043380
+043381
+M043381
+043382
+M043382
+043383
+M043383
+043384
+M043384
+043385
+M043385
+043386
+M043386
+043387
+M043387
+043388
+M043388
+043389
+M043389
+043390
+M043390
+043391
+M043391
+043392
+M043392
+043393
+M043393
+043394
+M043394
+043395
+M043395
+043396
+M043396
+043397
+M043397
+043398
+M043398
+043399
+M043399
+043400
+M043400
+043401
+M043401
+043402
+M043402
+043403
+M043403
+043404
+M043404
+043405
+M043405
+043406
+M043406
+043407
+M043407
+043408
+M043408
+043409
+M043409
+043410
+M043410
+043411
+M043411
+043412
+M043412
+043413
+M043413
+043414
+M043414
+043415
+M043415
+043416
+M043416
+043417
+M043417
+043418
+M043418
+043419
+M043419
+043420
+M043420
+043421
+M043421
+043422
+M043422
+043423
+M043423
+043424
+M043424
+043425
+M043425
+043426
+M043426
+043427
+M043427
+043428
+M043428
+043429
+M043429
+043430
+M043430
+043431
+M043431
+043432
+M043432
+043433
+M043433
+043434
+M043434
+043435
+M043435
+043436
+M043436
+043450
+M043450
+043451
+M043451
+043452
+M043452
+043453
+M043453
+043454
+M043454
+043455
+M043455
+043456
+M043456
+043457
+M043457
+043497
+M043497
+043498
+M043498
+043499
+M043499
+043500
+M043500
+043501
+M043501
+043502
+M043502
+043503
+M043503
+043504
+M043504
+043505
+M043505
+043506
+M043506
+043507
+M043507
+043508
+M043508
+043509
+M043509
+043510
+M043510
+043511
+M043511
+043512
+M043512
+043513
+M043513
+043514
+M043514
+043515
+M043515
+043516
+M043516
+043517
+M043517
+043518
+M043518
+043519
+M043519
+043520
+M043520
+043521
+M043521
+043522
+M043522
+043523
+M043523
+043524
+M043524
+043525
+M043525
+043526
+M043526
+043527
+M043527
+043528
+M043528
+043529
+M043529
+043530
+M043530
+043531
+M043531
+043532
+M043532
+043533
+M043533
+043534
+M043534
+043535
+M043535
+043536
+M043536
+043544
+M043544
+043545
+M043545
+043584
+M043584
+043585
+M043585
+043586
+M043586
+043587
+M043587
+043588
+M043588
+043589
+M043589
+043590
+M043590
+043591
+M043591
+043592
+M043592
+043593
+M043593
+043594
+M043594
+043595
+M043595
+043596
+M043596
+043597
+M043597
+043598
+M043598
+043599
+M043599
+043600
+M043600
+043601
+M043601
+043602
+M043602
+043603
+M043603
+043604
+M043604
+043605
+M043605
+043606
+M043606
+043607
+M043607
+043608
+M043608
+043609
+M043609
+043610
+M043610
+043611
+M043611
+043613
+M043613
+043614
+M043614
+043615
+M043615
+043616
+M043616
+043617
+M043617
+043618
+M043618
+043619
+M043619
+043620
+M043620
+043621
+M043621
+043622
+M043622
+043623
+M043623
+043628
+M043628
+043629
+M043629
+043630
+M043630
+043631
+M043631
+043632
+M043632
+043633
+M043633
+043634
+M043634
+043635
+M043635
+043636
+M043636
+043637
+M043637
+043638
+M043638
+043639
+M043639
+043640
+M043640
+043641
+M043641
+043642
+M043642
+043643
+M043643
+043644
+M043644
+043645
+M043645
+043646
+M043646
+043647
+M043647
+043688
+M043688
+043689
+M043689
+043690
+M043690
+043691
+M043691
+043692
+M043692
+043693
+M043693
+043694
+M043694
+043695
+M043695
+043696
+M043696
+043697
+M043697
+043698
+M043698
+043699
+M043699
+043700
+M043700
+043701
+M043701
+043702
+M043702
+043703
+M043703
+043704
+M043704
+043705
+M043705
+043706
+M043706
+043707
+M043707
+043708
+M043708
+043713
+M043713
+043714
+M043714
+043715
+M043715
+043716
+M043716
+043717
+M043717
+043730
+M043730
+043731
+M043731
+043732
+M043732
+043733
+M043733
+043734
+M043734
+043735
+M043735
+043736
+M043736
+043737
+M043737
+043738
+M043738
+043739
+M043739
+043740
+M043740
+043741
+M043741
+043742
+M043742
+043743
+M043743
+043744
+M043744
+043745
+M043745
+043746
+M043746
+043747
+M043747
+043760
+M043760
+043761
+M043761
+043762
+M043762
+043763
+M043763
+043764
+M043764
+043765
+M043765
+043766
+M043766
+043767
+M043767
+043768
+M043768
+043774
+M043774
+043775
+M043775
+043776
+M043776
+043791
+M043791
+043792
+M043792
+043793
+M043793
+043794
+M043794
+043795
+M043795
+043796
+M043796
+043797
+M043797
+043798
+M043798
+043799
+M043799
+043800
+M043800
+043801
+M043801
+043802
+M043802
+043803
+M043803
+043804
+M043804
+043805
+M043805
+043806
+M043806
+043807
+M043807
+043808
+M043808
+043809
+M043809
+043810
+M043810
+043811
+M043811
+043812
+M043812
+043813
+M043813
+043814
+M043814
+043815
+M043815
+043816
+M043816
+043817
+M043817
+043818
+M043818
+043819
+M043819
+043820
+M043820
+043821
+M043821
+043822
+M043822
+043823
+M043823
+043824
+M043824
+043825
+M043825
+043826
+M043826
+043827
+M043827
+043828
+M043828
+043829
+M043829
+043830
+M043830
+043831
+M043831
+043832
+M043832
+043833
+M043833
+043834
+M043834
+043835
+M043835
+043836
+M043836
+043837
+M043837
+043838
+M043838
+043839
+M043839
+043840
+M043840
+043841
+M043841
+043842
+M043842
+043843
+M043843
+043844
+M043844
+043845
+M043845
+043846
+M043846
+043847
+M043847
+043848
+M043848
+043849
+M043849
+043850
+M043850
+043851
+M043851
+043852
+M043852
+043853
+M043853
+043854
+M043854
+043855
+M043855
+043856
+M043856
+043857
+M043857
+043858
+M043858
+043859
+M043859
+043860
+M043860
+043861
+M043861
+043862
+M043862
+043863
+M043863
+043864
+M043864
+043865
+M043865
+043866
+M043866
+043867
+M043867
+043868
+M043868
+043869
+M043869
+043870
+M043870
+043871
+M043871
+043872
+M043872
+043873
+M043873
+043874
+M043874
+043875
+M043875
+043876
+M043876
+043877
+M043877
+043878
+M043878
+043879
+M043879
+043880
+M043880
+043881
+M043881
+043882
+M043882
+043883
+M043883
+043884
+M043884
+043885
+M043885
+043886
+M043886
+043887
+M043887
+043888
+M043888
+043889
+M043889
+043890
+M043890
+043891
+M043891
+043892
+M043892
+043893
+M043893
+043894
+M043894
+043895
+M043895
+043896
+M043896
+043897
+M043897
+043898
+M043898
+043899
+M043899
+043900
+M043900
+043901
+M043901
+043902
+M043902
+043903
+M043903
+043904
+M043904
+043905
+M043905
+043906
+M043906
+043907
+M043907
+043908
+M043908
+043909
+M043909
+043910
+M043910
+043911
+M043911
+043912
+M043912
+043913
+M043913
+043914
+M043914
+043915
+M043915
+043916
+M043916
+043917
+M043917
+043918
+M043918
+043919
+M043919
+043920
+M043920
+043921
+M043921
+043922
+M043922
+043923
+M043923
+043924
+M043924
+043925
+M043925
+043926
+M043926
+043927
+M043927
+043928
+M043928
+043929
+M043929
+043930
+M043930
+043931
+M043931
+043932
+M043932
+043933
+M043933
+043934
+M043934
+043935
+M043935
+043936
+M043936
+043937
+M043937
+043938
+M043938
+043939
+M043939
+043940
+M043940
+043941
+M043941
+043942
+M043942
+043943
+M043943
+043944
+M043944
+043945
+M043945
+043946
+M043946
+043947
+M043947
+043948
+M043948
+043949
+M043949
+043950
+M043950
+043951
+M043951
+043952
+M043952
+043953
+M043953
+043954
+M043954
+043955
+M043955
+043956
+M043956
+043957
+M043957
+043958
+M043958
+043959
+M043959
+043960
+M043960
+043961
+M043961
+043962
+M043962
+043963
+M043963
+043964
+M043964
+043965
+M043965
+043966
+M043966
+043967
+M043967
+043968
+M043968
+043969
+M043969
+043970
+M043970
+043971
+M043971
+043972
+M043972
+043973
+M043973
+043974
+M043974
+043975
+M043975
+043976
+M043976
+043977
+M043977
+043978
+M043978
+043979
+M043979
+043980
+M043980
+043981
+M043981
+043982
+M043982
+043983
+M043983
+043984
+M043984
+043985
+M043985
+043986
+M043986
+043987
+M043987
+043988
+M043988
+043989
+M043989
+043990
+M043990
+043991
+M043991
+043992
+M043992
+043993
+M043993
+043994
+M043994
+043995
+M043995
+043996
+M043996
+043997
+M043997
+043998
+M043998
+043999
+M043999
+044000
+M044000
+044001
+M044001
+044002
+M044002
+044003
+M044003
+044004
+M044004
+044005
+M044005
+044006
+M044006
+044007
+M044007
+044008
+M044008
+044009
+M044009
+044010
+M044010
+044011
+M044011
+044012
+M044012
+044013
+M044013
+044014
+M044014
+044015
+M044015
+044021
+M044021
+044022
+M044022
+044023
+M044023
+044024
+M044024
+044025
+M044025
+044026
+M044026
+044027
+M044027
+044028
+M044028
+044029
+M044029
+044030
+M044030
+044031
+M044031
+044032
+M044032
+044033
+M044033
+044034
+M044034
+044035
+M044035
+044036
+M044036
+044037
+M044037
+044038
+M044038
+044040
+M044040
+044041
+M044041
+044042
+M044042
+044043
+M044043
+044044
+M044044
+044045
+M044045
+044073
+M044073
+044074
+M044074
+044075
+M044075
+044076
+M044076
+044077
+M044077
+044078
+M044078
+044079
+M044079
+044080
+M044080
+044081
+M044081
+044082
+M044082
+044083
+M044083
+044084
+M044084
+044085
+M044085
+044086
+M044086
+044087
+M044087
+044088
+M044088
+044089
+M044089
+044090
+M044090
+044091
+M044091
+044092
+M044092
+044093
+M044093
+044094
+M044094
+044095
+M044095
+044096
+M044096
+044097
+M044097
+044098
+M044098
+044099
+M044099
+044100
+M044100
+044101
+M044101
+044102
+M044102
+044103
+M044103
+044104
+M044104
+044105
+M044105
+044106
+M044106
+044107
+M044107
+044108
+M044108
+044109
+M044109
+044110
+M044110
+044111
+M044111
+044112
+M044112
+044113
+M044113
+044114
+M044114
+044115
+M044115
+044116
+M044116
+044117
+M044117
+044118
+M044118
+044119
+M044119
+044120
+M044120
+044121
+M044121
+044122
+M044122
+044123
+M044123
+044124
+M044124
+044125
+M044125
+044126
+M044126
+044127
+M044127
+044128
+M044128
+044129
+M044129
+044130
+M044130
+044131
+M044131
+044132
+M044132
+044133
+M044133
+044134
+M044134
+044135
+M044135
+044136
+M044136
+044137
+M044137
+044138
+M044138
+044139
+M044139
+044140
+M044140
+044170
+M044170
+044171
+M044171
+044172
+M044172
+044173
+M044173
+044174
+M044174
+044175
+M044175
+044176
+M044176
+044177
+M044177
+044178
+M044178
+044179
+M044179
+044180
+M044180
+044181
+M044181
+044182
+M044182
+044183
+M044183
+044184
+M044184
+044185
+M044185
+044186
+M044186
+044187
+M044187
+044188
+M044188
+044189
+M044189
+044190
+M044190
+044191
+M044191
+044192
+M044192
+044193
+M044193
+044194
+M044194
+044195
+M044195
+044196
+M044196
+044197
+M044197
+044198
+M044198
+044199
+M044199
+044200
+M044200
+044201
+M044201
+044202
+M044202
+044203
+M044203
+044204
+M044204
+044205
+M044205
+044206
+M044206
+044207
+M044207
+044208
+M044208
+044209
+M044209
+044210
+M044210
+044211
+M044211
+044212
+M044212
+044213
+M044213
+044214
+M044214
+044215
+M044215
+044216
+M044216
+044217
+M044217
+044218
+M044218
+044219
+M044219
+044220
+M044220
+044221
+M044221
+044222
+M044222
+044223
+M044223
+044224
+M044224
+044225
+M044225
+044226
+M044226
+044227
+M044227
+044228
+M044228
+044229
+M044229
+044230
+M044230
+044231
+M044231
+044232
+M044232
+044233
+M044233
+044234
+M044234
+044235
+M044235
+044236
+M044236
+044237
+M044237
+044238
+M044238
+044239
+M044239
+044240
+M044240
+044241
+M044241
+044242
+M044242
+044243
+M044243
+044244
+M044244
+044245
+M044245
+044246
+M044246
+044247
+M044247
+044248
+M044248
+044249
+M044249
+044250
+M044250
+044251
+M044251
+044252
+M044252
+044253
+M044253
+044254
+M044254
+044255
+M044255
+044256
+M044256
+044257
+M044257
+044258
+M044258
+044259
+M044259
+044260
+M044260
+044261
+M044261
+044262
+M044262
+044263
+M044263
+044264
+M044264
+044265
+M044265
+044266
+M044266
+044267
+M044267
+044268
+M044268
+044269
+M044269
+044270
+M044270
+044271
+M044271
+044272
+M044272
+044273
+M044273
+044274
+M044274
+044275
+M044275
+044276
+M044276
+044277
+M044277
+044278
+M044278
+044279
+M044279
+044280
+M044280
+044293
+M044293
+044294
+M044294
+044295
+M044295
+044296
+M044296
+044297
+M044297
+044298
+M044298
+044299
+M044299
+044304
+M044304
+044305
+M044305
+044306
+M044306
+044307
+M044307
+044308
+M044308
+044309
+M044309
+044310
+M044310
+044311
+M044311
+044312
+M044312
+044313
+M044313
+044314
+M044314
+044315
+M044315
+044316
+M044316
+044317
+M044317
+044318
+M044318
+044319
+M044319
+044320
+M044320
+044321
+M044321
+044322
+M044322
+044323
+M044323
+044324
+M044324
+044325
+M044325
+044326
+M044326
+044327
+M044327
+044328
+M044328
+044329
+M044329
+044330
+M044330
+044338
+M044338
+044339
+M044339
+044340
+M044340
+044350
+M044350
+044351
+M044351
+044352
+M044352
+044353
+M044353
+044354
+M044354
+044355
+M044355
+044356
+M044356
+044357
+M044357
+044358
+M044358
+044359
+M044359
+044360
+M044360
+044361
+M044361
+044362
+M044362
+044363
+M044363
+044364
+M044364
+044365
+M044365
+044366
+M044366
+044367
+M044367
+044368
+M044368
+044369
+M044369
+044370
+M044370
+044371
+M044371
+044372
+M044372
+044373
+M044373
+044374
+M044374
+044375
+M044375
+044376
+M044376
+044377
+M044377
+044378
+M044378
+044379
+M044379
+044380
+M044380
+044381
+M044381
+044382
+M044382
+044383
+M044383
+044384
+M044384
+044385
+M044385
+044386
+M044386
+044387
+M044387
+044388
+M044388
+044389
+M044389
+044390
+M044390
+044391
+M044391
+044392
+M044392
+044393
+M044393
+044394
+M044394
+044395
+M044395
+044396
+M044396
+044397
+M044397
+044398
+M044398
+044399
+M044399
+044400
+M044400
+044401
+M044401
+044402
+M044402
+044403
+M044403
+044404
+M044404
+044405
+M044405
+044406
+M044406
+044407
+M044407
+044408
+M044408
+044409
+M044409
+044410
+M044410
+044411
+M044411
+044412
+M044412
+044419
+M044419
+044420
+M044420
+044421
+M044421
+044422
+M044422
+044423
+M044423
+044424
+M044424
+044425
+M044425
+044426
+M044426
+044427
+M044427
+044430
+M044430
+044431
+M044431
+044432
+M044432
+044433
+M044433
+044434
+M044434
+044435
+M044435
+044436
+M044436
+044437
+M044437
+044438
+M044438
+044439
+M044439
+044440
+M044440
+044441
+M044441
+044442
+M044442
+044443
+M044443
+044444
+M044444
+044445
+M044445
+044446
+M044446
+044447
+M044447
+044448
+M044448
+044449
+M044449
+044450
+M044450
+044451
+M044451
+044452
+M044452
+044453
+M044453
+044454
+M044454
+044455
+M044455
+044456
+M044456
+044457
+M044457
+044458
+M044458
+044459
+M044459
+044460
+M044460
+044461
+M044461
+044462
+M044462
+044463
+M044463
+044464
+M044464
+044465
+M044465
+044466
+M044466
+044467
+M044467
+044468
+M044468
+044469
+M044469
+044470
+M044470
+044471
+M044471
+044472
+M044472
+044479
+M044479
+044480
+M044480
+044481
+M044481
+044482
+M044482
+044483
+M044483
+044484
+M044484
+044485
+M044485
+044486
+M044486
+044487
+M044487
+044488
+M044488
+044489
+M044489
+044490
+M044490
+044496
+M044496
+044497
+M044497
+044498
+M044498
+044499
+M044499
+044500
+M044500
+044501
+M044501
+044502
+M044502
+044503
+M044503
+044504
+M044504
+044505
+M044505
+044506
+M044506
+044507
+M044507
+044508
+M044508
+044509
+M044509
+044510
+M044510
+044511
+M044511
+044512
+M044512
+044513
+M044513
+044514
+M044514
+044515
+M044515
+044516
+M044516
+044517
+M044517
+044518
+M044518
+044519
+M044519
+044520
+M044520
+044521
+M044521
+044522
+M044522
+044523
+M044523
+044524
+M044524
+044525
+M044525
+044526
+M044526
+044527
+M044527
+044528
+M044528
+044529
+M044529
+044530
+M044530
+044531
+M044531
+044532
+M044532
+044533
+M044533
+044534
+M044534
+044535
+M044535
+044536
+M044536
+044537
+M044537
+044538
+M044538
+044539
+M044539
+044540
+M044540
+044541
+M044541
+044542
+M044542
+044543
+M044543
+044546
+M044546
+044547
+M044547
+044548
+M044548
+044549
+M044549
+044550
+M044550
+044551
+M044551
+044552
+M044552
+044553
+M044553
+044554
+M044554
+044555
+M044555
+044556
+M044556
+044557
+M044557
+044558
+M044558
+044559
+M044559
+044560
+M044560
+044561
+M044561
+044562
+M044562
+044563
+M044563
+044564
+M044564
+044565
+M044565
+044566
+M044566
+044567
+M044567
+044568
+M044568
+044569
+M044569
+044570
+M044570
+044571
+M044571
+044572
+M044572
+044573
+M044573
+044574
+M044574
+044575
+M044575
+044576
+M044576
+044585
+M044585
+044586
+M044586
+044587
+M044587
+044588
+M044588
+044589
+M044589
+044590
+M044590
+044591
+M044591
+044592
+M044592
+044593
+M044593
+044594
+M044594
+044595
+M044595
+044596
+M044596
+044597
+M044597
+044603
+M044603
+044604
+M044604
+044605
+M044605
+044606
+M044606
+044607
+M044607
+044608
+M044608
+044609
+M044609
+044610
+M044610
+044611
+M044611
+044627
+M044627
+044628
+M044628
+044629
+M044629
+044630
+M044630
+044631
+M044631
+044632
+M044632
+044633
+M044633
+044634
+M044634
+044635
+M044635
+044636
+M044636
+044637
+M044637
+044638
+M044638
+044639
+M044639
+044640
+M044640
+044641
+M044641
+044642
+M044642
+044643
+M044643
+044644
+M044644
+044645
+M044645
+044646
+M044646
+044647
+M044647
+044648
+M044648
+044649
+M044649
+044650
+M044650
+044651
+M044651
+044652
+M044652
+044653
+M044653
+044654
+M044654
+044655
+M044655
+044656
+M044656
+044657
+M044657
+044665
+M044665
+044666
+M044666
+044667
+M044667
+044668
+M044668
+044669
+M044669
+044670
+M044670
+044671
+M044671
+044672
+M044672
+044673
+M044673
+044674
+M044674
+044675
+M044675
+044676
+M044676
+044677
+M044677
+044678
+M044678
+044679
+M044679
+044680
+M044680
+044681
+M044681
+044682
+M044682
+044683
+M044683
+044684
+M044684
+044685
+M044685
+044686
+M044686
+044687
+M044687
+044688
+M044688
+044689
+M044689
+044690
+M044690
+044691
+M044691
+044692
+M044692
+044693
+M044693
+044694
+M044694
+044695
+M044695
+044696
+M044696
+044697
+M044697
+044698
+M044698
+044699
+M044699
+044700
+M044700
+044701
+M044701
+044702
+M044702
+044703
+M044703
+044704
+M044704
+044705
+M044705
+044706
+M044706
+044707
+M044707
+044708
+M044708
+044709
+M044709
+044710
+M044710
+044711
+M044711
+044712
+M044712
+044713
+M044713
+044714
+M044714
+044715
+M044715
+044716
+M044716
+044717
+M044717
+044718
+M044718
+044719
+M044719
+044720
+M044720
+044721
+M044721
+044722
+M044722
+044723
+M044723
+044724
+M044724
+044725
+M044725
+044726
+M044726
+044727
+M044727
+044728
+M044728
+044729
+M044729
+044730
+M044730
+044731
+M044731
+044732
+M044732
+044733
+M044733
+044734
+M044734
+044735
+M044735
+044736
+M044736
+044737
+M044737
+044738
+M044738
+044739
+M044739
+044740
+M044740
+044741
+M044741
+044742
+M044742
+044743
+M044743
+044744
+M044744
+044745
+M044745
+044746
+M044746
+044747
+M044747
+044748
+M044748
+044749
+M044749
+044750
+M044750
+044751
+M044751
+044752
+M044752
+044753
+M044753
+044754
+M044754
+044755
+M044755
+044756
+M044756
+044757
+M044757
+044758
+M044758
+044759
+M044759
+044760
+M044760
+044761
+M044761
+044762
+M044762
+044763
+M044763
+044793
+M044793
+044794
+M044794
+044795
+M044795
+044796
+M044796
+044797
+M044797
+044798
+M044798
+044799
+M044799
+044800
+M044800
+044801
+M044801
+044802
+M044802
+044803
+M044803
+044804
+M044804
+044805
+M044805
+044806
+M044806
+044807
+M044807
+044808
+M044808
+044809
+M044809
+044810
+M044810
+044811
+M044811
+044812
+M044812
+044813
+M044813
+044814
+M044814
+044815
+M044815
+044816
+M044816
+044817
+M044817
+044818
+M044818
+044819
+M044819
+044820
+M044820
+044821
+M044821
+044822
+M044822
+044823
+M044823
+044824
+M044824
+044825
+M044825
+044832
+M044832
+044833
+M044833
+044834
+M044834
+044835
+M044835
+044836
+M044836
+044837
+M044837
+044838
+M044838
+044839
+M044839
+044840
+M044840
+044841
+M044841
+044842
+M044842
+044843
+M044843
+044844
+M044844
+044845
+M044845
+044846
+M044846
+044848
+M044848
+044849
+M044849
+044850
+M044850
+044851
+M044851
+044852
+M044852
+044853
+M044853
+044854
+M044854
+044855
+M044855
+044856
+M044856
+044857
+M044857
+044858
+M044858
+044859
+M044859
+044860
+M044860
+044861
+M044861
+044862
+M044862
+044863
+M044863
+044864
+M044864
+044866
+M044866
+044874
+M044874
+044875
+M044875
+044876
+M044876
+044877
+M044877
+044878
+M044878
+044879
+M044879
+044880
+M044880
+044881
+M044881
+044882
+M044882
+044883
+M044883
+044884
+M044884
+044885
+M044885
+044886
+M044886
+044887
+M044887
+044888
+M044888
+044889
+M044889
+044890
+M044890
+044891
+M044891
+044892
+M044892
+044893
+M044893
+044894
+M044894
+044895
+M044895
+044896
+M044896
+044897
+M044897
+044898
+M044898
+044899
+M044899
+044900
+M044900
+044901
+M044901
+044902
+M044902
+044909
+M044909
+044910
+M044910
+044911
+M044911
+044912
+M044912
+044913
+M044913
+044914
+M044914
+044915
+M044915
+044916
+M044916
+044917
+M044917
+044918
+M044918
+044919
+M044919
+044920
+M044920
+044921
+M044921
+044922
+M044922
+044923
+M044923
+044924
+M044924
+044925
+M044925
+044926
+M044926
+044927
+M044927
+044928
+M044928
+044929
+M044929
+044930
+M044930
+044931
+M044931
+044932
+M044932
+044933
+M044933
+044944
+M044944
+044945
+M044945
+044946
+M044946
+044947
+M044947
+044948
+M044948
+044949
+M044949
+044950
+M044950
+044951
+M044951
+044952
+M044952
+044953
+M044953
+044954
+M044954
+044955
+M044955
+044956
+M044956
+044957
+M044957
+044958
+M044958
+044959
+M044959
+044960
+M044960
+044961
+M044961
+044962
+M044962
+044963
+M044963
+044964
+M044964
+044965
+M044965
+044966
+M044966
+044967
+M044967
+044968
+M044968
+044969
+M044969
+044970
+M044970
+044971
+M044971
+044972
+M044972
+044973
+M044973
+044974
+M044974
+044975
+M044975
+044976
+M044976
+044977
+M044977
+044978
+M044978
+044979
+M044979
+044980
+M044980
+044981
+M044981
+044982
+M044982
+044983
+M044983
+044984
+M044984
+044985
+M044985
+044986
+M044986
+044987
+M044987
+044988
+M044988
+044989
+M044989
+044990
+M044990
+044991
+M044991
+044992
+M044992
+044993
+M044993
+044994
+M044994
+044995
+M044995
+044996
+M044996
+044997
+M044997
+044998
+M044998
+044999
+M044999
+045000
+M045000
+045001
+M045001
+045002
+M045002
+045003
+M045003
+045004
+M045004
+045005
+M045005
+045006
+M045006
+045007
+M045007
+045013
+M045013
+045014
+M045014
+045015
+M045015
+045016
+M045016
+045017
+M045017
+045018
+M045018
+045019
+M045019
+045020
+M045020
+045021
+M045021
+045022
+M045022
+045023
+M045023
+045024
+M045024
+045025
+M045025
+045026
+M045026
+045027
+M045027
+045033
+M045033
+045034
+M045034
+045035
+M045035
+045036
+M045036
+045037
+M045037
+045038
+M045038
+045039
+M045039
+045040
+M045040
+045041
+M045041
+045042
+M045042
+045043
+M045043
+045044
+M045044
+045045
+M045045
+045046
+M045046
+045047
+M045047
+045048
+M045048
+045049
+M045049
+045050
+M045050
+045051
+M045051
+045052
+M045052
+045053
+M045053
+045054
+M045054
+045055
+M045055
+045056
+M045056
+045057
+M045057
+045058
+M045058
+045059
+M045059
+045060
+M045060
+045061
+M045061
+045062
+M045062
+045063
+M045063
+045064
+M045064
+045065
+M045065
+045066
+M045066
+045067
+M045067
+045068
+M045068
+045069
+M045069
+045070
+M045070
+045071
+M045071
+045072
+M045072
+045073
+M045073
+045074
+M045074
+045075
+M045075
+045076
+M045076
+045077
+M045077
+045078
+M045078
+045079
+M045079
+045080
+M045080
+045081
+M045081
+045082
+M045082
+045083
+M045083
+045084
+M045084
+045085
+M045085
+045086
+M045086
+045087
+M045087
+045088
+M045088
+045089
+M045089
+045090
+M045090
+045091
+M045091
+045092
+M045092
+045093
+M045093
+045094
+M045094
+045095
+M045095
+045096
+M045096
+045097
+M045097
+045098
+M045098
+045099
+M045099
+045100
+M045100
+045101
+M045101
+045102
+M045102
+045103
+M045103
+045104
+M045104
+045105
+M045105
+045106
+M045106
+045107
+M045107
+045108
+M045108
+045109
+M045109
+045110
+M045110
+045111
+M045111
+045112
+M045112
+045113
+M045113
+045114
+M045114
+045115
+M045115
+045116
+M045116
+045117
+M045117
+045118
+M045118
+045119
+M045119
+045120
+M045120
+045121
+M045121
+045133
+M045133
+045134
+M045134
+045135
+M045135
+045136
+M045136
+045137
+M045137
+045138
+M045138
+045139
+M045139
+045140
+M045140
+045141
+M045141
+045142
+M045142
+045143
+M045143
+045144
+M045144
+045145
+M045145
+045146
+M045146
+045147
+M045147
+045148
+M045148
+045149
+M045149
+045150
+M045150
+045151
+M045151
+045152
+M045152
+045153
+M045153
+045154
+M045154
+045155
+M045155
+045156
+M045156
+045157
+M045157
+045158
+M045158
+045159
+M045159
+045160
+M045160
+045161
+M045161
+045162
+M045162
+045163
+M045163
+045164
+M045164
+045165
+M045165
+045166
+M045166
+045167
+M045167
+045168
+M045168
+045169
+M045169
+045170
+M045170
+045171
+M045171
+045172
+M045172
+045173
+M045173
+045174
+M045174
+045175
+M045175
+045176
+M045176
+045177
+M045177
+045178
+M045178
+045179
+M045179
+045180
+M045180
+045181
+M045181
+045182
+M045182
+045183
+M045183
+045184
+M045184
+045185
+M045185
+045186
+M045186
+045187
+M045187
+045188
+M045188
+045189
+M045189
+045190
+M045190
+045191
+M045191
+045192
+M045192
+045193
+M045193
+045194
+M045194
+045195
+M045195
+045196
+M045196
+045197
+M045197
+045198
+M045198
+045199
+M045199
+045200
+M045200
+045201
+M045201
+045202
+M045202
+045203
+M045203
+045204
+M045204
+045205
+M045205
+045206
+M045206
+045207
+M045207
+045208
+M045208
+045209
+M045209
+045210
+M045210
+045211
+M045211
+045212
+M045212
+045213
+M045213
+045214
+M045214
+045215
+M045215
+045216
+M045216
+045217
+M045217
+045218
+M045218
+045219
+M045219
+045220
+M045220
+045221
+M045221
+045222
+M045222
+045223
+M045223
+045224
+M045224
+045225
+M045225
+045226
+M045226
+045227
+M045227
+045228
+M045228
+045229
+M045229
+045230
+M045230
+045231
+M045231
+045232
+M045232
+045233
+M045233
+045234
+M045234
+045235
+M045235
+045236
+M045236
+045237
+M045237
+045238
+M045238
+045239
+M045239
+045240
+M045240
+045241
+M045241
+045242
+M045242
+045243
+M045243
+045244
+M045244
+045245
+M045245
+045246
+M045246
+045247
+M045247
+045255
+M045255
+045256
+M045256
+045257
+M045257
+045258
+M045258
+045259
+M045259
+045260
+M045260
+045261
+M045261
+045262
+M045262
+045263
+M045263
+045264
+M045264
+045265
+M045265
+045266
+M045266
+045267
+M045267
+045268
+M045268
+045269
+M045269
+045270
+M045270
+045271
+M045271
+045272
+M045272
+045273
+M045273
+045274
+M045274
+045275
+M045275
+045276
+M045276
+045277
+M045277
+045278
+M045278
+045279
+M045279
+045280
+M045280
+045281
+M045281
+045282
+M045282
+045283
+M045283
+045284
+M045284
+045285
+M045285
+045286
+M045286
+045287
+M045287
+045288
+M045288
+045289
+M045289
+045290
+M045290
+045291
+M045291
+045292
+M045292
+045293
+M045293
+045294
+M045294
+045295
+M045295
+045296
+M045296
+045297
+M045297
+045298
+M045298
+045299
+M045299
+045300
+M045300
+045301
+M045301
+045302
+M045302
+045303
+M045303
+045304
+M045304
+045305
+M045305
+045306
+M045306
+045316
+M045316
+045317
+M045317
+045318
+M045318
+045319
+M045319
+045320
+M045320
+045321
+M045321
+045322
+M045322
+045323
+M045323
+045324
+M045324
+045325
+M045325
+045326
+M045326
+045327
+M045327
+045334
+M045334
+045335
+M045335
+045336
+M045336
+045337
+M045337
+045338
+M045338
+045339
+M045339
+045340
+M045340
+045341
+M045341
+045342
+M045342
+045343
+M045343
+045344
+M045344
+045345
+M045345
+045346
+M045346
+045347
+M045347
+045348
+M045348
+045349
+M045349
+045350
+M045350
+045351
+M045351
+045352
+M045352
+045353
+M045353
+045354
+M045354
+045355
+M045355
+045356
+M045356
+045357
+M045357
+045358
+M045358
+045363
+M045363
+045364
+M045364
+045365
+M045365
+045366
+M045366
+045367
+M045367
+045368
+M045368
+045369
+M045369
+045391
+M045391
+045392
+M045392
+045393
+M045393
+045394
+M045394
+045395
+M045395
+045396
+M045396
+045397
+M045397
+045398
+M045398
+045399
+M045399
+045400
+M045400
+045401
+M045401
+045402
+M045402
+045403
+M045403
+045404
+M045404
+045405
+M045405
+045406
+M045406
+045407
+M045407
+045408
+M045408
+045409
+M045409
+045410
+M045410
+045411
+M045411
+045412
+M045412
+045413
+M045413
+045414
+M045414
+045415
+M045415
+045416
+M045416
+045417
+M045417
+045418
+M045418
+045419
+M045419
+045420
+M045420
+045421
+M045421
+045422
+M045422
+045423
+M045423
+045424
+M045424
+045425
+M045425
+045426
+M045426
+045427
+M045427
+045428
+M045428
+045429
+M045429
+045430
+M045430
+045431
+M045431
+045432
+M045432
+045433
+M045433
+045434
+M045434
+045435
+M045435
+045436
+M045436
+045437
+M045437
+045438
+M045438
+045439
+M045439
+045440
+M045440
+045441
+M045441
+045442
+M045442
+045443
+M045443
+045444
+M045444
+045445
+M045445
+045446
+M045446
+045447
+M045447
+045448
+M045448
+045449
+M045449
+045450
+M045450
+045451
+M045451
+045452
+M045452
+045453
+M045453
+045461
+M045461
+045462
+M045462
+045463
+M045463
+045464
+M045464
+045465
+M045465
+045466
+M045466
+045467
+M045467
+045468
+M045468
+045469
+M045469
+045470
+M045470
+045471
+M045471
+045472
+M045472
+045473
+M045473
+045474
+M045474
+045475
+M045475
+045476
+M045476
+045478
+M045478
+045479
+M045479
+045480
+M045480
+045481
+M045481
+045482
+M045482
+045483
+M045483
+045484
+M045484
+045485
+M045485
+045486
+M045486
+045487
+M045487
+045488
+M045488
+045489
+M045489
+045490
+M045490
+045491
+M045491
+045492
+M045492
+045493
+M045493
+045494
+M045494
+045495
+M045495
+045496
+M045496
+045504
+M045504
+045505
+M045505
+045506
+M045506
+045507
+M045507
+045508
+M045508
+045509
+M045509
+045510
+M045510
+045511
+M045511
+045512
+M045512
+045513
+M045513
+045514
+M045514
+045515
+M045515
+045516
+M045516
+045517
+M045517
+045518
+M045518
+045519
+M045519
+045520
+M045520
+045521
+M045521
+045522
+M045522
+045523
+M045523
+045524
+M045524
+045525
+M045525
+045526
+M045526
+045527
+M045527
+045528
+M045528
+045529
+M045529
+045530
+M045530
+045531
+M045531
+045532
+M045532
+045533
+M045533
+045543
+M045543
+045544
+M045544
+045545
+M045545
+045546
+M045546
+045547
+M045547
+045548
+M045548
+045549
+M045549
+045550
+M045550
+045551
+M045551
+045552
+M045552
+045553
+M045553
+045554
+M045554
+045555
+M045555
+045556
+M045556
+045557
+M045557
+045558
+M045558
+045559
+M045559
+045560
+M045560
+045561
+M045561
+045562
+M045562
+045563
+M045563
+045564
+M045564
+045565
+M045565
+045566
+M045566
+045567
+M045567
+045576
+M045576
+045577
+M045577
+045578
+M045578
+045579
+M045579
+045580
+M045580
+045581
+M045581
+045582
+M045582
+045583
+M045583
+045584
+M045584
+045585
+M045585
+045586
+M045586
+045588
+M045588
+045589
+M045589
+045590
+M045590
+045591
+M045591
+045592
+M045592
+045593
+M045593
+045594
+M045594
+045595
+M045595
+045596
+M045596
+045597
+M045597
+045598
+M045598
+045599
+M045599
+045600
+M045600
+045601
+M045601
+045602
+M045602
+045603
+M045603
+045604
+M045604
+045605
+M045605
+045606
+M045606
+045607
+M045607
+045608
+M045608
+045609
+M045609
+045610
+M045610
+045611
+M045611
+045612
+M045612
+045613
+M045613
+045614
+M045614
+045615
+M045615
+045616
+M045616
+045617
+M045617
+045618
+M045618
+045619
+M045619
+045620
+M045620
+045621
+M045621
+045622
+M045622
+045623
+M045623
+045624
+M045624
+045625
+M045625
+045626
+M045626
+045627
+M045627
+045645
+M045645
+045646
+M045646
+045647
+M045647
+045648
+M045648
+045649
+M045649
+045650
+M045650
+045670
+M045670
+045671
+M045671
+045672
+M045672
+045673
+M045673
+045674
+M045674
+045675
+M045675
+045676
+M045676
+045677
+M045677
+045678
+M045678
+045679
+M045679
+045680
+M045680
+045681
+M045681
+045682
+M045682
+045683
+M045683
+045684
+M045684
+045685
+M045685
+045686
+M045686
+045687
+M045687
+045688
+M045688
+045689
+M045689
+045690
+M045690
+045691
+M045691
+045692
+M045692
+045693
+M045693
+045699
+M045699
+045700
+M045700
+045701
+M045701
+045702
+M045702
+045703
+M045703
+045704
+M045704
+045705
+M045705
+045706
+M045706
+045707
+M045707
+045708
+M045708
+045709
+M045709
+045710
+M045710
+045711
+M045711
+045712
+M045712
+045713
+M045713
+045714
+M045714
+045715
+M045715
+045716
+M045716
+045717
+M045717
+045718
+M045718
+045719
+M045719
+045720
+M045720
+045733
+M045733
+045734
+M045734
+045735
+M045735
+045736
+M045736
+045737
+M045737
+045738
+M045738
+045739
+M045739
+045740
+M045740
+045741
+M045741
+045742
+M045742
+045743
+M045743
+045744
+M045744
+045745
+M045745
+045746
+M045746
+045747
+M045747
+045748
+M045748
+045749
+M045749
+045750
+M045750
+045751
+M045751
+045752
+M045752
+045753
+M045753
+045754
+M045754
+045755
+M045755
+045756
+M045756
+045757
+M045757
+045758
+M045758
+045759
+M045759
+045760
+M045760
+045761
+M045761
+045762
+M045762
+045763
+M045763
+045764
+M045764
+045765
+M045765
+045766
+M045766
+045767
+M045767
+045768
+M045768
+045769
+M045769
+045770
+M045770
+045771
+M045771
+045775
+M045775
+045776
+M045776
+045777
+M045777
+045778
+M045778
+045779
+M045779
+045780
+M045780
+045781
+M045781
+045782
+M045782
+045783
+M045783
+045784
+M045784
+045785
+M045785
+045786
+M045786
+045787
+M045787
+045788
+M045788
+045789
+M045789
+045790
+M045790
+045791
+M045791
+045792
+M045792
+045793
+M045793
+045794
+M045794
+045795
+M045795
+045796
+M045796
+045797
+M045797
+045798
+M045798
+045799
+M045799
+045800
+M045800
+045801
+M045801
+045802
+M045802
+045803
+M045803
+045804
+M045804
+045805
+M045805
+045806
+M045806
+045807
+M045807
+045808
+M045808
+045809
+M045809
+045822
+M045822
+045823
+M045823
+045824
+M045824
+045825
+M045825
+045826
+M045826
+045830
+M045830
+045831
+M045831
+045832
+M045832
+045833
+M045833
+045834
+M045834
+045835
+M045835
+045836
+M045836
+045846
+M045846
+045847
+M045847
+045848
+M045848
+045849
+M045849
+045850
+M045850
+045851
+M045851
+045852
+M045852
+045853
+M045853
+045854
+M045854
+045855
+M045855
+045856
+M045856
+045857
+M045857
+045858
+M045858
+045859
+M045859
+045860
+M045860
+045861
+M045861
+045862
+M045862
+045863
+M045863
+045864
+M045864
+045865
+M045865
+045866
+M045866
+045867
+M045867
+045868
+M045868
+045874
+M045874
+045875
+M045875
+045876
+M045876
+045877
+M045877
+045878
+M045878
+045882
+M045882
+045883
+M045883
+045884
+M045884
+045885
+M045885
+045886
+M045886
+045899
+M045899
+045900
+M045900
+045901
+M045901
+045902
+M045902
+045903
+M045903
+045909
+M045909
+045910
+M045910
+045911
+M045911
+045912
+M045912
+045913
+M045913
+045914
+M045914
+045915
+M045915
+045916
+M045916
+045917
+M045917
+045918
+M045918
+045919
+M045919
+045920
+M045920
+045921
+M045921
+045922
+M045922
+045923
+M045923
+045936
+M045936
+045937
+M045937
+045938
+M045938
+045939
+M045939
+045940
+M045940
+045941
+M045941
+045942
+M045942
+045943
+M045943
+045944
+M045944
+045945
+M045945
+045946
+M045946
+045947
+M045947
+045948
+M045948
+045949
+M045949
+045950
+M045950
+045951
+M045951
+045952
+M045952
+045953
+M045953
+045954
+M045954
+045955
+M045955
+045956
+M045956
+045957
+M045957
+045958
+M045958
+045959
+M045959
+045960
+M045960
+045961
+M045961
+045962
+M045962
+045963
+M045963
+045964
+M045964
+045965
+M045965
+045966
+M045966
+045967
+M045967
+045968
+M045968
+045969
+M045969
+045970
+M045970
+045971
+M045971
+045972
+M045972
+045973
+M045973
+045974
+M045974
+046016
+M046016
+046017
+M046017
+046018
+M046018
+046019
+M046019
+046020
+M046020
+046021
+M046021
+046022
+M046022
+046023
+M046023
+046024
+M046024
+046025
+M046025
+046026
+M046026
+046027
+M046027
+046028
+M046028
+046029
+M046029
+046035
+M046035
+046036
+M046036
+046037
+M046037
+046038
+M046038
+046039
+M046039
+046040
+M046040
+046041
+M046041
+046047
+M046047
+046048
+M046048
+046049
+M046049
+046050
+M046050
+046051
+M046051
+046052
+M046052
+046053
+M046053
+046054
+M046054
+046055
+M046055
+046056
+M046056
+046057
+M046057
+046058
+M046058
+046059
+M046059
+046060
+M046060
+046061
+M046061
+046062
+M046062
+046063
+M046063
+046064
+M046064
+046065
+M046065
+046066
+M046066
+046067
+M046067
+046068
+M046068
+046069
+M046069
+046070
+M046070
+046071
+M046071
+046072
+M046072
+046073
+M046073
+046099
+M046099
+046100
+M046100
+046101
+M046101
+046102
+M046102
+046103
+M046103
+046104
+M046104
+046105
+M046105
+046106
+M046106
+046107
+M046107
+046108
+M046108
+046109
+M046109
+046110
+M046110
+046111
+M046111
+046112
+M046112
+046113
+M046113
+046114
+M046114
+046115
+M046115
+046116
+M046116
+046117
+M046117
+046118
+M046118
+046119
+M046119
+046120
+M046120
+046121
+M046121
+046122
+M046122
+046123
+M046123
+046124
+M046124
+046125
+M046125
+046126
+M046126
+046127
+M046127
+046128
+M046128
+046129
+M046129
+046130
+M046130
+046131
+M046131
+046132
+M046132
+046133
+M046133
+046134
+M046134
+046135
+M046135
+046136
+M046136
+046137
+M046137
+046138
+M046138
+046139
+M046139
+046140
+M046140
+046143
+M046143
+046144
+M046144
+046145
+M046145
+046146
+M046146
+046147
+M046147
+046148
+M046148
+046149
+M046149
+046150
+M046150
+046151
+M046151
+046152
+M046152
+046153
+M046153
+046154
+M046154
+046155
+M046155
+046156
+M046156
+046157
+M046157
+046158
+M046158
+046159
+M046159
+046160
+M046160
+046161
+M046161
+046162
+M046162
+046163
+M046163
+046164
+M046164
+046165
+M046165
+046166
+M046166
+046167
+M046167
+046168
+M046168
+046169
+M046169
+046170
+M046170
+046173
+M046173
+046174
+M046174
+046175
+M046175
+046176
+M046176
+046177
+M046177
+046178
+M046178
+046179
+M046179
+046180
+M046180
+046181
+M046181
+046182
+M046182
+046183
+M046183
+046184
+M046184
+046185
+M046185
+046186
+M046186
+046187
+M046187
+046188
+M046188
+046189
+M046189
+046190
+M046190
+046191
+M046191
+046192
+M046192
+046193
+M046193
+046194
+M046194
+046195
+M046195
+046196
+M046196
+046197
+M046197
+046198
+M046198
+046199
+M046199
+046200
+M046200
+046201
+M046201
+046202
+M046202
+046203
+M046203
+046204
+M046204
+046205
+M046205
+046206
+M046206
+046207
+M046207
+046208
+M046208
+046217
+M046217
+046218
+M046218
+046219
+M046219
+046220
+M046220
+046221
+M046221
+046222
+M046222
+046223
+M046223
+046224
+M046224
+046225
+M046225
+046226
+M046226
+046227
+M046227
+046228
+M046228
+046229
+M046229
+046230
+M046230
+046231
+M046231
+046232
+M046232
+046233
+M046233
+046234
+M046234
+046235
+M046235
+046236
+M046236
+046237
+M046237
+046238
+M046238
+046239
+M046239
+046240
+M046240
+046241
+M046241
+046242
+M046242
+046243
+M046243
+046244
+M046244
+046245
+M046245
+046246
+M046246
+046247
+M046247
+046248
+M046248
+046249
+M046249
+046256
+M046256
+046257
+M046257
+046258
+M046258
+046259
+M046259
+046260
+M046260
+046261
+M046261
+046262
+M046262
+046263
+M046263
+046264
+M046264
+046265
+M046265
+046266
+M046266
+046267
+M046267
+046268
+M046268
+046269
+M046269
+046270
+M046270
+046271
+M046271
+046272
+M046272
+046273
+M046273
+046274
+M046274
+046275
+M046275
+046276
+M046276
+046277
+M046277
+046278
+M046278
+046279
+M046279
+046280
+M046280
+046286
+M046286
+046287
+M046287
+046288
+M046288
+046289
+M046289
+046290
+M046290
+046291
+M046291
+046292
+M046292
+046293
+M046293
+046294
+M046294
+046295
+M046295
+046296
+M046296
+046297
+M046297
+046298
+M046298
+046299
+M046299
+046300
+M046300
+046301
+M046301
+046302
+M046302
+046303
+M046303
+046304
+M046304
+046305
+M046305
+046306
+M046306
+046307
+M046307
+046308
+M046308
+046309
+M046309
+046310
+M046310
+046311
+M046311
+046312
+M046312
+046313
+M046313
+046314
+M046314
+046315
+M046315
+046316
+M046316
+046317
+M046317
+046318
+M046318
+046319
+M046319
+046320
+M046320
+046321
+M046321
+046322
+M046322
+046323
+M046323
+046324
+M046324
+046325
+M046325
+046326
+M046326
+046327
+M046327
+046328
+M046328
+046329
+M046329
+046330
+M046330
+046331
+M046331
+046332
+M046332
+046333
+M046333
+046334
+M046334
+046335
+M046335
+046336
+M046336
+046337
+M046337
+046338
+M046338
+046339
+M046339
+046340
+M046340
+046341
+M046341
+046342
+M046342
+046343
+M046343
+046344
+M046344
+046345
+M046345
+046346
+M046346
+046347
+M046347
+046348
+M046348
+046349
+M046349
+046350
+M046350
+046351
+M046351
+046352
+M046352
+046353
+M046353
+046354
+M046354
+046355
+M046355
+046356
+M046356
+046357
+M046357
+046358
+M046358
+046359
+M046359
+046360
+M046360
+046361
+M046361
+046367
+M046367
+046368
+M046368
+046369
+M046369
+046370
+M046370
+046371
+M046371
+046372
+M046372
+046373
+M046373
+046374
+M046374
+046375
+M046375
+046376
+M046376
+046377
+M046377
+046378
+M046378
+046379
+M046379
+046380
+M046380
+046408
+M046408
+046409
+M046409
+046410
+M046410
+046411
+M046411
+046412
+M046412
+046413
+M046413
+046414
+M046414
+046415
+M046415
+046416
+M046416
+046417
+M046417
+046418
+M046418
+046419
+M046419
+046420
+M046420
+046421
+M046421
+046422
+M046422
+046423
+M046423
+046424
+M046424
+046425
+M046425
+046426
+M046426
+046427
+M046427
+046428
+M046428
+046429
+M046429
+046430
+M046430
+046431
+M046431
+046432
+M046432
+046433
+M046433
+046434
+M046434
+046435
+M046435
+046436
+M046436
+046437
+M046437
+046438
+M046438
+046439
+M046439
+046440
+M046440
+046441
+M046441
+046442
+M046442
+046443
+M046443
+046444
+M046444
+046445
+M046445
+046446
+M046446
+046454
+M046454
+046455
+M046455
+046456
+M046456
+046457
+M046457
+046458
+M046458
+046459
+M046459
+046460
+M046460
+046461
+M046461
+046471
+M046471
+046472
+M046472
+046473
+M046473
+046474
+M046474
+046475
+M046475
+046476
+M046476
+046477
+M046477
+046478
+M046478
+046479
+M046479
+046480
+M046480
+046481
+M046481
+046482
+M046482
+046483
+M046483
+046484
+M046484
+046485
+M046485
+046486
+M046486
+046487
+M046487
+046488
+M046488
+046489
+M046489
+046490
+M046490
+046491
+M046491
+046492
+M046492
+046493
+M046493
+046494
+M046494
+046495
+M046495
+046496
+M046496
+046497
+M046497
+046498
+M046498
+046499
+M046499
+046500
+M046500
+046501
+M046501
+046502
+M046502
+046503
+M046503
+046504
+M046504
+046505
+M046505
+046506
+M046506
+046507
+M046507
+046508
+M046508
+046509
+M046509
+046510
+M046510
+046537
+M046537
+046538
+M046538
+046539
+M046539
+046540
+M046540
+046541
+M046541
+046542
+M046542
+046543
+M046543
+046544
+M046544
+046545
+M046545
+046546
+M046546
+046547
+M046547
+046548
+M046548
+046549
+M046549
+046550
+M046550
+046551
+M046551
+046552
+M046552
+046553
+M046553
+046554
+M046554
+046555
+M046555
+046556
+M046556
+046557
+M046557
+046558
+M046558
+046559
+M046559
+046560
+M046560
+046561
+M046561
+046562
+M046562
+046563
+M046563
+046564
+M046564
+046565
+M046565
+046566
+M046566
+046567
+M046567
+046568
+M046568
+046569
+M046569
+046570
+M046570
+046571
+M046571
+046572
+M046572
+046575
+M046575
+046576
+M046576
+046577
+M046577
+046578
+M046578
+046579
+M046579
+046580
+M046580
+046581
+M046581
+046582
+M046582
+046583
+M046583
+046584
+M046584
+046585
+M046585
+046586
+M046586
+046587
+M046587
+046588
+M046588
+046589
+M046589
+046590
+M046590
+046591
+M046591
+046592
+M046592
+046593
+M046593
+046594
+M046594
+046595
+M046595
+046596
+M046596
+046597
+M046597
+046598
+M046598
+046599
+M046599
+046600
+M046600
+046601
+M046601
+046602
+M046602
+046603
+M046603
+046604
+M046604
+046605
+M046605
+046606
+M046606
+046607
+M046607
+046608
+M046608
+046609
+M046609
+046610
+M046610
+046611
+M046611
+046612
+M046612
+046613
+M046613
+046614
+M046614
+046615
+M046615
+046616
+M046616
+046617
+M046617
+046618
+M046618
+046619
+M046619
+046620
+M046620
+046621
+M046621
+046622
+M046622
+046623
+M046623
+046625
+M046625
+046627
+M046627
+046629
+M046629
+046630
+M046630
+046631
+M046631
+046632
+M046632
+046633
+M046633
+046634
+M046634
+046635
+M046635
+046636
+M046636
+046637
+M046637
+046643
+M046643
+046644
+M046644
+046645
+M046645
+046646
+M046646
+046647
+M046647
+046648
+M046648
+046649
+M046649
+046650
+M046650
+046651
+M046651
+046652
+M046652
+046653
+M046653
+046654
+M046654
+046655
+M046655
+046656
+M046656
+046657
+M046657
+046658
+M046658
+046659
+M046659
+046660
+M046660
+046661
+M046661
+046662
+M046662
+046663
+M046663
+046664
+M046664
+046665
+M046665
+046666
+M046666
+046667
+M046667
+046668
+M046668
+046669
+M046669
+046670
+M046670
+046671
+M046671
+046672
+M046672
+046673
+M046673
+046674
+M046674
+046675
+M046675
+046676
+M046676
+046677
+M046677
+046678
+M046678
+046679
+M046679
+046680
+M046680
+046681
+M046681
+046682
+M046682
+046683
+M046683
+046684
+M046684
+046685
+M046685
+046686
+M046686
+046687
+M046687
+046688
+M046688
+046689
+M046689
+046690
+M046690
+046691
+M046691
+046692
+M046692
+046693
+M046693
+046694
+M046694
+046695
+M046695
+046696
+M046696
+046697
+M046697
+046698
+M046698
+046699
+M046699
+046700
+M046700
+046701
+M046701
+046702
+M046702
+046703
+M046703
+046704
+M046704
+046705
+M046705
+046706
+M046706
+046707
+M046707
+046708
+M046708
+046709
+M046709
+046710
+M046710
+046711
+M046711
+046712
+M046712
+046713
+M046713
+046714
+M046714
+046715
+M046715
+046716
+M046716
+046717
+M046717
+046718
+M046718
+046719
+M046719
+046720
+M046720
+046721
+M046721
+046722
+M046722
+046723
+M046723
+046724
+M046724
+046725
+M046725
+046726
+M046726
+046727
+M046727
+046728
+M046728
+046729
+M046729
+046730
+M046730
+046731
+M046731
+046732
+M046732
+046733
+M046733
+046734
+M046734
+046735
+M046735
+046736
+M046736
+046737
+M046737
+046738
+M046738
+046739
+M046739
+046740
+M046740
+046741
+M046741
+046742
+M046742
+046743
+M046743
+046744
+M046744
+046745
+M046745
+046746
+M046746
+046747
+M046747
+046748
+M046748
+046749
+M046749
+046750
+M046750
+046751
+M046751
+046752
+M046752
+046753
+M046753
+046754
+M046754
+046755
+M046755
+046756
+M046756
+046757
+M046757
+046758
+M046758
+046759
+M046759
+046760
+M046760
+046761
+M046761
+046762
+M046762
+046763
+M046763
+046764
+M046764
+046765
+M046765
+046766
+M046766
+046767
+M046767
+046768
+M046768
+046769
+M046769
+046770
+M046770
+046778
+M046778
+046779
+M046779
+046780
+M046780
+046781
+M046781
+046782
+M046782
+046783
+M046783
+046784
+M046784
+046785
+M046785
+046786
+M046786
+046787
+M046787
+046788
+M046788
+046789
+M046789
+046790
+M046790
+046791
+M046791
+046792
+M046792
+046793
+M046793
+046794
+M046794
+046795
+M046795
+046796
+M046796
+046797
+M046797
+046798
+M046798
+046799
+M046799
+046800
+M046800
+046801
+M046801
+046802
+M046802
+046803
+M046803
+046804
+M046804
+046805
+M046805
+046806
+M046806
+046807
+M046807
+046808
+M046808
+046809
+M046809
+046810
+M046810
+046811
+M046811
+046812
+M046812
+046813
+M046813
+046814
+M046814
+046815
+M046815
+046816
+M046816
+046817
+M046817
+046818
+M046818
+046819
+M046819
+046820
+M046820
+046821
+M046821
+046822
+M046822
+046823
+M046823
+046824
+M046824
+046825
+M046825
+046826
+M046826
+046827
+M046827
+046828
+M046828
+046829
+M046829
+046843
+M046843
+046844
+M046844
+046845
+M046845
+046846
+M046846
+046847
+M046847
+046848
+M046848
+046849
+M046849
+046850
+M046850
+046851
+M046851
+046852
+M046852
+046866
+M046866
+046867
+M046867
+046868
+M046868
+046869
+M046869
+046870
+M046870
+046871
+M046871
+046872
+M046872
+046873
+M046873
+046874
+M046874
+046875
+M046875
+046876
+M046876
+046877
+M046877
+046878
+M046878
+046879
+M046879
+046880
+M046880
+046881
+M046881
+046882
+M046882
+046929
+M046929
+046930
+M046930
+046931
+M046931
+046932
+M046932
+046933
+M046933
+046934
+M046934
+046935
+M046935
+046936
+M046936
+046937
+M046937
+046938
+M046938
+046939
+M046939
+046940
+M046940
+046941
+M046941
+046942
+M046942
+046943
+M046943
+046944
+M046944
+046945
+M046945
+046946
+M046946
+046947
+M046947
+046948
+M046948
+046949
+M046949
+046950
+M046950
+046951
+M046951
+046952
+M046952
+046953
+M046953
+046954
+M046954
+046979
+M046979
+046980
+M046980
+046981
+M046981
+046990
+M046990
+046991
+M046991
+046992
+M046992
+046999
+M046999
+047000
+M047000
+047001
+M047001
+047002
+M047002
+047003
+M047003
+047004
+M047004
+047005
+M047005
+047006
+M047006
+047007
+M047007
+047008
+M047008
+047009
+M047009
+047010
+M047010
+047011
+M047011
+047012
+M047012
+047013
+M047013
+047014
+M047014
+047015
+M047015
+047034
+M047034
+047035
+M047035
+047036
+M047036
+047048
+M047048
+047049
+M047049
+047050
+M047050
+047051
+M047051
+047052
+M047052
+047053
+M047053
+047054
+M047054
+047055
+M047055
+047056
+M047056
+047057
+M047057
+047058
+M047058
+047059
+M047059
+047060
+M047060
+047061
+M047061
+047062
+M047062
+047063
+M047063
+047064
+M047064
+047065
+M047065
+047066
+M047066
+047067
+M047067
+047068
+M047068
+047069
+M047069
+047071
+M047071
+047072
+M047072
+047073
+M047073
+047074
+M047074
+047075
+M047075
+047076
+M047076
+047077
+M047077
+047078
+M047078
+047079
+M047079
+047080
+M047080
+047081
+M047081
+047082
+M047082
+047083
+M047083
+047084
+M047084
+047085
+M047085
+047086
+M047086
+047087
+M047087
+047088
+M047088
+047089
+M047089
+047090
+M047090
+047091
+M047091
+047092
+M047092
+047093
+M047093
+047094
+M047094
+047095
+M047095
+047096
+M047096
+047097
+M047097
+047098
+M047098
+047099
+M047099
+047100
+M047100
+047101
+M047101
+047102
+M047102
+047103
+M047103
+047104
+M047104
+047105
+M047105
+047106
+M047106
+047107
+M047107
+047108
+M047108
+047109
+M047109
+047110
+M047110
+047111
+M047111
+047112
+M047112
+047113
+M047113
+047114
+M047114
+047115
+M047115
+047116
+M047116
+047117
+M047117
+047118
+M047118
+047123
+M047123
+047124
+M047124
+047125
+M047125
+047126
+M047126
+047127
+M047127
+047128
+M047128
+047129
+M047129
+047130
+M047130
+047131
+M047131
+047132
+M047132
+047133
+M047133
+047134
+M047134
+047135
+M047135
+047136
+M047136
+047148
+M047148
+047149
+M047149
+047150
+M047150
+047151
+M047151
+047152
+M047152
+047153
+M047153
+047154
+M047154
+047155
+M047155
+047156
+M047156
+047157
+M047157
+047158
+M047158
+047159
+M047159
+047160
+M047160
+047161
+M047161
+047162
+M047162
+047163
+M047163
+047164
+M047164
+047165
+M047165
+047166
+M047166
+047167
+M047167
+047168
+M047168
+047169
+M047169
+047170
+M047170
+047171
+M047171
+047172
+M047172
+047173
+M047173
+047174
+M047174
+047175
+M047175
+047176
+M047176
+047177
+M047177
+047178
+M047178
+047179
+M047179
+047180
+M047180
+047181
+M047181
+047182
+M047182
+047183
+M047183
+047184
+M047184
+047185
+M047185
+047186
+M047186
+047187
+M047187
+047188
+M047188
+047189
+M047189
+047209
+M047209
+047210
+M047210
+047211
+M047211
+047212
+M047212
+047253
+M047253
+047254
+M047254
+047255
+M047255
+047256
+M047256
+047257
+M047257
+047258
+M047258
+047259
+M047259
+047260
+M047260
+047261
+M047261
+047262
+M047262
+047263
+M047263
+047264
+M047264
+047265
+M047265
+047266
+M047266
+047267
+M047267
+047268
+M047268
+047269
+M047269
+047270
+M047270
+047271
+M047271
+047272
+M047272
+047273
+M047273
+047274
+M047274
+047275
+M047275
+047276
+M047276
+047277
+M047277
+047278
+M047278
+047279
+M047279
+047280
+M047280
+047281
+M047281
+047282
+M047282
+047283
+M047283
+047284
+M047284
+047285
+M047285
+047286
+M047286
+047287
+M047287
+047288
+M047288
+047289
+M047289
+047290
+M047290
+047291
+M047291
+047292
+M047292
+047293
+M047293
+047294
+M047294
+047295
+M047295
+047296
+M047296
+047297
+M047297
+047298
+M047298
+047299
+M047299
+047300
+M047300
+047301
+M047301
+047322
+M047322
+047323
+M047323
+047324
+M047324
+047325
+M047325
+047326
+M047326
+047328
+M047328
+047329
+M047329
+047330
+M047330
+047331
+M047331
+047332
+M047332
+047333
+M047333
+047334
+M047334
+047335
+M047335
+047336
+M047336
+047337
+M047337
+047338
+M047338
+047339
+M047339
+047340
+M047340
+047341
+M047341
+047342
+M047342
+047355
+M047355
+047356
+M047356
+047357
+M047357
+047358
+M047358
+047359
+M047359
+047360
+M047360
+047361
+M047361
+047362
+M047362
+047363
+M047363
+047364
+M047364
+047365
+M047365
+047366
+M047366
+047367
+M047367
+047368
+M047368
+047369
+M047369
+047370
+M047370
+047371
+M047371
+047372
+M047372
+047373
+M047373
+047374
+M047374
+047375
+M047375
+047376
+M047376
+047377
+M047377
+047378
+M047378
+047379
+M047379
+047380
+M047380
+047381
+M047381
+047382
+M047382
+047383
+M047383
+047384
+M047384
+047385
+M047385
+047386
+M047386
+047387
+M047387
+047388
+M047388
+047389
+M047389
+047390
+M047390
+047391
+M047391
+047392
+M047392
+047393
+M047393
+047394
+M047394
+047395
+M047395
+047396
+M047396
+047397
+M047397
+047398
+M047398
+047399
+M047399
+047400
+M047400
+047410
+M047410
+047411
+M047411
+047412
+M047412
+047413
+M047413
+047414
+M047414
+047415
+M047415
+047416
+M047416
+047417
+M047417
+047418
+M047418
+047419
+M047419
+047420
+M047420
+047421
+M047421
+047422
+M047422
+047423
+M047423
+047424
+M047424
+047425
+M047425
+047426
+M047426
+047427
+M047427
+047428
+M047428
+047429
+M047429
+047430
+M047430
+047431
+M047431
+047432
+M047432
+047433
+M047433
+047434
+M047434
+047435
+M047435
+047436
+M047436
+047437
+M047437
+047438
+M047438
+047456
+M047456
+047457
+M047457
+047458
+M047458
+047459
+M047459
+047460
+M047460
+047461
+M047461
+047462
+M047462
+047463
+M047463
+047464
+M047464
+047465
+M047465
+047466
+M047466
+047467
+M047467
+047468
+M047468
+047469
+M047469
+047470
+M047470
+047471
+M047471
+047472
+M047472
+047473
+M047473
+047474
+M047474
+047475
+M047475
+047476
+M047476
+047477
+M047477
+047478
+M047478
+047479
+M047479
+047480
+M047480
+047481
+M047481
+047482
+M047482
+047483
+M047483
+047484
+M047484
+047485
+M047485
+047486
+M047486
+047487
+M047487
+047488
+M047488
+047489
+M047489
+047490
+M047490
+047491
+M047491
+047492
+M047492
+047493
+M047493
+047494
+M047494
+047495
+M047495
+047496
+M047496
+047497
+M047497
+047528
+M047528
+047529
+M047529
+047531
+M047531
+047532
+M047532
+047533
+M047533
+047534
+M047534
+047535
+M047535
+047539
+M047539
+047540
+M047540
+047541
+M047541
+047542
+M047542
+047543
+M047543
+047544
+M047544
+047545
+M047545
+047546
+M047546
+047547
+M047547
+047548
+M047548
+047549
+M047549
+047555
+M047555
+047556
+M047556
+047557
+M047557
+047561
+M047561
+047562
+M047562
+047563
+M047563
+047564
+M047564
+047565
+M047565
+047566
+M047566
+047567
+M047567
+047568
+M047568
+047569
+M047569
+047570
+M047570
+047571
+M047571
+047572
+M047572
+047573
+M047573
+047574
+M047574
+047575
+M047575
+047576
+M047576
+047577
+M047577
+047578
+M047578
+047579
+M047579
+047580
+M047580
+047581
+M047581
+047582
+M047582
+047583
+M047583
+047584
+M047584
+047585
+M047585
+047586
+M047586
+047587
+M047587
+047588
+M047588
+047589
+M047589
+047590
+M047590
+047591
+M047591
+047592
+M047592
+047593
+M047593
+047594
+M047594
+047595
+M047595
+047596
+M047596
+047597
+M047597
+047598
+M047598
+047599
+M047599
+047600
+M047600
+047601
+M047601
+047602
+M047602
+047603
+M047603
+047604
+M047604
+047605
+M047605
+047606
+M047606
+047607
+M047607
+047608
+M047608
+047609
+M047609
+047610
+M047610
+047611
+M047611
+047612
+M047612
+047613
+M047613
+047614
+M047614
+047615
+M047615
+047616
+M047616
+047617
+M047617
+047618
+M047618
+047619
+M047619
+047620
+M047620
+047621
+M047621
+047622
+M047622
+047623
+M047623
+047624
+M047624
+047625
+M047625
+047626
+M047626
+047627
+M047627
+047628
+M047628
+047629
+M047629
+047630
+M047630
+047631
+M047631
+047632
+M047632
+047633
+M047633
+047634
+M047634
+047635
+M047635
+047636
+M047636
+047637
+M047637
+047638
+M047638
+047639
+M047639
+047640
+M047640
+047641
+M047641
+047730
+M047730
+047731
+M047731
+047732
+M047732
+047733
+M047733
+047734
+M047734
+047735
+M047735
+047736
+M047736
+047737
+M047737
+047738
+M047738
+047739
+M047739
+047740
+M047740
+047741
+M047741
+047742
+M047742
+047743
+M047743
+047744
+M047744
+047745
+M047745
+047746
+M047746
+047747
+M047747
+047748
+M047748
+047749
+M047749
+047750
+M047750
+047751
+M047751
+047752
+M047752
+047753
+M047753
+047754
+M047754
+047755
+M047755
+047756
+M047756
+047757
+M047757
+047758
+M047758
+047759
+M047759
+047760
+M047760
+047761
+M047761
+047762
+M047762
+047763
+M047763
+047764
+M047764
+047765
+M047765
+047766
+M047766
+047767
+M047767
+047768
+M047768
+047769
+M047769
+047770
+M047770
+047771
+M047771
+047772
+M047772
+047773
+M047773
+047774
+M047774
+047775
+M047775
+047776
+M047776
+047777
+M047777
+047778
+M047778
+047779
+M047779
+047780
+M047780
+047781
+M047781
+047782
+M047782
+047783
+M047783
+047784
+M047784
+047785
+M047785
+047786
+M047786
+047787
+M047787
+047788
+M047788
+047789
+M047789
+047790
+M047790
+047791
+M047791
+047792
+M047792
+047793
+M047793
+047794
+M047794
+047795
+M047795
+047796
+M047796
+047797
+M047797
+047798
+M047798
+047799
+M047799
+047800
+M047800
+047801
+M047801
+047802
+M047802
+047803
+M047803
+047804
+M047804
+047805
+M047805
+047806
+M047806
+047807
+M047807
+047808
+M047808
+047809
+M047809
+047810
+M047810
+047811
+M047811
+047812
+M047812
+047813
+M047813
+047814
+M047814
+047815
+M047815
+047816
+M047816
+047817
+M047817
+047818
+M047818
+047819
+M047819
+047820
+M047820
+047821
+M047821
+047822
+M047822
+047823
+M047823
+047824
+M047824
+047825
+M047825
+047826
+M047826
+047827
+M047827
+047828
+M047828
+047829
+M047829
+047830
+M047830
+047831
+M047831
+047832
+M047832
+047833
+M047833
+047834
+M047834
+047835
+M047835
+047836
+M047836
+047837
+M047837
+047838
+M047838
+047839
+M047839
+047840
+M047840
+047841
+M047841
+047842
+M047842
+047843
+M047843
+047844
+M047844
+047845
+M047845
+047846
+M047846
+047847
+M047847
+047848
+M047848
+047849
+M047849
+047850
+M047850
+047851
+M047851
+047852
+M047852
+047853
+M047853
+047854
+M047854
+047855
+M047855
+047856
+M047856
+047857
+M047857
+047858
+M047858
+047859
+M047859
+047860
+M047860
+047861
+M047861
+047862
+M047862
+047863
+M047863
+047864
+M047864
+047865
+M047865
+047866
+M047866
+047867
+M047867
+047879
+M047879
+047880
+M047880
+047881
+M047881
+047882
+M047882
+047883
+M047883
+047884
+M047884
+047885
+M047885
+047886
+M047886
+047887
+M047887
+047888
+M047888
+047889
+M047889
+047890
+M047890
+047891
+M047891
+047892
+M047892
+047893
+M047893
+047894
+M047894
+047895
+M047895
+047896
+M047896
+047897
+M047897
+047898
+M047898
+047899
+M047899
+047900
+M047900
+047901
+M047901
+047902
+M047902
+047903
+M047903
+047904
+M047904
+047905
+M047905
+047906
+M047906
+047907
+M047907
+047908
+M047908
+047909
+M047909
+047910
+M047910
+047911
+M047911
+047912
+M047912
+047913
+M047913
+047914
+M047914
+047915
+M047915
+047916
+M047916
+047917
+M047917
+047918
+M047918
+047919
+M047919
+047920
+M047920
+047921
+M047921
+047931
+M047931
+047932
+M047932
+047933
+M047933
+047934
+M047934
+047935
+M047935
+047936
+M047936
+047937
+M047937
+047938
+M047938
+047939
+M047939
+047940
+M047940
+047941
+M047941
+047942
+M047942
+047943
+M047943
+047944
+M047944
+047945
+M047945
+047946
+M047946
+047947
+M047947
+047948
+M047948
+047949
+M047949
+047950
+M047950
+047951
+M047951
+047952
+M047952
+047959
+M047959
+047960
+M047960
+047961
+M047961
+047962
+M047962
+047963
+M047963
+047964
+M047964
+047965
+M047965
+047966
+M047966
+047967
+M047967
+047968
+M047968
+047969
+M047969
+047970
+M047970
+047971
+M047971
+047972
+M047972
+047973
+M047973
+047974
+M047974
+047975
+M047975
+047976
+M047976
+047977
+M047977
+047978
+M047978
+047979
+M047979
+047980
+M047980
+047981
+M047981
+047982
+M047982
+047983
+M047983
+047984
+M047984
+047985
+M047985
+047986
+M047986
+047987
+M047987
+047988
+M047988
+047989
+M047989
+047990
+M047990
+047991
+M047991
+047992
+M047992
+047993
+M047993
+047994
+M047994
+047995
+M047995
+047996
+M047996
+047997
+M047997
+047998
+M047998
+047999
+M047999
+048000
+M048000
+048001
+M048001
+048002
+M048002
+048003
+M048003
+048004
+M048004
+048005
+M048005
+048006
+M048006
+048007
+M048007
+048008
+M048008
+048009
+M048009
+048010
+M048010
+048011
+M048011
+048012
+M048012
+048013
+M048013
+048014
+M048014
+048015
+M048015
+048016
+M048016
+048017
+M048017
+048018
+M048018
+048019
+M048019
+048020
+M048020
+048021
+M048021
+048022
+M048022
+048023
+M048023
+048024
+M048024
+048025
+M048025
+048026
+M048026
+048027
+M048027
+048028
+M048028
+048029
+M048029
+048034
+M048034
+048035
+M048035
+048036
+M048036
+048037
+M048037
+048038
+M048038
+048039
+M048039
+048040
+M048040
+048041
+M048041
+048042
+M048042
+048043
+M048043
+048044
+M048044
+048045
+M048045
+048046
+M048046
+048047
+M048047
+048048
+M048048
+048049
+M048049
+048050
+M048050
+048051
+M048051
+048052
+M048052
+048053
+M048053
+048054
+M048054
+048055
+M048055
+048056
+M048056
+048057
+M048057
+048058
+M048058
+048059
+M048059
+048060
+M048060
+048061
+M048061
+048062
+M048062
+048063
+M048063
+048064
+M048064
+048065
+M048065
+048066
+M048066
+048067
+M048067
+048068
+M048068
+048069
+M048069
+048070
+M048070
+048071
+M048071
+048072
+M048072
+048073
+M048073
+048074
+M048074
+048075
+M048075
+048076
+M048076
+048077
+M048077
+048078
+M048078
+048079
+M048079
+048080
+M048080
+048081
+M048081
+048082
+M048082
+048083
+M048083
+048084
+M048084
+048085
+M048085
+048086
+M048086
+048087
+M048087
+048088
+M048088
+048089
+M048089
+048090
+M048090
+048091
+M048091
+048092
+M048092
+048093
+M048093
+048094
+M048094
+048095
+M048095
+048096
+M048096
+048097
+M048097
+048098
+M048098
+048099
+M048099
+048100
+M048100
+048101
+M048101
+048102
+M048102
+048103
+M048103
+048104
+M048104
+048105
+M048105
+048106
+M048106
+048107
+M048107
+048108
+M048108
+048109
+M048109
+048110
+M048110
+048139
+M048139
+048140
+M048140
+048141
+M048141
+048142
+M048142
+048143
+M048143
+048144
+M048144
+048145
+M048145
+048146
+M048146
+048147
+M048147
+048148
+M048148
+048149
+M048149
+048150
+M048150
+048151
+M048151
+048152
+M048152
+048153
+M048153
+048154
+M048154
+048155
+M048155
+048156
+M048156
+048157
+M048157
+048158
+M048158
+048159
+M048159
+048160
+M048160
+048161
+M048161
+048162
+M048162
+048163
+M048163
+048164
+M048164
+048165
+M048165
+048166
+M048166
+048167
+M048167
+048168
+M048168
+048169
+M048169
+048170
+M048170
+048171
+M048171
+048172
+M048172
+048173
+M048173
+048174
+M048174
+048175
+M048175
+048176
+M048176
+048177
+M048177
+048178
+M048178
+048179
+M048179
+048180
+M048180
+048181
+M048181
+048182
+M048182
+048183
+M048183
+048184
+M048184
+048185
+M048185
+048186
+M048186
+048187
+M048187
+048188
+M048188
+048189
+M048189
+048190
+M048190
+048191
+M048191
+048192
+M048192
+048193
+M048193
+048194
+M048194
+048195
+M048195
+048196
+M048196
+048197
+M048197
+048198
+M048198
+048199
+M048199
+048200
+M048200
+048201
+M048201
+048202
+M048202
+048203
+M048203
+048204
+M048204
+048205
+M048205
+048206
+M048206
+048207
+M048207
+048208
+M048208
+048209
+M048209
+048210
+M048210
+048211
+M048211
+048212
+M048212
+048213
+M048213
+048214
+M048214
+048215
+M048215
+048216
+M048216
+048217
+M048217
+048218
+M048218
+048219
+M048219
+048220
+M048220
+048221
+M048221
+048222
+M048222
+048223
+M048223
+048224
+M048224
+048225
+M048225
+048226
+M048226
+048227
+M048227
+048228
+M048228
+048229
+M048229
+048230
+M048230
+048231
+M048231
+048232
+M048232
+048233
+M048233
+048234
+M048234
+048235
+M048235
+048236
+M048236
+048237
+M048237
+048238
+M048238
+048239
+M048239
+048240
+M048240
+048241
+M048241
+048242
+M048242
+048243
+M048243
+048244
+M048244
+048245
+M048245
+048246
+M048246
+048247
+M048247
+048248
+M048248
+048249
+M048249
+048250
+M048250
+048251
+M048251
+048252
+M048252
+048253
+M048253
+048254
+M048254
+048255
+M048255
+048256
+M048256
+048257
+M048257
+048258
+M048258
+048259
+M048259
+048260
+M048260
+048261
+M048261
+048262
+M048262
+048263
+M048263
+048264
+M048264
+048265
+M048265
+048266
+M048266
+048267
+M048267
+048268
+M048268
+048269
+M048269
+048270
+M048270
+048271
+M048271
+048272
+M048272
+048273
+M048273
+048274
+M048274
+048275
+M048275
+048276
+M048276
+048277
+M048277
+048278
+M048278
+048279
+M048279
+048280
+M048280
+048281
+M048281
+048282
+M048282
+048287
+M048287
+048288
+M048288
+048289
+M048289
+048290
+M048290
+048291
+M048291
+048292
+M048292
+048293
+M048293
+048294
+M048294
+048295
+M048295
+048296
+M048296
+048297
+M048297
+048298
+M048298
+048299
+M048299
+048300
+M048300
+048301
+M048301
+048302
+M048302
+048303
+M048303
+048304
+M048304
+048305
+M048305
+048306
+M048306
+048307
+M048307
+048308
+M048308
+048309
+M048309
+048310
+M048310
+048311
+M048311
+048312
+M048312
+048313
+M048313
+048314
+M048314
+048315
+M048315
+048316
+M048316
+048317
+M048317
+048318
+M048318
+048319
+M048319
+048353
+M048353
+048354
+M048354
+048355
+M048355
+048356
+M048356
+048357
+M048357
+048358
+M048358
+048359
+M048359
+048360
+M048360
+048361
+M048361
+048362
+M048362
+048363
+M048363
+048364
+M048364
+048365
+M048365
+048366
+M048366
+048367
+M048367
+048368
+M048368
+048369
+M048369
+048370
+M048370
+048371
+M048371
+048372
+M048372
+048373
+M048373
+048374
+M048374
+048375
+M048375
+048376
+M048376
+048377
+M048377
+048378
+M048378
+048379
+M048379
+048385
+M048385
+048386
+M048386
+048387
+M048387
+048388
+M048388
+048389
+M048389
+048390
+M048390
+048391
+M048391
+048392
+M048392
+048393
+M048393
+048394
+M048394
+048395
+M048395
+048396
+M048396
+048397
+M048397
+048398
+M048398
+048399
+M048399
+048400
+M048400
+048401
+M048401
+048402
+M048402
+048403
+M048403
+048404
+M048404
+048405
+M048405
+048406
+M048406
+048407
+M048407
+048408
+M048408
+048409
+M048409
+048410
+M048410
+048411
+M048411
+048412
+M048412
+048413
+M048413
+048414
+M048414
+048415
+M048415
+048416
+M048416
+048417
+M048417
+048418
+M048418
+048419
+M048419
+048420
+M048420
+048421
+M048421
+048422
+M048422
+048423
+M048423
+048424
+M048424
+048425
+M048425
+048426
+M048426
+048427
+M048427
+048428
+M048428
+048429
+M048429
+048430
+M048430
+048431
+M048431
+048432
+M048432
+048433
+M048433
+048434
+M048434
+048435
+M048435
+048436
+M048436
+048437
+M048437
+048438
+M048438
+048439
+M048439
+048440
+M048440
+048441
+M048441
+048442
+M048442
+048443
+M048443
+048444
+M048444
+048445
+M048445
+048446
+M048446
+048447
+M048447
+048448
+M048448
+048449
+M048449
+048450
+M048450
+048451
+M048451
+048452
+M048452
+048453
+M048453
+048454
+M048454
+048455
+M048455
+048456
+M048456
+048457
+M048457
+048458
+M048458
+048459
+M048459
+048460
+M048460
+048461
+M048461
+048462
+M048462
+048463
+M048463
+048464
+M048464
+048465
+M048465
+048466
+M048466
+048467
+M048467
+048468
+M048468
+048469
+M048469
+048470
+M048470
+048471
+M048471
+048472
+M048472
+048473
+M048473
+048476
+M048476
+048477
+M048477
+048478
+M048478
+048479
+M048479
+048480
+M048480
+048481
+M048481
+048482
+M048482
+048483
+M048483
+048484
+M048484
+048485
+M048485
+048486
+M048486
+048487
+M048487
+048488
+M048488
+048490
+M048490
+048491
+M048491
+048492
+M048492
+048493
+M048493
+048494
+M048494
+048495
+M048495
+048496
+M048496
+048497
+M048497
+048498
+M048498
+048499
+M048499
+048500
+M048500
+048501
+M048501
+048508
+M048508
+048509
+M048509
+048510
+M048510
+048511
+M048511
+048512
+M048512
+048513
+M048513
+048514
+M048514
+048515
+M048515
+048516
+M048516
+048517
+M048517
+048518
+M048518
+048519
+M048519
+048520
+M048520
+048521
+M048521
+048522
+M048522
+048523
+M048523
+048524
+M048524
+048525
+M048525
+048526
+M048526
+048527
+M048527
+048528
+M048528
+048529
+M048529
+048530
+M048530
+048531
+M048531
+048532
+M048532
+048533
+M048533
+048534
+M048534
+048535
+M048535
+048536
+M048536
+048537
+M048537
+048538
+M048538
+048539
+M048539
+048540
+M048540
+048541
+M048541
+048542
+M048542
+048543
+M048543
+048544
+M048544
+048545
+M048545
+048546
+M048546
+048547
+M048547
+048548
+M048548
+048549
+M048549
+048550
+M048550
+048551
+M048551
+048552
+M048552
+048553
+M048553
+048554
+M048554
+048555
+M048555
+048556
+M048556
+048557
+M048557
+048558
+M048558
+048559
+M048559
+048560
+M048560
+048561
+M048561
+048562
+M048562
+048563
+M048563
+048564
+M048564
+048565
+M048565
+048566
+M048566
+048567
+M048567
+048568
+M048568
+048569
+M048569
+048570
+M048570
+048571
+M048571
+048572
+M048572
+048573
+M048573
+048574
+M048574
+048575
+M048575
+048576
+M048576
+048577
+M048577
+048578
+M048578
+048579
+M048579
+048580
+M048580
+048581
+M048581
+048582
+M048582
+048583
+M048583
+048584
+M048584
+048585
+M048585
+048586
+M048586
+048587
+M048587
+048588
+M048588
+048589
+M048589
+048590
+M048590
+048591
+M048591
+048592
+M048592
+048593
+M048593
+048594
+M048594
+048595
+M048595
+048596
+M048596
+048597
+M048597
+048598
+M048598
+048599
+M048599
+048600
+M048600
+048601
+M048601
+048602
+M048602
+048603
+M048603
+048604
+M048604
+048605
+M048605
+048606
+M048606
+048607
+M048607
+048608
+M048608
+048609
+M048609
+048610
+M048610
+048611
+M048611
+048612
+M048612
+048613
+M048613
+048614
+M048614
+048615
+M048615
+048616
+M048616
+048617
+M048617
+048618
+M048618
+048619
+M048619
+048620
+M048620
+048621
+M048621
+048622
+M048622
+048623
+M048623
+048624
+M048624
+048625
+M048625
+048626
+M048626
+048627
+M048627
+048628
+M048628
+048629
+M048629
+048630
+M048630
+048631
+M048631
+048632
+M048632
+048633
+M048633
+048634
+M048634
+048635
+M048635
+048636
+M048636
+048637
+M048637
+048638
+M048638
+048639
+M048639
+048640
+M048640
+048641
+M048641
+048642
+M048642
+048643
+M048643
+048644
+M048644
+048672
+M048672
+048673
+M048673
+048674
+M048674
+048675
+M048675
+048676
+M048676
+048677
+M048677
+048678
+M048678
+048679
+M048679
+048680
+M048680
+048682
+M048682
+048683
+M048683
+048684
+M048684
+048685
+M048685
+048686
+M048686
+048687
+M048687
+048688
+M048688
+048689
+M048689
+048690
+M048690
+048691
+M048691
+048692
+M048692
+048693
+M048693
+048694
+M048694
+048695
+M048695
+048696
+M048696
+048697
+M048697
+048723
+M048723
+048724
+M048724
+048725
+M048725
+048726
+M048726
+048727
+M048727
+048728
+M048728
+048729
+M048729
+048730
+M048730
+048731
+M048731
+048738
+M048738
+048739
+M048739
+048740
+M048740
+048741
+M048741
+048742
+M048742
+048743
+M048743
+048744
+M048744
+048745
+M048745
+048746
+M048746
+048747
+M048747
+048748
+M048748
+048749
+M048749
+048750
+M048750
+048751
+M048751
+048752
+M048752
+048753
+M048753
+048754
+M048754
+048755
+M048755
+048756
+M048756
+048757
+M048757
+048758
+M048758
+048759
+M048759
+048760
+M048760
+048761
+M048761
+048762
+M048762
+048763
+M048763
+048764
+M048764
+048765
+M048765
+048766
+M048766
+048767
+M048767
+048768
+M048768
+048769
+M048769
+048770
+M048770
+048771
+M048771
+048772
+M048772
+048773
+M048773
+048774
+M048774
+048775
+M048775
+048776
+M048776
+048777
+M048777
+048778
+M048778
+048779
+M048779
+048780
+M048780
+048781
+M048781
+048782
+M048782
+048783
+M048783
+048784
+M048784
+048785
+M048785
+048786
+M048786
+048787
+M048787
+048788
+M048788
+048789
+M048789
+048790
+M048790
+048791
+M048791
+048792
+M048792
+048793
+M048793
+048794
+M048794
+048795
+M048795
+048796
+M048796
+048797
+M048797
+048798
+M048798
+048799
+M048799
+048800
+M048800
+048801
+M048801
+048802
+M048802
+048803
+M048803
+048804
+M048804
+048805
+M048805
+048806
+M048806
+048807
+M048807
+048808
+M048808
+048809
+M048809
+048810
+M048810
+048811
+M048811
+048812
+M048812
+048813
+M048813
+048814
+M048814
+048815
+M048815
+048816
+M048816
+048817
+M048817
+048818
+M048818
+048819
+M048819
+048820
+M048820
+048821
+M048821
+048822
+M048822
+048823
+M048823
+048824
+M048824
+048825
+M048825
+048826
+M048826
+048827
+M048827
+048828
+M048828
+048829
+M048829
+048830
+M048830
+048831
+M048831
+048832
+M048832
+048833
+M048833
+048834
+M048834
+048835
+M048835
+048836
+M048836
+048837
+M048837
+048838
+M048838
+048839
+M048839
+048840
+M048840
+048841
+M048841
+048842
+M048842
+048843
+M048843
+048844
+M048844
+048845
+M048845
+048846
+M048846
+048847
+M048847
+048848
+M048848
+048849
+M048849
+048850
+M048850
+048851
+M048851
+048852
+M048852
+048853
+M048853
+048854
+M048854
+048855
+M048855
+048856
+M048856
+048857
+M048857
+048858
+M048858
+048859
+M048859
+048860
+M048860
+048861
+M048861
+048862
+M048862
+048863
+M048863
+048864
+M048864
+048865
+M048865
+048866
+M048866
+048867
+M048867
+048868
+M048868
+048869
+M048869
+048870
+M048870
+048871
+M048871
+048872
+M048872
+048873
+M048873
+048874
+M048874
+048875
+M048875
+048876
+M048876
+048877
+M048877
+048878
+M048878
+048879
+M048879
+048880
+M048880
+048895
+M048895
+048896
+M048896
+048904
+M048904
+048905
+M048905
+048906
+M048906
+048907
+M048907
+048913
+M048913
+048914
+M048914
+048915
+M048915
+048916
+M048916
+048917
+M048917
+048918
+M048918
+048919
+M048919
+048920
+M048920
+048921
+M048921
+048922
+M048922
+048923
+M048923
+048924
+M048924
+048925
+M048925
+048926
+M048926
+048927
+M048927
+048928
+M048928
+048929
+M048929
+048930
+M048930
+048931
+M048931
+048932
+M048932
+048933
+M048933
+048934
+M048934
+048935
+M048935
+048936
+M048936
+048937
+M048937
+048938
+M048938
+048939
+M048939
+048940
+M048940
+048941
+M048941
+048942
+M048942
+048943
+M048943
+048944
+M048944
+048945
+M048945
+048946
+M048946
+048947
+M048947
+048948
+M048948
+048949
+M048949
+048950
+M048950
+048951
+M048951
+048952
+M048952
+048953
+M048953
+048954
+M048954
+048955
+M048955
+048956
+M048956
+048957
+M048957
+048958
+M048958
+048959
+M048959
+048960
+M048960
+048961
+M048961
+048962
+M048962
+048968
+M048968
+048969
+M048969
+048970
+M048970
+048971
+M048971
+048972
+M048972
+048973
+M048973
+048974
+M048974
+048975
+M048975
+048976
+M048976
+048977
+M048977
+048978
+M048978
+048979
+M048979
+048980
+M048980
+048981
+M048981
+048982
+M048982
+048983
+M048983
+048984
+M048984
+048985
+M048985
+048986
+M048986
+048987
+M048987
+048988
+M048988
+048989
+M048989
+048990
+M048990
+048991
+M048991
+048992
+M048992
+048993
+M048993
+048994
+M048994
+048995
+M048995
+048996
+M048996
+048997
+M048997
+049005
+M049005
+049006
+M049006
+049007
+M049007
+049008
+M049008
+049009
+M049009
+049010
+M049010
+049011
+M049011
+049012
+M049012
+049013
+M049013
+049014
+M049014
+049015
+M049015
+049016
+M049016
+049017
+M049017
+049018
+M049018
+049019
+M049019
+049020
+M049020
+049021
+M049021
+049022
+M049022
+049023
+M049023
+049024
+M049024
+049025
+M049025
+049026
+M049026
+049027
+M049027
+049028
+M049028
+049029
+M049029
+049030
+M049030
+049031
+M049031
+049032
+M049032
+049033
+M049033
+049034
+M049034
+049035
+M049035
+049036
+M049036
+049037
+M049037
+049038
+M049038
+049039
+M049039
+049040
+M049040
+049041
+M049041
+049042
+M049042
+049043
+M049043
+049044
+M049044
+049045
+M049045
+049046
+M049046
+049047
+M049047
+049048
+M049048
+049049
+M049049
+049050
+M049050
+049051
+M049051
+049052
+M049052
+049053
+M049053
+049054
+M049054
+049055
+M049055
+049056
+M049056
+049057
+M049057
+049058
+M049058
+049059
+M049059
+049060
+M049060
+049061
+M049061
+049062
+M049062
+049063
+M049063
+049064
+M049064
+049065
+M049065
+049066
+M049066
+049067
+M049067
+049068
+M049068
+049069
+M049069
+049070
+M049070
+049071
+M049071
+049072
+M049072
+049073
+M049073
+049074
+M049074
+049075
+M049075
+049076
+M049076
+049077
+M049077
+049078
+M049078
+049079
+M049079
+049080
+M049080
+049081
+M049081
+049082
+M049082
+049083
+M049083
+049084
+M049084
+049085
+M049085
+049086
+M049086
+049087
+M049087
+049088
+M049088
+049089
+M049089
+049090
+M049090
+049091
+M049091
+049092
+M049092
+049093
+M049093
+049094
+M049094
+049095
+M049095
+049096
+M049096
+049097
+M049097
+049098
+M049098
+049099
+M049099
+049100
+M049100
+049101
+M049101
+049102
+M049102
+049103
+M049103
+049104
+M049104
+049105
+M049105
+049106
+M049106
+049107
+M049107
+049108
+M049108
+049109
+M049109
+049110
+M049110
+049111
+M049111
+049112
+M049112
+049113
+M049113
+049114
+M049114
+049115
+M049115
+049116
+M049116
+049117
+M049117
+049118
+M049118
+049119
+M049119
+049120
+M049120
+049121
+M049121
+049122
+M049122
+049123
+M049123
+049124
+M049124
+049125
+M049125
+049126
+M049126
+049127
+M049127
+049128
+M049128
+049129
+M049129
+049130
+M049130
+049131
+M049131
+049132
+M049132
+049133
+M049133
+049134
+M049134
+049135
+M049135
+049136
+M049136
+049137
+M049137
+049138
+M049138
+049139
+M049139
+049140
+M049140
+049141
+M049141
+049142
+M049142
+049143
+M049143
+049144
+M049144
+049145
+M049145
+049146
+M049146
+049147
+M049147
+049148
+M049148
+049149
+M049149
+049150
+M049150
+049151
+M049151
+049152
+M049152
+049153
+M049153
+049154
+M049154
+049155
+M049155
+049156
+M049156
+049157
+M049157
+049158
+M049158
+049159
+M049159
+049160
+M049160
+049161
+M049161
+049162
+M049162
+049163
+M049163
+049164
+M049164
+049165
+M049165
+049166
+M049166
+049167
+M049167
+049168
+M049168
+049169
+M049169
+049170
+M049170
+049171
+M049171
+049172
+M049172
+049173
+M049173
+049174
+M049174
+049175
+M049175
+049176
+M049176
+049177
+M049177
+049178
+M049178
+049187
+M049187
+049188
+M049188
+049189
+M049189
+049190
+M049190
+049191
+M049191
+049192
+M049192
+049193
+M049193
+049194
+M049194
+049195
+M049195
+049202
+M049202
+049203
+M049203
+049204
+M049204
+049205
+M049205
+049206
+M049206
+049216
+M049216
+049217
+M049217
+049218
+M049218
+049219
+M049219
+049220
+M049220
+049221
+M049221
+049222
+M049222
+049223
+M049223
+049224
+M049224
+049225
+M049225
+049226
+M049226
+049227
+M049227
+049228
+M049228
+049229
+M049229
+049230
+M049230
+049231
+M049231
+049232
+M049232
+049233
+M049233
+049234
+M049234
+049235
+M049235
+049236
+M049236
+049237
+M049237
+049238
+M049238
+049239
+M049239
+049240
+M049240
+049241
+M049241
+049242
+M049242
+049243
+M049243
+049244
+M049244
+049245
+M049245
+049246
+M049246
+049247
+M049247
+049248
+M049248
+049249
+M049249
+049250
+M049250
+049251
+M049251
+049252
+M049252
+049253
+M049253
+049254
+M049254
+049255
+M049255
+049256
+M049256
+049257
+M049257
+049258
+M049258
+049259
+M049259
+049260
+M049260
+049261
+M049261
+049262
+M049262
+049263
+M049263
+049264
+M049264
+049265
+M049265
+049266
+M049266
+049267
+M049267
+049268
+M049268
+049269
+M049269
+049270
+M049270
+049271
+M049271
+049272
+M049272
+049273
+M049273
+049274
+M049274
+049275
+M049275
+049276
+M049276
+049277
+M049277
+049278
+M049278
+049279
+M049279
+049280
+M049280
+049281
+M049281
+049282
+M049282
+049283
+M049283
+049284
+M049284
+049285
+M049285
+049286
+M049286
+049287
+M049287
+049288
+M049288
+049289
+M049289
+049290
+M049290
+049291
+M049291
+049292
+M049292
+049293
+M049293
+049294
+M049294
+049295
+M049295
+049296
+M049296
+049297
+M049297
+049298
+M049298
+049299
+M049299
+049300
+M049300
+049301
+M049301
+049302
+M049302
+049303
+M049303
+049304
+M049304
+049305
+M049305
+049306
+M049306
+049307
+M049307
+049308
+M049308
+049309
+M049309
+049310
+M049310
+049311
+M049311
+049312
+M049312
+049313
+M049313
+049314
+M049314
+049315
+M049315
+049316
+M049316
+049317
+M049317
+049318
+M049318
+049319
+M049319
+049320
+M049320
+049321
+M049321
+049322
+M049322
+049323
+M049323
+049324
+M049324
+049325
+M049325
+049326
+M049326
+049327
+M049327
+049335
+M049335
+049336
+M049336
+049337
+M049337
+049338
+M049338
+049339
+M049339
+049340
+M049340
+049341
+M049341
+049342
+M049342
\ No newline at end of file
diff --git a/babel_272/split/val.txt b/babel_272/split/val.txt
new file mode 100644
index 0000000000000000000000000000000000000000..caad3819fa324b07b9dd462bbb2acb4c28e941e4
--- /dev/null
+++ b/babel_272/split/val.txt
@@ -0,0 +1,26482 @@
+000107
+M000107
+000108
+M000108
+000109
+M000109
+000110
+M000110
+000111
+M000111
+000112
+M000112
+000113
+M000113
+000114
+M000114
+000115
+M000115
+000116
+M000116
+000117
+M000117
+000118
+M000118
+000119
+M000119
+000120
+M000120
+000121
+M000121
+000122
+M000122
+000123
+M000123
+000148
+M000148
+000149
+M000149
+000150
+M000150
+000151
+M000151
+000152
+M000152
+000153
+M000153
+000154
+M000154
+000155
+M000155
+000156
+M000156
+000157
+M000157
+000158
+M000158
+000159
+M000159
+000160
+M000160
+000191
+M000191
+000192
+M000192
+000275
+M000275
+000276
+M000276
+000277
+M000277
+000278
+M000278
+000279
+M000279
+000295
+M000295
+000296
+M000296
+000297
+M000297
+000298
+M000298
+000299
+M000299
+000300
+M000300
+000301
+M000301
+000302
+M000302
+000303
+M000303
+000304
+M000304
+000305
+M000305
+000306
+M000306
+000307
+M000307
+000385
+M000385
+000386
+M000386
+000387
+M000387
+000388
+M000388
+000389
+M000389
+000390
+M000390
+000391
+M000391
+000392
+M000392
+000420
+M000420
+000421
+M000421
+000422
+M000422
+000423
+M000423
+000424
+M000424
+000425
+M000425
+000426
+M000426
+000427
+M000427
+000428
+M000428
+000429
+M000429
+000430
+M000430
+000431
+M000431
+000465
+M000465
+000466
+M000466
+000467
+M000467
+000468
+M000468
+000469
+M000469
+000470
+M000470
+000504
+M000504
+000505
+M000505
+000506
+M000506
+000507
+M000507
+000508
+M000508
+000515
+M000515
+000516
+M000516
+000517
+M000517
+000518
+M000518
+000519
+M000519
+000520
+M000520
+000542
+M000542
+000543
+M000543
+000544
+M000544
+000545
+M000545
+000546
+M000546
+000547
+M000547
+000548
+M000548
+000549
+M000549
+000550
+M000550
+000551
+M000551
+000552
+M000552
+000553
+M000553
+000554
+M000554
+000555
+M000555
+000556
+M000556
+000557
+M000557
+000558
+M000558
+000568
+M000568
+000569
+M000569
+000570
+M000570
+000571
+M000571
+000572
+M000572
+000573
+M000573
+000574
+M000574
+000575
+M000575
+000576
+M000576
+000577
+M000577
+000578
+M000578
+000579
+M000579
+000580
+M000580
+000581
+M000581
+000582
+M000582
+000583
+M000583
+000584
+M000584
+000585
+M000585
+000586
+M000586
+000587
+M000587
+000588
+M000588
+000589
+M000589
+000590
+M000590
+000591
+M000591
+000592
+M000592
+000593
+M000593
+000594
+M000594
+000595
+M000595
+000596
+M000596
+000597
+M000597
+000598
+M000598
+000615
+M000615
+000616
+M000616
+000617
+M000617
+000618
+M000618
+000619
+M000619
+000620
+M000620
+000621
+M000621
+000622
+M000622
+000623
+M000623
+000624
+M000624
+000625
+M000625
+000626
+M000626
+000627
+M000627
+000628
+M000628
+000629
+M000629
+000630
+M000630
+000631
+M000631
+000632
+M000632
+000633
+M000633
+000634
+M000634
+000635
+M000635
+000636
+M000636
+000637
+M000637
+000638
+M000638
+000639
+M000639
+000640
+M000640
+000641
+M000641
+000731
+M000731
+000732
+M000732
+000733
+M000733
+000734
+M000734
+000735
+M000735
+000736
+M000736
+000745
+M000745
+000746
+M000746
+000747
+M000747
+000748
+M000748
+000749
+M000749
+000750
+M000750
+000839
+M000839
+000840
+M000840
+000841
+M000841
+000842
+M000842
+000843
+M000843
+000844
+M000844
+000845
+M000845
+000846
+M000846
+000847
+M000847
+000848
+M000848
+000849
+M000849
+000850
+M000850
+000851
+M000851
+000852
+M000852
+000853
+M000853
+000913
+M000913
+000914
+M000914
+000945
+M000945
+000946
+M000946
+000947
+M000947
+000948
+M000948
+000949
+M000949
+000950
+M000950
+000951
+M000951
+000952
+M000952
+000953
+M000953
+000954
+M000954
+000955
+M000955
+001022
+M001022
+001023
+M001023
+001024
+M001024
+001025
+M001025
+001026
+M001026
+001049
+M001049
+001050
+M001050
+001051
+M001051
+001052
+M001052
+001053
+M001053
+001054
+M001054
+001055
+M001055
+001056
+M001056
+001057
+M001057
+001095
+M001095
+001096
+M001096
+001097
+M001097
+001098
+M001098
+001099
+M001099
+001100
+M001100
+001101
+M001101
+001102
+M001102
+001103
+M001103
+001104
+M001104
+001105
+M001105
+001106
+M001106
+001107
+M001107
+001108
+M001108
+001109
+M001109
+001110
+M001110
+001111
+M001111
+001112
+M001112
+001113
+M001113
+001114
+M001114
+001115
+M001115
+001116
+M001116
+001117
+M001117
+001118
+M001118
+001119
+M001119
+001120
+M001120
+001121
+M001121
+001122
+M001122
+001123
+M001123
+001208
+M001208
+001209
+M001209
+001210
+M001210
+001211
+M001211
+001212
+M001212
+001213
+M001213
+001214
+M001214
+001215
+M001215
+001216
+M001216
+001217
+M001217
+001218
+M001218
+001219
+M001219
+001220
+M001220
+001221
+M001221
+001222
+M001222
+001223
+M001223
+001229
+M001229
+001230
+M001230
+001231
+M001231
+001232
+M001232
+001233
+M001233
+001234
+M001234
+001235
+M001235
+001236
+M001236
+001237
+M001237
+001284
+M001284
+001285
+M001285
+001286
+M001286
+001287
+M001287
+001288
+M001288
+001289
+M001289
+001301
+M001301
+001302
+M001302
+001303
+M001303
+001304
+M001304
+001305
+M001305
+001306
+M001306
+001307
+M001307
+001308
+M001308
+001309
+M001309
+001310
+M001310
+001311
+M001311
+001312
+M001312
+001313
+M001313
+001314
+M001314
+001315
+M001315
+001316
+M001316
+001317
+M001317
+001318
+M001318
+001319
+M001319
+001320
+M001320
+001321
+M001321
+001322
+M001322
+001323
+M001323
+001324
+M001324
+001325
+M001325
+001326
+M001326
+001327
+M001327
+001328
+M001328
+001329
+M001329
+001330
+M001330
+001366
+M001366
+001367
+M001367
+001368
+M001368
+001369
+M001369
+001370
+M001370
+001371
+M001371
+001399
+M001399
+001400
+M001400
+001401
+M001401
+001402
+M001402
+001403
+M001403
+001404
+M001404
+001405
+M001405
+001406
+M001406
+001407
+M001407
+001408
+M001408
+001409
+M001409
+001410
+M001410
+001411
+M001411
+001412
+M001412
+001413
+M001413
+001414
+M001414
+001415
+M001415
+001416
+M001416
+001417
+M001417
+001418
+M001418
+001419
+M001419
+001437
+M001437
+001438
+M001438
+001439
+M001439
+001440
+M001440
+001441
+M001441
+001442
+M001442
+001443
+M001443
+001444
+M001444
+001445
+M001445
+001446
+M001446
+001447
+M001447
+001448
+M001448
+001449
+M001449
+001450
+M001450
+001451
+M001451
+001452
+M001452
+001453
+M001453
+001467
+M001467
+001468
+M001468
+001469
+M001469
+001470
+M001470
+001471
+M001471
+001472
+M001472
+001493
+M001493
+001494
+M001494
+001495
+M001495
+001496
+M001496
+001497
+M001497
+001498
+M001498
+001499
+M001499
+001500
+M001500
+001501
+M001501
+001546
+M001546
+001547
+M001547
+001548
+M001548
+001549
+M001549
+001550
+M001550
+001551
+M001551
+001552
+M001552
+001553
+M001553
+001554
+M001554
+001555
+M001555
+001556
+M001556
+001561
+M001561
+001562
+M001562
+001563
+M001563
+001564
+M001564
+001565
+M001565
+001566
+M001566
+001567
+M001567
+001568
+M001568
+001569
+M001569
+001570
+M001570
+001571
+M001571
+001572
+M001572
+001573
+M001573
+001574
+M001574
+001575
+M001575
+001576
+M001576
+001577
+M001577
+001578
+M001578
+001579
+M001579
+001580
+M001580
+001581
+M001581
+001582
+M001582
+001583
+M001583
+001584
+M001584
+001585
+M001585
+001586
+M001586
+001587
+M001587
+001588
+M001588
+001589
+M001589
+001590
+M001590
+001591
+M001591
+001592
+M001592
+001593
+M001593
+001594
+M001594
+001595
+M001595
+001596
+M001596
+001597
+M001597
+001598
+M001598
+001599
+M001599
+001600
+M001600
+001601
+M001601
+001602
+M001602
+001603
+M001603
+001604
+M001604
+001605
+M001605
+001606
+M001606
+001607
+M001607
+001608
+M001608
+001609
+M001609
+001610
+M001610
+001611
+M001611
+001612
+M001612
+001613
+M001613
+001614
+M001614
+001615
+M001615
+001616
+M001616
+001617
+M001617
+001618
+M001618
+001619
+M001619
+001620
+M001620
+001621
+M001621
+001622
+M001622
+001623
+M001623
+001624
+M001624
+001625
+M001625
+001626
+M001626
+001627
+M001627
+001628
+M001628
+001629
+M001629
+001630
+M001630
+001631
+M001631
+001632
+M001632
+001633
+M001633
+001634
+M001634
+001635
+M001635
+001636
+M001636
+001637
+M001637
+001638
+M001638
+001639
+M001639
+001640
+M001640
+001641
+M001641
+001642
+M001642
+001643
+M001643
+001644
+M001644
+001645
+M001645
+001663
+M001663
+001664
+M001664
+001665
+M001665
+001666
+M001666
+001667
+M001667
+001668
+M001668
+001762
+M001762
+001763
+M001763
+001764
+M001764
+001765
+M001765
+001766
+M001766
+001911
+M001911
+001912
+M001912
+001913
+M001913
+001914
+M001914
+001915
+M001915
+001916
+M001916
+001917
+M001917
+001918
+M001918
+001919
+M001919
+001920
+M001920
+001921
+M001921
+001922
+M001922
+001923
+M001923
+001924
+M001924
+001925
+M001925
+001926
+M001926
+001927
+M001927
+002030
+M002030
+002031
+M002031
+002032
+M002032
+002033
+M002033
+002034
+M002034
+002035
+M002035
+002036
+M002036
+002037
+M002037
+002038
+M002038
+002039
+M002039
+002040
+M002040
+002041
+M002041
+002042
+M002042
+002043
+M002043
+002044
+M002044
+002045
+M002045
+002046
+M002046
+002047
+M002047
+002048
+M002048
+002049
+M002049
+002050
+M002050
+002051
+M002051
+002052
+M002052
+002053
+M002053
+002054
+M002054
+002055
+M002055
+002056
+M002056
+002057
+M002057
+002058
+M002058
+002059
+M002059
+002060
+M002060
+002061
+M002061
+002062
+M002062
+002063
+M002063
+002064
+M002064
+002065
+M002065
+002066
+M002066
+002067
+M002067
+002068
+M002068
+002069
+M002069
+002070
+M002070
+002071
+M002071
+002072
+M002072
+002073
+M002073
+002074
+M002074
+002075
+M002075
+002076
+M002076
+002077
+M002077
+002078
+M002078
+002079
+M002079
+002080
+M002080
+002081
+M002081
+002082
+M002082
+002083
+M002083
+002084
+M002084
+002085
+M002085
+002086
+M002086
+002087
+M002087
+002088
+M002088
+002089
+M002089
+002090
+M002090
+002091
+M002091
+002092
+M002092
+002093
+M002093
+002094
+M002094
+002095
+M002095
+002096
+M002096
+002097
+M002097
+002098
+M002098
+002099
+M002099
+002100
+M002100
+002101
+M002101
+002102
+M002102
+002103
+M002103
+002104
+M002104
+002105
+M002105
+002116
+M002116
+002117
+M002117
+002118
+M002118
+002119
+M002119
+002120
+M002120
+002121
+M002121
+002122
+M002122
+002123
+M002123
+002124
+M002124
+002125
+M002125
+002126
+M002126
+002127
+M002127
+002128
+M002128
+002129
+M002129
+002130
+M002130
+002131
+M002131
+002132
+M002132
+002133
+M002133
+002134
+M002134
+002135
+M002135
+002136
+M002136
+002137
+M002137
+002138
+M002138
+002174
+M002174
+002175
+M002175
+002176
+M002176
+002190
+M002190
+002191
+M002191
+002192
+M002192
+002193
+M002193
+002194
+M002194
+002195
+M002195
+002196
+M002196
+002197
+M002197
+002198
+M002198
+002202
+M002202
+002203
+M002203
+002204
+M002204
+002205
+M002205
+002206
+M002206
+002278
+M002278
+002279
+M002279
+002280
+M002280
+002352
+M002352
+002353
+M002353
+002354
+M002354
+002355
+M002355
+002356
+M002356
+002357
+M002357
+002358
+M002358
+002359
+M002359
+002360
+M002360
+002361
+M002361
+002362
+M002362
+002363
+M002363
+002364
+M002364
+002365
+M002365
+002366
+M002366
+002367
+M002367
+002368
+M002368
+002369
+M002369
+002370
+M002370
+002371
+M002371
+002372
+M002372
+002373
+M002373
+002374
+M002374
+002375
+M002375
+002376
+M002376
+002377
+M002377
+002378
+M002378
+002379
+M002379
+002380
+M002380
+002381
+M002381
+002423
+M002423
+002424
+M002424
+002425
+M002425
+002426
+M002426
+002427
+M002427
+002428
+M002428
+002429
+M002429
+002430
+M002430
+002431
+M002431
+002447
+M002447
+002448
+M002448
+002449
+M002449
+002450
+M002450
+002451
+M002451
+002452
+M002452
+002453
+M002453
+002454
+M002454
+002455
+M002455
+002456
+M002456
+002457
+M002457
+002458
+M002458
+002459
+M002459
+002460
+M002460
+002461
+M002461
+002462
+M002462
+002463
+M002463
+002464
+M002464
+002465
+M002465
+002466
+M002466
+002467
+M002467
+002567
+M002567
+002568
+M002568
+002569
+M002569
+002570
+M002570
+002571
+M002571
+002572
+M002572
+002573
+M002573
+002574
+M002574
+002575
+M002575
+002576
+M002576
+002626
+M002626
+002627
+M002627
+002628
+M002628
+002642
+M002642
+002643
+M002643
+002644
+M002644
+002645
+M002645
+002646
+M002646
+002647
+M002647
+002648
+M002648
+002694
+M002694
+002695
+M002695
+002696
+M002696
+002697
+M002697
+002698
+M002698
+002699
+M002699
+002700
+M002700
+002701
+M002701
+002702
+M002702
+002704
+M002704
+002705
+M002705
+002706
+M002706
+002707
+M002707
+002708
+M002708
+002709
+M002709
+002710
+M002710
+002711
+M002711
+002712
+M002712
+002713
+M002713
+002714
+M002714
+002715
+M002715
+002716
+M002716
+002717
+M002717
+002718
+M002718
+002719
+M002719
+002727
+M002727
+002728
+M002728
+002729
+M002729
+002730
+M002730
+002731
+M002731
+002732
+M002732
+002733
+M002733
+002750
+M002750
+002751
+M002751
+002752
+M002752
+002753
+M002753
+002754
+M002754
+002755
+M002755
+002756
+M002756
+002757
+M002757
+002758
+M002758
+002759
+M002759
+002760
+M002760
+002761
+M002761
+002762
+M002762
+002763
+M002763
+002764
+M002764
+002775
+M002775
+002776
+M002776
+002777
+M002777
+002778
+M002778
+002779
+M002779
+002780
+M002780
+002781
+M002781
+002782
+M002782
+002783
+M002783
+002784
+M002784
+002785
+M002785
+002786
+M002786
+002787
+M002787
+002788
+M002788
+002789
+M002789
+002790
+M002790
+002791
+M002791
+002807
+M002807
+002808
+M002808
+002809
+M002809
+002810
+M002810
+002811
+M002811
+002812
+M002812
+002825
+M002825
+002826
+M002826
+002827
+M002827
+002874
+M002874
+002875
+M002875
+002876
+M002876
+002877
+M002877
+002878
+M002878
+002879
+M002879
+002880
+M002880
+002881
+M002881
+002882
+M002882
+002883
+M002883
+002884
+M002884
+002927
+M002927
+002928
+M002928
+002929
+M002929
+002930
+M002930
+002931
+M002931
+002932
+M002932
+002933
+M002933
+002934
+M002934
+002935
+M002935
+002936
+M002936
+002937
+M002937
+002938
+M002938
+002939
+M002939
+002940
+M002940
+002941
+M002941
+002942
+M002942
+002943
+M002943
+002944
+M002944
+002945
+M002945
+002946
+M002946
+002947
+M002947
+002948
+M002948
+002949
+M002949
+002950
+M002950
+002951
+M002951
+002952
+M002952
+002953
+M002953
+002954
+M002954
+002955
+M002955
+002956
+M002956
+002957
+M002957
+002958
+M002958
+002971
+M002971
+002972
+M002972
+002973
+M002973
+002974
+M002974
+002975
+M002975
+002976
+M002976
+002977
+M002977
+002978
+M002978
+002979
+M002979
+002980
+M002980
+002981
+M002981
+002982
+M002982
+002983
+M002983
+002984
+M002984
+002985
+M002985
+002986
+M002986
+002987
+M002987
+002988
+M002988
+002989
+M002989
+002990
+M002990
+002991
+M002991
+002992
+M002992
+003006
+M003006
+003007
+M003007
+003008
+M003008
+003009
+M003009
+003010
+M003010
+003011
+M003011
+003012
+M003012
+003027
+M003027
+003028
+M003028
+003029
+M003029
+003030
+M003030
+003050
+M003050
+003051
+M003051
+003052
+M003052
+003053
+M003053
+003054
+M003054
+003055
+M003055
+003062
+M003062
+003063
+M003063
+003064
+M003064
+003065
+M003065
+003066
+M003066
+003077
+M003077
+003078
+M003078
+003079
+M003079
+003080
+M003080
+003081
+M003081
+003082
+M003082
+003083
+M003083
+003084
+M003084
+003085
+M003085
+003134
+M003134
+003135
+M003135
+003136
+M003136
+003137
+M003137
+003138
+M003138
+003139
+M003139
+003140
+M003140
+003141
+M003141
+003214
+M003214
+003215
+M003215
+003216
+M003216
+003217
+M003217
+003218
+M003218
+003250
+M003250
+003251
+M003251
+003252
+M003252
+003253
+M003253
+003254
+M003254
+003255
+M003255
+003256
+M003256
+003257
+M003257
+003258
+M003258
+003259
+M003259
+003260
+M003260
+003261
+M003261
+003262
+M003262
+003263
+M003263
+003264
+M003264
+003265
+M003265
+003288
+M003288
+003289
+M003289
+003290
+M003290
+003291
+M003291
+003292
+M003292
+003316
+M003316
+003317
+M003317
+003318
+M003318
+003319
+M003319
+003320
+M003320
+003394
+M003394
+003395
+M003395
+003396
+M003396
+003397
+M003397
+003409
+M003409
+003410
+M003410
+003411
+M003411
+003412
+M003412
+003413
+M003413
+003414
+M003414
+003415
+M003415
+003416
+M003416
+003417
+M003417
+003418
+M003418
+003419
+M003419
+003420
+M003420
+003421
+M003421
+003422
+M003422
+003423
+M003423
+003424
+M003424
+003425
+M003425
+003426
+M003426
+003427
+M003427
+003428
+M003428
+003439
+M003439
+003440
+M003440
+003441
+M003441
+003442
+M003442
+003443
+M003443
+003444
+M003444
+003445
+M003445
+003446
+M003446
+003447
+M003447
+003448
+M003448
+003449
+M003449
+003450
+M003450
+003451
+M003451
+003452
+M003452
+003453
+M003453
+003454
+M003454
+003455
+M003455
+003456
+M003456
+003457
+M003457
+003458
+M003458
+003459
+M003459
+003460
+M003460
+003461
+M003461
+003462
+M003462
+003513
+M003513
+003514
+M003514
+003515
+M003515
+003516
+M003516
+003517
+M003517
+003518
+M003518
+003519
+M003519
+003520
+M003520
+003521
+M003521
+003522
+M003522
+003523
+M003523
+003524
+M003524
+003525
+M003525
+003526
+M003526
+003527
+M003527
+003528
+M003528
+003555
+M003555
+003556
+M003556
+003557
+M003557
+003558
+M003558
+003559
+M003559
+003560
+M003560
+003561
+M003561
+003562
+M003562
+003656
+M003656
+003657
+M003657
+003725
+M003725
+003726
+M003726
+003727
+M003727
+003728
+M003728
+003729
+M003729
+003730
+M003730
+003731
+M003731
+003732
+M003732
+003733
+M003733
+003774
+M003774
+003775
+M003775
+003776
+M003776
+003777
+M003777
+003786
+M003786
+003787
+M003787
+003788
+M003788
+003789
+M003789
+003790
+M003790
+003791
+M003791
+003792
+M003792
+003995
+M003995
+003996
+M003996
+003997
+M003997
+003998
+M003998
+003999
+M003999
+004000
+M004000
+004001
+M004001
+004002
+M004002
+004055
+M004055
+004056
+M004056
+004057
+M004057
+004058
+M004058
+004059
+M004059
+004080
+M004080
+004081
+M004081
+004082
+M004082
+004083
+M004083
+004084
+M004084
+004085
+M004085
+004086
+M004086
+004096
+M004096
+004097
+M004097
+004098
+M004098
+004099
+M004099
+004101
+M004101
+004102
+M004102
+004103
+M004103
+004104
+M004104
+004105
+M004105
+004106
+M004106
+004107
+M004107
+004108
+M004108
+004109
+M004109
+004110
+M004110
+004111
+M004111
+004112
+M004112
+004113
+M004113
+004132
+M004132
+004133
+M004133
+004134
+M004134
+004135
+M004135
+004136
+M004136
+004137
+M004137
+004138
+M004138
+004139
+M004139
+004140
+M004140
+004141
+M004141
+004142
+M004142
+004143
+M004143
+004144
+M004144
+004145
+M004145
+004146
+M004146
+004147
+M004147
+004148
+M004148
+004149
+M004149
+004150
+M004150
+004151
+M004151
+004152
+M004152
+004153
+M004153
+004154
+M004154
+004155
+M004155
+004156
+M004156
+004157
+M004157
+004169
+M004169
+004170
+M004170
+004171
+M004171
+004175
+M004175
+004176
+M004176
+004177
+M004177
+004178
+M004178
+004179
+M004179
+004180
+M004180
+004181
+M004181
+004182
+M004182
+004183
+M004183
+004184
+M004184
+004185
+M004185
+004186
+M004186
+004187
+M004187
+004188
+M004188
+004189
+M004189
+004190
+M004190
+004191
+M004191
+004192
+M004192
+004193
+M004193
+004194
+M004194
+004195
+M004195
+004196
+M004196
+004197
+M004197
+004198
+M004198
+004199
+M004199
+004200
+M004200
+004201
+M004201
+004202
+M004202
+004203
+M004203
+004237
+M004237
+004238
+M004238
+004239
+M004239
+004240
+M004240
+004241
+M004241
+004242
+M004242
+004243
+M004243
+004244
+M004244
+004245
+M004245
+004246
+M004246
+004247
+M004247
+004248
+M004248
+004249
+M004249
+004250
+M004250
+004294
+M004294
+004295
+M004295
+004296
+M004296
+004297
+M004297
+004298
+M004298
+004425
+M004425
+004426
+M004426
+004427
+M004427
+004428
+M004428
+004429
+M004429
+004465
+M004465
+004466
+M004466
+004467
+M004467
+004468
+M004468
+004469
+M004469
+004470
+M004470
+004471
+M004471
+004472
+M004472
+004473
+M004473
+004474
+M004474
+004544
+M004544
+004545
+M004545
+004546
+M004546
+004547
+M004547
+004548
+M004548
+004549
+M004549
+004550
+M004550
+004551
+M004551
+004552
+M004552
+004553
+M004553
+004554
+M004554
+004555
+M004555
+004556
+M004556
+004557
+M004557
+004558
+M004558
+004559
+M004559
+004560
+M004560
+004561
+M004561
+004562
+M004562
+004563
+M004563
+004564
+M004564
+004565
+M004565
+004566
+M004566
+004567
+M004567
+004568
+M004568
+004569
+M004569
+004570
+M004570
+004571
+M004571
+004572
+M004572
+004573
+M004573
+004574
+M004574
+004575
+M004575
+004576
+M004576
+004618
+M004618
+004619
+M004619
+004620
+M004620
+004621
+M004621
+004622
+M004622
+004623
+M004623
+004624
+M004624
+004625
+M004625
+004626
+M004626
+004627
+M004627
+004628
+M004628
+004629
+M004629
+004630
+M004630
+004631
+M004631
+004632
+M004632
+004633
+M004633
+004634
+M004634
+004635
+M004635
+004636
+M004636
+004637
+M004637
+004638
+M004638
+004639
+M004639
+004640
+M004640
+004641
+M004641
+004642
+M004642
+004643
+M004643
+004644
+M004644
+004645
+M004645
+004646
+M004646
+004647
+M004647
+004648
+M004648
+004649
+M004649
+004657
+M004657
+004658
+M004658
+004659
+M004659
+004660
+M004660
+004661
+M004661
+004662
+M004662
+004663
+M004663
+004664
+M004664
+004665
+M004665
+004666
+M004666
+004667
+M004667
+004668
+M004668
+004669
+M004669
+004670
+M004670
+004671
+M004671
+004672
+M004672
+004673
+M004673
+004674
+M004674
+004675
+M004675
+004676
+M004676
+004677
+M004677
+004678
+M004678
+004679
+M004679
+004680
+M004680
+004681
+M004681
+004682
+M004682
+004683
+M004683
+004684
+M004684
+004685
+M004685
+004691
+M004691
+004692
+M004692
+004693
+M004693
+004694
+M004694
+004707
+M004707
+004708
+M004708
+004709
+M004709
+004710
+M004710
+004712
+M004712
+004713
+M004713
+004714
+M004714
+004715
+M004715
+004716
+M004716
+004717
+M004717
+004718
+M004718
+004719
+M004719
+004720
+M004720
+004721
+M004721
+004722
+M004722
+004723
+M004723
+004724
+M004724
+004725
+M004725
+004726
+M004726
+004727
+M004727
+004728
+M004728
+004729
+M004729
+004730
+M004730
+004731
+M004731
+004732
+M004732
+004734
+M004734
+004735
+M004735
+004736
+M004736
+004737
+M004737
+004738
+M004738
+004739
+M004739
+004740
+M004740
+004741
+M004741
+004742
+M004742
+004743
+M004743
+004744
+M004744
+004745
+M004745
+004746
+M004746
+004747
+M004747
+004748
+M004748
+004749
+M004749
+004750
+M004750
+004823
+M004823
+004824
+M004824
+004825
+M004825
+004826
+M004826
+004827
+M004827
+004828
+M004828
+004829
+M004829
+004830
+M004830
+004831
+M004831
+004832
+M004832
+004833
+M004833
+004834
+M004834
+004835
+M004835
+004836
+M004836
+004870
+M004870
+004871
+M004871
+004872
+M004872
+004873
+M004873
+004874
+M004874
+004875
+M004875
+004876
+M004876
+004885
+M004885
+004886
+M004886
+004887
+M004887
+004888
+M004888
+004889
+M004889
+004897
+M004897
+004898
+M004898
+004899
+M004899
+004900
+M004900
+004901
+M004901
+004902
+M004902
+004903
+M004903
+004904
+M004904
+004905
+M004905
+004906
+M004906
+004907
+M004907
+004908
+M004908
+004909
+M004909
+004910
+M004910
+004911
+M004911
+004912
+M004912
+004970
+M004970
+004971
+M004971
+004972
+M004972
+004973
+M004973
+004974
+M004974
+004975
+M004975
+004976
+M004976
+004977
+M004977
+004978
+M004978
+004979
+M004979
+004990
+M004990
+004991
+M004991
+004992
+M004992
+004993
+M004993
+004994
+M004994
+004995
+M004995
+004996
+M004996
+005026
+M005026
+005027
+M005027
+005028
+M005028
+005029
+M005029
+005030
+M005030
+005031
+M005031
+005032
+M005032
+005033
+M005033
+005034
+M005034
+005035
+M005035
+005036
+M005036
+005046
+M005046
+005047
+M005047
+005048
+M005048
+005049
+M005049
+005050
+M005050
+005051
+M005051
+005052
+M005052
+005053
+M005053
+005054
+M005054
+005055
+M005055
+005056
+M005056
+005057
+M005057
+005058
+M005058
+005059
+M005059
+005060
+M005060
+005061
+M005061
+005062
+M005062
+005063
+M005063
+005064
+M005064
+005065
+M005065
+005066
+M005066
+005067
+M005067
+005095
+M005095
+005096
+M005096
+005097
+M005097
+005098
+M005098
+005099
+M005099
+005100
+M005100
+005101
+M005101
+005102
+M005102
+005103
+M005103
+005104
+M005104
+005105
+M005105
+005106
+M005106
+005107
+M005107
+005108
+M005108
+005109
+M005109
+005110
+M005110
+005111
+M005111
+005112
+M005112
+005113
+M005113
+005114
+M005114
+005115
+M005115
+005116
+M005116
+005117
+M005117
+005118
+M005118
+005119
+M005119
+005120
+M005120
+005121
+M005121
+005122
+M005122
+005123
+M005123
+005124
+M005124
+005125
+M005125
+005126
+M005126
+005127
+M005127
+005128
+M005128
+005129
+M005129
+005135
+M005135
+005136
+M005136
+005137
+M005137
+005138
+M005138
+005175
+M005175
+005176
+M005176
+005177
+M005177
+005190
+M005190
+005191
+M005191
+005192
+M005192
+005193
+M005193
+005194
+M005194
+005195
+M005195
+005196
+M005196
+005197
+M005197
+005198
+M005198
+005199
+M005199
+005200
+M005200
+005201
+M005201
+005202
+M005202
+005203
+M005203
+005204
+M005204
+005205
+M005205
+005206
+M005206
+005207
+M005207
+005208
+M005208
+005209
+M005209
+005210
+M005210
+005211
+M005211
+005212
+M005212
+005213
+M005213
+005214
+M005214
+005234
+M005234
+005235
+M005235
+005236
+M005236
+005237
+M005237
+005238
+M005238
+005239
+M005239
+005240
+M005240
+005241
+M005241
+005242
+M005242
+005243
+M005243
+005244
+M005244
+005245
+M005245
+005246
+M005246
+005247
+M005247
+005248
+M005248
+005249
+M005249
+005250
+M005250
+005251
+M005251
+005252
+M005252
+005253
+M005253
+005254
+M005254
+005255
+M005255
+005256
+M005256
+005257
+M005257
+005258
+M005258
+005259
+M005259
+005260
+M005260
+005261
+M005261
+005262
+M005262
+005263
+M005263
+005264
+M005264
+005265
+M005265
+005266
+M005266
+005267
+M005267
+005268
+M005268
+005269
+M005269
+005270
+M005270
+005271
+M005271
+005272
+M005272
+005273
+M005273
+005274
+M005274
+005275
+M005275
+005276
+M005276
+005277
+M005277
+005278
+M005278
+005316
+M005316
+005317
+M005317
+005318
+M005318
+005319
+M005319
+005320
+M005320
+005321
+M005321
+005322
+M005322
+005323
+M005323
+005324
+M005324
+005325
+M005325
+005326
+M005326
+005327
+M005327
+005328
+M005328
+005329
+M005329
+005330
+M005330
+005331
+M005331
+005332
+M005332
+005333
+M005333
+005334
+M005334
+005335
+M005335
+005336
+M005336
+005337
+M005337
+005338
+M005338
+005339
+M005339
+005340
+M005340
+005341
+M005341
+005434
+M005434
+005435
+M005435
+005436
+M005436
+005437
+M005437
+005438
+M005438
+005439
+M005439
+005440
+M005440
+005461
+M005461
+005462
+M005462
+005463
+M005463
+005464
+M005464
+005487
+M005487
+005488
+M005488
+005489
+M005489
+005490
+M005490
+005491
+M005491
+005553
+M005553
+005554
+M005554
+005555
+M005555
+005556
+M005556
+005557
+M005557
+005558
+M005558
+005559
+M005559
+005560
+M005560
+005575
+M005575
+005576
+M005576
+005577
+M005577
+005578
+M005578
+005579
+M005579
+005580
+M005580
+005581
+M005581
+005582
+M005582
+005597
+M005597
+005598
+M005598
+005599
+M005599
+005706
+M005706
+005707
+M005707
+005708
+M005708
+005709
+M005709
+005710
+M005710
+005711
+M005711
+005712
+M005712
+005713
+M005713
+005728
+M005728
+005729
+M005729
+005730
+M005730
+005731
+M005731
+005744
+M005744
+005745
+M005745
+005746
+M005746
+005747
+M005747
+005748
+M005748
+005749
+M005749
+005750
+M005750
+005751
+M005751
+005752
+M005752
+005753
+M005753
+005754
+M005754
+005824
+M005824
+005825
+M005825
+005826
+M005826
+005827
+M005827
+005828
+M005828
+005829
+M005829
+005830
+M005830
+005831
+M005831
+005832
+M005832
+005833
+M005833
+005834
+M005834
+005835
+M005835
+005836
+M005836
+005837
+M005837
+005838
+M005838
+005839
+M005839
+005840
+M005840
+005841
+M005841
+005842
+M005842
+005843
+M005843
+005844
+M005844
+005845
+M005845
+005846
+M005846
+005847
+M005847
+005848
+M005848
+005849
+M005849
+005850
+M005850
+005851
+M005851
+005852
+M005852
+005853
+M005853
+005854
+M005854
+005855
+M005855
+005856
+M005856
+005857
+M005857
+005881
+M005881
+005882
+M005882
+005883
+M005883
+005884
+M005884
+005885
+M005885
+005886
+M005886
+005887
+M005887
+005888
+M005888
+005889
+M005889
+005890
+M005890
+005891
+M005891
+005893
+M005893
+005894
+M005894
+005895
+M005895
+005896
+M005896
+005897
+M005897
+005899
+M005899
+005901
+M005901
+005902
+M005902
+005903
+M005903
+005905
+M005905
+005907
+M005907
+005908
+M005908
+005909
+M005909
+005910
+M005910
+005911
+M005911
+005912
+M005912
+005913
+M005913
+005915
+M005915
+005916
+M005916
+005917
+M005917
+005919
+M005919
+005920
+M005920
+005921
+M005921
+005922
+M005922
+005923
+M005923
+005924
+M005924
+005930
+M005930
+005931
+M005931
+005932
+M005932
+005933
+M005933
+005934
+M005934
+005935
+M005935
+005936
+M005936
+005937
+M005937
+005957
+M005957
+005958
+M005958
+005959
+M005959
+005987
+M005987
+005988
+M005988
+005989
+M005989
+006022
+M006022
+006023
+M006023
+006024
+M006024
+006025
+M006025
+006026
+M006026
+006027
+M006027
+006028
+M006028
+006029
+M006029
+006030
+M006030
+006031
+M006031
+006032
+M006032
+006033
+M006033
+006034
+M006034
+006035
+M006035
+006036
+M006036
+006037
+M006037
+006038
+M006038
+006039
+M006039
+006040
+M006040
+006041
+M006041
+006042
+M006042
+006043
+M006043
+006044
+M006044
+006045
+M006045
+006084
+M006084
+006085
+M006085
+006086
+M006086
+006087
+M006087
+006088
+M006088
+006089
+M006089
+006090
+M006090
+006091
+M006091
+006092
+M006092
+006145
+M006145
+006146
+M006146
+006147
+M006147
+006148
+M006148
+006149
+M006149
+006150
+M006150
+006151
+M006151
+006152
+M006152
+006153
+M006153
+006154
+M006154
+006255
+M006255
+006256
+M006256
+006257
+M006257
+006258
+M006258
+006259
+M006259
+006260
+M006260
+006261
+M006261
+006262
+M006262
+006263
+M006263
+006264
+M006264
+006265
+M006265
+006266
+M006266
+006267
+M006267
+006268
+M006268
+006269
+M006269
+006270
+M006270
+006271
+M006271
+006272
+M006272
+006273
+M006273
+006274
+M006274
+006275
+M006275
+006276
+M006276
+006277
+M006277
+006278
+M006278
+006279
+M006279
+006280
+M006280
+006281
+M006281
+006282
+M006282
+006283
+M006283
+006284
+M006284
+006285
+M006285
+006304
+M006304
+006305
+M006305
+006306
+M006306
+006307
+M006307
+006308
+M006308
+006309
+M006309
+006310
+M006310
+006311
+M006311
+006312
+M006312
+006313
+M006313
+006314
+M006314
+006329
+M006329
+006330
+M006330
+006331
+M006331
+006332
+M006332
+006333
+M006333
+006334
+M006334
+006451
+M006451
+006452
+M006452
+006453
+M006453
+006454
+M006454
+006455
+M006455
+006617
+M006617
+006618
+M006618
+006619
+M006619
+006620
+M006620
+006621
+M006621
+006622
+M006622
+006623
+M006623
+006624
+M006624
+006625
+M006625
+006626
+M006626
+006633
+M006633
+006634
+M006634
+006635
+M006635
+006716
+M006716
+006717
+M006717
+006718
+M006718
+006719
+M006719
+006720
+M006720
+006721
+M006721
+006789
+M006789
+006790
+M006790
+006791
+M006791
+006792
+M006792
+006793
+M006793
+006794
+M006794
+006795
+M006795
+006806
+M006806
+006807
+M006807
+006808
+M006808
+006809
+M006809
+006810
+M006810
+006811
+M006811
+006812
+M006812
+006813
+M006813
+006814
+M006814
+006815
+M006815
+006816
+M006816
+006873
+M006873
+006874
+M006874
+006885
+M006885
+006886
+M006886
+006887
+M006887
+006888
+M006888
+006889
+M006889
+006890
+M006890
+006891
+M006891
+006892
+M006892
+006893
+M006893
+006901
+M006901
+006902
+M006902
+006903
+M006903
+006904
+M006904
+006905
+M006905
+006906
+M006906
+006907
+M006907
+006908
+M006908
+006909
+M006909
+006910
+M006910
+006911
+M006911
+006912
+M006912
+006913
+M006913
+006914
+M006914
+006915
+M006915
+006916
+M006916
+006917
+M006917
+006918
+M006918
+006919
+M006919
+006920
+M006920
+006921
+M006921
+006922
+M006922
+006923
+M006923
+006924
+M006924
+006925
+M006925
+006926
+M006926
+006927
+M006927
+006928
+M006928
+006929
+M006929
+006930
+M006930
+006931
+M006931
+006932
+M006932
+006934
+M006934
+006935
+M006935
+006936
+M006936
+006998
+M006998
+006999
+M006999
+007000
+M007000
+007001
+M007001
+007002
+M007002
+007003
+M007003
+007004
+M007004
+007061
+M007061
+007062
+M007062
+007063
+M007063
+007064
+M007064
+007065
+M007065
+007106
+M007106
+007107
+M007107
+007108
+M007108
+007109
+M007109
+007110
+M007110
+007111
+M007111
+007112
+M007112
+007163
+M007163
+007164
+M007164
+007165
+M007165
+007166
+M007166
+007167
+M007167
+007168
+M007168
+007169
+M007169
+007170
+M007170
+007171
+M007171
+007172
+M007172
+007173
+M007173
+007174
+M007174
+007175
+M007175
+007176
+M007176
+007177
+M007177
+007178
+M007178
+007179
+M007179
+007180
+M007180
+007181
+M007181
+007182
+M007182
+007183
+M007183
+007184
+M007184
+007185
+M007185
+007186
+M007186
+007187
+M007187
+007188
+M007188
+007189
+M007189
+007190
+M007190
+007191
+M007191
+007192
+M007192
+007193
+M007193
+007194
+M007194
+007195
+M007195
+007196
+M007196
+007197
+M007197
+007198
+M007198
+007199
+M007199
+007200
+M007200
+007201
+M007201
+007202
+M007202
+007203
+M007203
+007204
+M007204
+007205
+M007205
+007206
+M007206
+007207
+M007207
+007208
+M007208
+007209
+M007209
+007256
+M007256
+007257
+M007257
+007258
+M007258
+007259
+M007259
+007260
+M007260
+007261
+M007261
+007262
+M007262
+007263
+M007263
+007268
+M007268
+007269
+M007269
+007270
+M007270
+007271
+M007271
+007272
+M007272
+007293
+M007293
+007294
+M007294
+007295
+M007295
+007296
+M007296
+007297
+M007297
+007298
+M007298
+007299
+M007299
+007300
+M007300
+007301
+M007301
+007302
+M007302
+007303
+M007303
+007304
+M007304
+007305
+M007305
+007306
+M007306
+007307
+M007307
+007308
+M007308
+007309
+M007309
+007310
+M007310
+007311
+M007311
+007327
+M007327
+007328
+M007328
+007329
+M007329
+007330
+M007330
+007331
+M007331
+007332
+M007332
+007333
+M007333
+007334
+M007334
+007335
+M007335
+007341
+M007341
+007342
+M007342
+007343
+M007343
+007344
+M007344
+007345
+M007345
+007346
+M007346
+007347
+M007347
+007348
+M007348
+007349
+M007349
+007350
+M007350
+007351
+M007351
+007352
+M007352
+007353
+M007353
+007354
+M007354
+007355
+M007355
+007356
+M007356
+007357
+M007357
+007358
+M007358
+007369
+M007369
+007370
+M007370
+007371
+M007371
+007407
+M007407
+007408
+M007408
+007409
+M007409
+007410
+M007410
+007411
+M007411
+007417
+M007417
+007418
+M007418
+007419
+M007419
+007420
+M007420
+007421
+M007421
+007422
+M007422
+007423
+M007423
+007424
+M007424
+007425
+M007425
+007426
+M007426
+007427
+M007427
+007428
+M007428
+007429
+M007429
+007430
+M007430
+007431
+M007431
+007432
+M007432
+007433
+M007433
+007434
+M007434
+007435
+M007435
+007436
+M007436
+007437
+M007437
+007438
+M007438
+007439
+M007439
+007440
+M007440
+007441
+M007441
+007442
+M007442
+007581
+M007581
+007582
+M007582
+007583
+M007583
+007584
+M007584
+007585
+M007585
+007653
+M007653
+007654
+M007654
+007655
+M007655
+007656
+M007656
+007657
+M007657
+007658
+M007658
+007659
+M007659
+007697
+M007697
+007698
+M007698
+007699
+M007699
+007700
+M007700
+007701
+M007701
+007702
+M007702
+007703
+M007703
+007704
+M007704
+007738
+M007738
+007739
+M007739
+007740
+M007740
+007741
+M007741
+007742
+M007742
+007743
+M007743
+007744
+M007744
+007758
+M007758
+007759
+M007759
+007760
+M007760
+007761
+M007761
+007762
+M007762
+007763
+M007763
+007764
+M007764
+007765
+M007765
+007766
+M007766
+007767
+M007767
+007768
+M007768
+007769
+M007769
+007770
+M007770
+007771
+M007771
+007772
+M007772
+007773
+M007773
+007774
+M007774
+007775
+M007775
+007776
+M007776
+007777
+M007777
+007778
+M007778
+007779
+M007779
+007780
+M007780
+007781
+M007781
+007782
+M007782
+007783
+M007783
+007784
+M007784
+007785
+M007785
+007786
+M007786
+007787
+M007787
+007800
+M007800
+007801
+M007801
+007802
+M007802
+007803
+M007803
+007804
+M007804
+007829
+M007829
+007830
+M007830
+007831
+M007831
+007832
+M007832
+007833
+M007833
+007834
+M007834
+007835
+M007835
+007836
+M007836
+007837
+M007837
+007838
+M007838
+007839
+M007839
+007840
+M007840
+007850
+M007850
+007851
+M007851
+007852
+M007852
+007853
+M007853
+007854
+M007854
+007905
+M007905
+007906
+M007906
+007907
+M007907
+007908
+M007908
+007909
+M007909
+007910
+M007910
+007943
+M007943
+007944
+M007944
+007945
+M007945
+007946
+M007946
+007947
+M007947
+007985
+M007985
+007986
+M007986
+007987
+M007987
+007988
+M007988
+008001
+M008001
+008002
+M008002
+008003
+M008003
+008004
+M008004
+008005
+M008005
+008026
+M008026
+008027
+M008027
+008028
+M008028
+008029
+M008029
+008030
+M008030
+008031
+M008031
+008032
+M008032
+008033
+M008033
+008034
+M008034
+008035
+M008035
+008036
+M008036
+008037
+M008037
+008038
+M008038
+008039
+M008039
+008040
+M008040
+008041
+M008041
+008042
+M008042
+008043
+M008043
+008044
+M008044
+008045
+M008045
+008046
+M008046
+008047
+M008047
+008048
+M008048
+008049
+M008049
+008050
+M008050
+008051
+M008051
+008052
+M008052
+008053
+M008053
+008054
+M008054
+008055
+M008055
+008056
+M008056
+008057
+M008057
+008058
+M008058
+008059
+M008059
+008060
+M008060
+008061
+M008061
+008062
+M008062
+008063
+M008063
+008064
+M008064
+008065
+M008065
+008066
+M008066
+008067
+M008067
+008068
+M008068
+008083
+M008083
+008084
+M008084
+008085
+M008085
+008086
+M008086
+008087
+M008087
+008088
+M008088
+008089
+M008089
+008127
+M008127
+008128
+M008128
+008129
+M008129
+008130
+M008130
+008131
+M008131
+008261
+M008261
+008262
+M008262
+008263
+M008263
+008264
+M008264
+008267
+M008267
+008268
+M008268
+008269
+M008269
+008270
+M008270
+008307
+M008307
+008308
+M008308
+008309
+M008309
+008310
+M008310
+008311
+M008311
+008318
+M008318
+008319
+M008319
+008320
+M008320
+008321
+M008321
+008322
+M008322
+008323
+M008323
+008324
+M008324
+008325
+M008325
+008326
+M008326
+008327
+M008327
+008328
+M008328
+008329
+M008329
+008330
+M008330
+008331
+M008331
+008332
+M008332
+008333
+M008333
+008334
+M008334
+008335
+M008335
+008336
+M008336
+008337
+M008337
+008338
+M008338
+008339
+M008339
+008340
+M008340
+008341
+M008341
+008342
+M008342
+008343
+M008343
+008344
+M008344
+008345
+M008345
+008346
+M008346
+008347
+M008347
+008348
+M008348
+008349
+M008349
+008350
+M008350
+008351
+M008351
+008352
+M008352
+008353
+M008353
+008354
+M008354
+008355
+M008355
+008356
+M008356
+008357
+M008357
+008358
+M008358
+008359
+M008359
+008360
+M008360
+008361
+M008361
+008362
+M008362
+008363
+M008363
+008364
+M008364
+008365
+M008365
+008366
+M008366
+008367
+M008367
+008368
+M008368
+008369
+M008369
+008370
+M008370
+008371
+M008371
+008372
+M008372
+008374
+M008374
+008375
+M008375
+008376
+M008376
+008377
+M008377
+008378
+M008378
+008379
+M008379
+008380
+M008380
+008381
+M008381
+008382
+M008382
+008383
+M008383
+008384
+M008384
+008385
+M008385
+008386
+M008386
+008387
+M008387
+008388
+M008388
+008389
+M008389
+008390
+M008390
+008391
+M008391
+008396
+M008396
+008397
+M008397
+008398
+M008398
+008399
+M008399
+008400
+M008400
+008401
+M008401
+008402
+M008402
+008403
+M008403
+008404
+M008404
+008405
+M008405
+008406
+M008406
+008413
+M008413
+008414
+M008414
+008415
+M008415
+008421
+M008421
+008422
+M008422
+008423
+M008423
+008424
+M008424
+008425
+M008425
+008426
+M008426
+008427
+M008427
+008428
+M008428
+008429
+M008429
+008452
+M008452
+008453
+M008453
+008454
+M008454
+008455
+M008455
+008468
+M008468
+008469
+M008469
+008470
+M008470
+008471
+M008471
+008472
+M008472
+008473
+M008473
+008474
+M008474
+008475
+M008475
+008476
+M008476
+008491
+M008491
+008492
+M008492
+008493
+M008493
+008494
+M008494
+008496
+M008496
+008497
+M008497
+008498
+M008498
+008499
+M008499
+008591
+M008591
+008592
+M008592
+008593
+M008593
+008594
+M008594
+008595
+M008595
+008596
+M008596
+008597
+M008597
+008650
+M008650
+008651
+M008651
+008652
+M008652
+008653
+M008653
+008654
+M008654
+008660
+M008660
+008661
+M008661
+008662
+M008662
+008663
+M008663
+008664
+M008664
+008668
+M008668
+008669
+M008669
+008670
+M008670
+008671
+M008671
+008677
+M008677
+008678
+M008678
+008679
+M008679
+008680
+M008680
+008681
+M008681
+008682
+M008682
+008683
+M008683
+008684
+M008684
+008685
+M008685
+008686
+M008686
+008687
+M008687
+008688
+M008688
+008689
+M008689
+008690
+M008690
+008691
+M008691
+008692
+M008692
+008693
+M008693
+008694
+M008694
+008695
+M008695
+008696
+M008696
+008697
+M008697
+008698
+M008698
+008778
+M008778
+008779
+M008779
+008780
+M008780
+008781
+M008781
+008782
+M008782
+008783
+M008783
+008784
+M008784
+008785
+M008785
+008786
+M008786
+008787
+M008787
+008788
+M008788
+008789
+M008789
+008790
+M008790
+008844
+M008844
+008845
+M008845
+008863
+M008863
+008864
+M008864
+008865
+M008865
+008866
+M008866
+008867
+M008867
+008868
+M008868
+008869
+M008869
+008870
+M008870
+008871
+M008871
+008872
+M008872
+008873
+M008873
+008874
+M008874
+008875
+M008875
+008876
+M008876
+008877
+M008877
+008878
+M008878
+008879
+M008879
+008880
+M008880
+008881
+M008881
+008882
+M008882
+008883
+M008883
+008884
+M008884
+008885
+M008885
+008886
+M008886
+008887
+M008887
+008888
+M008888
+008889
+M008889
+008890
+M008890
+008936
+M008936
+008937
+M008937
+008938
+M008938
+008939
+M008939
+008940
+M008940
+008941
+M008941
+008942
+M008942
+008943
+M008943
+008944
+M008944
+008945
+M008945
+008946
+M008946
+008947
+M008947
+008948
+M008948
+008949
+M008949
+008950
+M008950
+008951
+M008951
+008953
+M008953
+008954
+M008954
+008955
+M008955
+008956
+M008956
+008957
+M008957
+008958
+M008958
+008959
+M008959
+008960
+M008960
+008961
+M008961
+009002
+M009002
+009003
+M009003
+009004
+M009004
+009005
+M009005
+009006
+M009006
+009007
+M009007
+009008
+M009008
+009009
+M009009
+009010
+M009010
+009011
+M009011
+009012
+M009012
+009013
+M009013
+009014
+M009014
+009015
+M009015
+009016
+M009016
+009017
+M009017
+009018
+M009018
+009019
+M009019
+009020
+M009020
+009021
+M009021
+009022
+M009022
+009023
+M009023
+009024
+M009024
+009025
+M009025
+009026
+M009026
+009027
+M009027
+009028
+M009028
+009029
+M009029
+009030
+M009030
+009031
+M009031
+009053
+M009053
+009054
+M009054
+009055
+M009055
+009056
+M009056
+009057
+M009057
+009058
+M009058
+009059
+M009059
+009060
+M009060
+009061
+M009061
+009062
+M009062
+009089
+M009089
+009090
+M009090
+009091
+M009091
+009092
+M009092
+009093
+M009093
+009094
+M009094
+009095
+M009095
+009096
+M009096
+009097
+M009097
+009098
+M009098
+009099
+M009099
+009100
+M009100
+009101
+M009101
+009102
+M009102
+009103
+M009103
+009110
+M009110
+009111
+M009111
+009112
+M009112
+009113
+M009113
+009114
+M009114
+009115
+M009115
+009116
+M009116
+009117
+M009117
+009118
+M009118
+009119
+M009119
+009127
+M009127
+009128
+M009128
+009129
+M009129
+009130
+M009130
+009131
+M009131
+009132
+M009132
+009133
+M009133
+009134
+M009134
+009135
+M009135
+009136
+M009136
+009137
+M009137
+009138
+M009138
+009139
+M009139
+009170
+M009170
+009171
+M009171
+009242
+M009242
+009243
+M009243
+009244
+M009244
+009245
+M009245
+009246
+M009246
+009247
+M009247
+009248
+M009248
+009270
+M009270
+009271
+M009271
+009272
+M009272
+009273
+M009273
+009274
+M009274
+009275
+M009275
+009276
+M009276
+009277
+M009277
+009278
+M009278
+009279
+M009279
+009280
+M009280
+009281
+M009281
+009282
+M009282
+009283
+M009283
+009284
+M009284
+009285
+M009285
+009286
+M009286
+009298
+M009298
+009299
+M009299
+009300
+M009300
+009301
+M009301
+009314
+M009314
+009315
+M009315
+009316
+M009316
+009317
+M009317
+009318
+M009318
+009319
+M009319
+009320
+M009320
+009321
+M009321
+009322
+M009322
+009323
+M009323
+009356
+M009356
+009357
+M009357
+009358
+M009358
+009359
+M009359
+009360
+M009360
+009361
+M009361
+009362
+M009362
+009363
+M009363
+009364
+M009364
+009365
+M009365
+009366
+M009366
+009367
+M009367
+009388
+M009388
+009389
+M009389
+009390
+M009390
+009391
+M009391
+009392
+M009392
+009401
+M009401
+009402
+M009402
+009403
+M009403
+009404
+M009404
+009405
+M009405
+009406
+M009406
+009407
+M009407
+009408
+M009408
+009409
+M009409
+009410
+M009410
+009411
+M009411
+009412
+M009412
+009413
+M009413
+009414
+M009414
+009415
+M009415
+009433
+M009433
+009434
+M009434
+009435
+M009435
+009436
+M009436
+009437
+M009437
+009438
+M009438
+009439
+M009439
+009440
+M009440
+009441
+M009441
+009442
+M009442
+009443
+M009443
+009444
+M009444
+009445
+M009445
+009446
+M009446
+009473
+M009473
+009474
+M009474
+009475
+M009475
+009476
+M009476
+009526
+M009526
+009527
+M009527
+009528
+M009528
+009529
+M009529
+009537
+M009537
+009538
+M009538
+009539
+M009539
+009572
+M009572
+009573
+M009573
+009574
+M009574
+009575
+M009575
+009576
+M009576
+009577
+M009577
+009578
+M009578
+009579
+M009579
+009580
+M009580
+009581
+M009581
+009582
+M009582
+009583
+M009583
+009584
+M009584
+009585
+M009585
+009586
+M009586
+009587
+M009587
+009588
+M009588
+009589
+M009589
+009590
+M009590
+009591
+M009591
+009592
+M009592
+009593
+M009593
+009594
+M009594
+009595
+M009595
+009596
+M009596
+009597
+M009597
+009598
+M009598
+009599
+M009599
+009600
+M009600
+009601
+M009601
+009602
+M009602
+009603
+M009603
+009604
+M009604
+009605
+M009605
+009606
+M009606
+009607
+M009607
+009608
+M009608
+009609
+M009609
+009610
+M009610
+009611
+M009611
+009612
+M009612
+009613
+M009613
+009614
+M009614
+009615
+M009615
+009616
+M009616
+009617
+M009617
+009625
+M009625
+009626
+M009626
+009627
+M009627
+009628
+M009628
+009629
+M009629
+009630
+M009630
+009631
+M009631
+009632
+M009632
+009633
+M009633
+009634
+M009634
+009635
+M009635
+009636
+M009636
+009637
+M009637
+009638
+M009638
+009639
+M009639
+009640
+M009640
+009677
+M009677
+009678
+M009678
+009679
+M009679
+009680
+M009680
+009681
+M009681
+009682
+M009682
+009683
+M009683
+009684
+M009684
+009685
+M009685
+009686
+M009686
+009687
+M009687
+009688
+M009688
+009689
+M009689
+009690
+M009690
+009691
+M009691
+009692
+M009692
+009693
+M009693
+009694
+M009694
+009695
+M009695
+009696
+M009696
+009697
+M009697
+009698
+M009698
+009699
+M009699
+009700
+M009700
+009701
+M009701
+009702
+M009702
+009703
+M009703
+009704
+M009704
+009705
+M009705
+009706
+M009706
+009707
+M009707
+009708
+M009708
+009709
+M009709
+009710
+M009710
+009720
+M009720
+009721
+M009721
+009722
+M009722
+009723
+M009723
+009724
+M009724
+009725
+M009725
+009726
+M009726
+009727
+M009727
+009766
+M009766
+009767
+M009767
+009768
+M009768
+009769
+M009769
+009770
+M009770
+009771
+M009771
+009772
+M009772
+009807
+M009807
+009808
+M009808
+009809
+M009809
+009810
+M009810
+009811
+M009811
+009821
+M009821
+009822
+M009822
+009823
+M009823
+009824
+M009824
+009825
+M009825
+009826
+M009826
+009827
+M009827
+009828
+M009828
+009834
+M009834
+009835
+M009835
+009836
+M009836
+009837
+M009837
+009838
+M009838
+009839
+M009839
+009840
+M009840
+009949
+M009949
+009950
+M009950
+009951
+M009951
+009952
+M009952
+009953
+M009953
+009954
+M009954
+009955
+M009955
+009956
+M009956
+009957
+M009957
+009958
+M009958
+009959
+M009959
+009960
+M009960
+009961
+M009961
+009962
+M009962
+009963
+M009963
+009964
+M009964
+009965
+M009965
+009966
+M009966
+009967
+M009967
+009968
+M009968
+009969
+M009969
+009970
+M009970
+009971
+M009971
+009972
+M009972
+009973
+M009973
+009974
+M009974
+009975
+M009975
+009976
+M009976
+009977
+M009977
+009978
+M009978
+009979
+M009979
+009980
+M009980
+009981
+M009981
+009982
+M009982
+009983
+M009983
+009984
+M009984
+009985
+M009985
+009986
+M009986
+009987
+M009987
+009988
+M009988
+009989
+M009989
+009990
+M009990
+009991
+M009991
+009992
+M009992
+009993
+M009993
+009994
+M009994
+010064
+M010064
+010065
+M010065
+010066
+M010066
+010067
+M010067
+010068
+M010068
+010069
+M010069
+010070
+M010070
+010080
+M010080
+010081
+M010081
+010082
+M010082
+010083
+M010083
+010084
+M010084
+010085
+M010085
+010086
+M010086
+010087
+M010087
+010088
+M010088
+010089
+M010089
+010090
+M010090
+010091
+M010091
+010092
+M010092
+010093
+M010093
+010094
+M010094
+010095
+M010095
+010096
+M010096
+010097
+M010097
+010098
+M010098
+010099
+M010099
+010100
+M010100
+010101
+M010101
+010102
+M010102
+010103
+M010103
+010104
+M010104
+010105
+M010105
+010106
+M010106
+010107
+M010107
+010108
+M010108
+010109
+M010109
+010110
+M010110
+010111
+M010111
+010112
+M010112
+010113
+M010113
+010114
+M010114
+010115
+M010115
+010116
+M010116
+010121
+M010121
+010122
+M010122
+010123
+M010123
+010124
+M010124
+010125
+M010125
+010126
+M010126
+010127
+M010127
+010128
+M010128
+010129
+M010129
+010130
+M010130
+010131
+M010131
+010132
+M010132
+010133
+M010133
+010134
+M010134
+010135
+M010135
+010136
+M010136
+010137
+M010137
+010138
+M010138
+010139
+M010139
+010140
+M010140
+010141
+M010141
+010142
+M010142
+010143
+M010143
+010144
+M010144
+010145
+M010145
+010186
+M010186
+010187
+M010187
+010188
+M010188
+010189
+M010189
+010190
+M010190
+010191
+M010191
+010192
+M010192
+010193
+M010193
+010196
+M010196
+010197
+M010197
+010198
+M010198
+010199
+M010199
+010200
+M010200
+010201
+M010201
+010202
+M010202
+010214
+M010214
+010215
+M010215
+010216
+M010216
+010217
+M010217
+010240
+M010240
+010241
+M010241
+010242
+M010242
+010243
+M010243
+010244
+M010244
+010245
+M010245
+010246
+M010246
+010247
+M010247
+010248
+M010248
+010249
+M010249
+010250
+M010250
+010251
+M010251
+010252
+M010252
+010253
+M010253
+010254
+M010254
+010255
+M010255
+010256
+M010256
+010264
+M010264
+010265
+M010265
+010266
+M010266
+010267
+M010267
+010268
+M010268
+010269
+M010269
+010292
+M010292
+010293
+M010293
+010294
+M010294
+010295
+M010295
+010296
+M010296
+010297
+M010297
+010298
+M010298
+010299
+M010299
+010408
+M010408
+010409
+M010409
+010410
+M010410
+010415
+M010415
+010416
+M010416
+010417
+M010417
+010418
+M010418
+010419
+M010419
+010420
+M010420
+010433
+M010433
+010434
+M010434
+010435
+M010435
+010436
+M010436
+010437
+M010437
+010438
+M010438
+010439
+M010439
+010440
+M010440
+010441
+M010441
+010489
+M010489
+010490
+M010490
+010491
+M010491
+010492
+M010492
+010493
+M010493
+010494
+M010494
+010495
+M010495
+010496
+M010496
+010497
+M010497
+010498
+M010498
+010504
+M010504
+010505
+M010505
+010506
+M010506
+010507
+M010507
+010508
+M010508
+010509
+M010509
+010519
+M010519
+010520
+M010520
+010521
+M010521
+010522
+M010522
+010523
+M010523
+010524
+M010524
+010525
+M010525
+010526
+M010526
+010527
+M010527
+010528
+M010528
+010529
+M010529
+010530
+M010530
+010531
+M010531
+010532
+M010532
+010533
+M010533
+010534
+M010534
+010535
+M010535
+010536
+M010536
+010537
+M010537
+010538
+M010538
+010539
+M010539
+010540
+M010540
+010541
+M010541
+010542
+M010542
+010543
+M010543
+010544
+M010544
+010545
+M010545
+010546
+M010546
+010547
+M010547
+010548
+M010548
+010549
+M010549
+010550
+M010550
+010551
+M010551
+010552
+M010552
+010553
+M010553
+010584
+M010584
+010585
+M010585
+010586
+M010586
+010587
+M010587
+010588
+M010588
+010589
+M010589
+010595
+M010595
+010596
+M010596
+010597
+M010597
+010598
+M010598
+010599
+M010599
+010600
+M010600
+010601
+M010601
+010602
+M010602
+010603
+M010603
+010604
+M010604
+010611
+M010611
+010612
+M010612
+010613
+M010613
+010614
+M010614
+010615
+M010615
+010616
+M010616
+010617
+M010617
+010618
+M010618
+010619
+M010619
+010620
+M010620
+010784
+M010784
+010785
+M010785
+010786
+M010786
+010787
+M010787
+010788
+M010788
+010789
+M010789
+010790
+M010790
+010791
+M010791
+010800
+M010800
+010801
+M010801
+010802
+M010802
+010803
+M010803
+010804
+M010804
+010855
+M010855
+010856
+M010856
+010857
+M010857
+010858
+M010858
+010859
+M010859
+010860
+M010860
+010861
+M010861
+010862
+M010862
+010863
+M010863
+010864
+M010864
+010865
+M010865
+010866
+M010866
+010867
+M010867
+010868
+M010868
+010869
+M010869
+010870
+M010870
+010871
+M010871
+010872
+M010872
+010873
+M010873
+010874
+M010874
+010875
+M010875
+010876
+M010876
+010877
+M010877
+010878
+M010878
+010879
+M010879
+010880
+M010880
+010881
+M010881
+010882
+M010882
+010883
+M010883
+010884
+M010884
+010885
+M010885
+010886
+M010886
+010954
+M010954
+010955
+M010955
+010956
+M010956
+010957
+M010957
+010958
+M010958
+010959
+M010959
+010960
+M010960
+010961
+M010961
+010962
+M010962
+010963
+M010963
+010964
+M010964
+010965
+M010965
+010966
+M010966
+010967
+M010967
+010968
+M010968
+010969
+M010969
+010970
+M010970
+010971
+M010971
+010972
+M010972
+010973
+M010973
+010974
+M010974
+010975
+M010975
+011013
+M011013
+011014
+M011014
+011015
+M011015
+011016
+M011016
+011017
+M011017
+011018
+M011018
+011019
+M011019
+011103
+M011103
+011104
+M011104
+011124
+M011124
+011125
+M011125
+011126
+M011126
+011127
+M011127
+011128
+M011128
+011129
+M011129
+011130
+M011130
+011131
+M011131
+011132
+M011132
+011133
+M011133
+011134
+M011134
+011135
+M011135
+011136
+M011136
+011137
+M011137
+011138
+M011138
+011139
+M011139
+011141
+M011141
+011143
+M011143
+011144
+M011144
+011145
+M011145
+011147
+M011147
+011148
+M011148
+011149
+M011149
+011150
+M011150
+011151
+M011151
+011152
+M011152
+011153
+M011153
+011154
+M011154
+011155
+M011155
+011156
+M011156
+011157
+M011157
+011158
+M011158
+011159
+M011159
+011160
+M011160
+011161
+M011161
+011162
+M011162
+011163
+M011163
+011164
+M011164
+011165
+M011165
+011166
+M011166
+011167
+M011167
+011168
+M011168
+011169
+M011169
+011170
+M011170
+011171
+M011171
+011172
+M011172
+011173
+M011173
+011174
+M011174
+011175
+M011175
+011176
+M011176
+011177
+M011177
+011178
+M011178
+011179
+M011179
+011180
+M011180
+011181
+M011181
+011182
+M011182
+011183
+M011183
+011184
+M011184
+011185
+M011185
+011186
+M011186
+011187
+M011187
+011188
+M011188
+011189
+M011189
+011190
+M011190
+011191
+M011191
+011192
+M011192
+011193
+M011193
+011194
+M011194
+011195
+M011195
+011196
+M011196
+011197
+M011197
+011198
+M011198
+011199
+M011199
+011209
+M011209
+011210
+M011210
+011211
+M011211
+011212
+M011212
+011213
+M011213
+011214
+M011214
+011215
+M011215
+011216
+M011216
+011217
+M011217
+011218
+M011218
+011219
+M011219
+011291
+M011291
+011292
+M011292
+011293
+M011293
+011294
+M011294
+011295
+M011295
+011296
+M011296
+011297
+M011297
+011364
+M011364
+011365
+M011365
+011366
+M011366
+011367
+M011367
+011368
+M011368
+011369
+M011369
+011370
+M011370
+011371
+M011371
+011372
+M011372
+011373
+M011373
+011374
+M011374
+011375
+M011375
+011376
+M011376
+011377
+M011377
+011378
+M011378
+011379
+M011379
+011380
+M011380
+011381
+M011381
+011382
+M011382
+011383
+M011383
+011384
+M011384
+011385
+M011385
+011386
+M011386
+011387
+M011387
+011388
+M011388
+011389
+M011389
+011390
+M011390
+011391
+M011391
+011392
+M011392
+011393
+M011393
+011394
+M011394
+011395
+M011395
+011396
+M011396
+011397
+M011397
+011398
+M011398
+011399
+M011399
+011400
+M011400
+011401
+M011401
+011402
+M011402
+011403
+M011403
+011404
+M011404
+011405
+M011405
+011406
+M011406
+011407
+M011407
+011408
+M011408
+011409
+M011409
+011410
+M011410
+011411
+M011411
+011412
+M011412
+011413
+M011413
+011414
+M011414
+011415
+M011415
+011416
+M011416
+011417
+M011417
+011418
+M011418
+011419
+M011419
+011420
+M011420
+011421
+M011421
+011422
+M011422
+011511
+M011511
+011512
+M011512
+011513
+M011513
+011514
+M011514
+011524
+M011524
+011525
+M011525
+011526
+M011526
+011527
+M011527
+011528
+M011528
+011615
+M011615
+011616
+M011616
+011617
+M011617
+011618
+M011618
+011619
+M011619
+011620
+M011620
+011643
+M011643
+011644
+M011644
+011645
+M011645
+011646
+M011646
+011647
+M011647
+011648
+M011648
+011649
+M011649
+011650
+M011650
+011651
+M011651
+011652
+M011652
+011653
+M011653
+011654
+M011654
+011655
+M011655
+011656
+M011656
+011657
+M011657
+011658
+M011658
+011659
+M011659
+011660
+M011660
+011661
+M011661
+011662
+M011662
+011663
+M011663
+011664
+M011664
+011681
+M011681
+011682
+M011682
+011683
+M011683
+011684
+M011684
+011710
+M011710
+011711
+M011711
+011712
+M011712
+011713
+M011713
+011714
+M011714
+011715
+M011715
+011716
+M011716
+011717
+M011717
+011727
+M011727
+011728
+M011728
+011729
+M011729
+011740
+M011740
+011741
+M011741
+011742
+M011742
+011743
+M011743
+011744
+M011744
+011775
+M011775
+011776
+M011776
+011777
+M011777
+011778
+M011778
+011779
+M011779
+011780
+M011780
+011781
+M011781
+011782
+M011782
+011783
+M011783
+011784
+M011784
+011785
+M011785
+011786
+M011786
+011787
+M011787
+011788
+M011788
+011789
+M011789
+011790
+M011790
+011791
+M011791
+011792
+M011792
+011793
+M011793
+011794
+M011794
+011795
+M011795
+011796
+M011796
+011797
+M011797
+011798
+M011798
+011799
+M011799
+011800
+M011800
+011801
+M011801
+011802
+M011802
+011803
+M011803
+011804
+M011804
+011805
+M011805
+011806
+M011806
+011807
+M011807
+011808
+M011808
+011809
+M011809
+011810
+M011810
+011811
+M011811
+011812
+M011812
+011813
+M011813
+011814
+M011814
+011815
+M011815
+011816
+M011816
+011817
+M011817
+011818
+M011818
+011819
+M011819
+011820
+M011820
+011821
+M011821
+011822
+M011822
+011823
+M011823
+011927
+M011927
+011928
+M011928
+011929
+M011929
+011930
+M011930
+011931
+M011931
+011932
+M011932
+011933
+M011933
+011934
+M011934
+011935
+M011935
+011936
+M011936
+011937
+M011937
+011938
+M011938
+011939
+M011939
+011940
+M011940
+011941
+M011941
+011942
+M011942
+011943
+M011943
+011944
+M011944
+012006
+M012006
+012007
+M012007
+012008
+M012008
+012009
+M012009
+012010
+M012010
+012011
+M012011
+012012
+M012012
+012013
+M012013
+012014
+M012014
+012036
+M012036
+012037
+M012037
+012038
+M012038
+012039
+M012039
+012047
+M012047
+012048
+M012048
+012049
+M012049
+012050
+M012050
+012051
+M012051
+012052
+M012052
+012068
+M012068
+012069
+M012069
+012070
+M012070
+012071
+M012071
+012072
+M012072
+012073
+M012073
+012074
+M012074
+012136
+M012136
+012137
+M012137
+012138
+M012138
+012139
+M012139
+012140
+M012140
+012141
+M012141
+012142
+M012142
+012143
+M012143
+012144
+M012144
+012145
+M012145
+012146
+M012146
+012147
+M012147
+012148
+M012148
+012149
+M012149
+012150
+M012150
+012151
+M012151
+012152
+M012152
+012153
+M012153
+012154
+M012154
+012155
+M012155
+012156
+M012156
+012180
+M012180
+012181
+M012181
+012182
+M012182
+012183
+M012183
+012184
+M012184
+012185
+M012185
+012186
+M012186
+012187
+M012187
+012188
+M012188
+012189
+M012189
+012190
+M012190
+012191
+M012191
+012192
+M012192
+012236
+M012236
+012237
+M012237
+012238
+M012238
+012302
+M012302
+012303
+M012303
+012304
+M012304
+012305
+M012305
+012306
+M012306
+012307
+M012307
+012308
+M012308
+012312
+M012312
+012313
+M012313
+012314
+M012314
+012315
+M012315
+012316
+M012316
+012317
+M012317
+012318
+M012318
+012319
+M012319
+012320
+M012320
+012321
+M012321
+012322
+M012322
+012323
+M012323
+012324
+M012324
+012325
+M012325
+012360
+M012360
+012361
+M012361
+012362
+M012362
+012363
+M012363
+012364
+M012364
+012365
+M012365
+012366
+M012366
+012367
+M012367
+012368
+M012368
+012369
+M012369
+012370
+M012370
+012371
+M012371
+012372
+M012372
+012378
+M012378
+012379
+M012379
+012380
+M012380
+012381
+M012381
+012382
+M012382
+012383
+M012383
+012384
+M012384
+012385
+M012385
+012386
+M012386
+012387
+M012387
+012388
+M012388
+012389
+M012389
+012390
+M012390
+012396
+M012396
+012397
+M012397
+012398
+M012398
+012399
+M012399
+012400
+M012400
+012401
+M012401
+012402
+M012402
+012419
+M012419
+012420
+M012420
+012421
+M012421
+012422
+M012422
+012423
+M012423
+012426
+M012426
+012427
+M012427
+012428
+M012428
+012429
+M012429
+012430
+M012430
+012431
+M012431
+012455
+M012455
+012456
+M012456
+012457
+M012457
+012459
+M012459
+012460
+M012460
+012461
+M012461
+012462
+M012462
+012463
+M012463
+012464
+M012464
+012465
+M012465
+012466
+M012466
+012467
+M012467
+012510
+M012510
+012511
+M012511
+012512
+M012512
+012513
+M012513
+012514
+M012514
+012515
+M012515
+012516
+M012516
+012517
+M012517
+012518
+M012518
+012519
+M012519
+012520
+M012520
+012521
+M012521
+012522
+M012522
+012523
+M012523
+012524
+M012524
+012525
+M012525
+012526
+M012526
+012527
+M012527
+012528
+M012528
+012529
+M012529
+012530
+M012530
+012531
+M012531
+012532
+M012532
+012533
+M012533
+012534
+M012534
+012535
+M012535
+012549
+M012549
+012550
+M012550
+012551
+M012551
+012552
+M012552
+012553
+M012553
+012554
+M012554
+012560
+M012560
+012561
+M012561
+012562
+M012562
+012563
+M012563
+012564
+M012564
+012565
+M012565
+012606
+M012606
+012607
+M012607
+012608
+M012608
+012609
+M012609
+012610
+M012610
+012611
+M012611
+012612
+M012612
+012613
+M012613
+012614
+M012614
+012653
+M012653
+012654
+M012654
+012655
+M012655
+012656
+M012656
+012657
+M012657
+012658
+M012658
+012659
+M012659
+012660
+M012660
+012661
+M012661
+012662
+M012662
+012663
+M012663
+012664
+M012664
+012665
+M012665
+012666
+M012666
+012667
+M012667
+012668
+M012668
+012669
+M012669
+012670
+M012670
+012671
+M012671
+012672
+M012672
+012673
+M012673
+012691
+M012691
+012692
+M012692
+012693
+M012693
+012694
+M012694
+012695
+M012695
+012696
+M012696
+012697
+M012697
+012698
+M012698
+012715
+M012715
+012716
+M012716
+012717
+M012717
+012718
+M012718
+012719
+M012719
+012720
+M012720
+012721
+M012721
+012722
+M012722
+012723
+M012723
+012724
+M012724
+012725
+M012725
+012726
+M012726
+012727
+M012727
+012728
+M012728
+012729
+M012729
+012730
+M012730
+012731
+M012731
+012732
+M012732
+012733
+M012733
+012734
+M012734
+012735
+M012735
+012736
+M012736
+012737
+M012737
+012814
+M012814
+012815
+M012815
+012816
+M012816
+012817
+M012817
+012818
+M012818
+012819
+M012819
+012899
+M012899
+012900
+M012900
+012901
+M012901
+012902
+M012902
+012903
+M012903
+012937
+M012937
+012938
+M012938
+012939
+M012939
+013040
+M013040
+013041
+M013041
+013042
+M013042
+013043
+M013043
+013044
+M013044
+013066
+M013066
+013067
+M013067
+013068
+M013068
+013069
+M013069
+013070
+M013070
+013071
+M013071
+013072
+M013072
+013073
+M013073
+013074
+M013074
+013075
+M013075
+013076
+M013076
+013077
+M013077
+013078
+M013078
+013079
+M013079
+013080
+M013080
+013081
+M013081
+013082
+M013082
+013083
+M013083
+013084
+M013084
+013085
+M013085
+013086
+M013086
+013087
+M013087
+013088
+M013088
+013089
+M013089
+013090
+M013090
+013091
+M013091
+013092
+M013092
+013093
+M013093
+013094
+M013094
+013095
+M013095
+013096
+M013096
+013097
+M013097
+013098
+M013098
+013099
+M013099
+013100
+M013100
+013101
+M013101
+013125
+M013125
+013126
+M013126
+013127
+M013127
+013128
+M013128
+013129
+M013129
+013130
+M013130
+013131
+M013131
+013151
+M013151
+013152
+M013152
+013153
+M013153
+013154
+M013154
+013155
+M013155
+013156
+M013156
+013157
+M013157
+013158
+M013158
+013159
+M013159
+013160
+M013160
+013161
+M013161
+013168
+M013168
+013169
+M013169
+013170
+M013170
+013171
+M013171
+013189
+M013189
+013190
+M013190
+013191
+M013191
+013192
+M013192
+013193
+M013193
+013194
+M013194
+013195
+M013195
+013196
+M013196
+013224
+M013224
+013225
+M013225
+013226
+M013226
+013227
+M013227
+013228
+M013228
+013229
+M013229
+013230
+M013230
+013231
+M013231
+013244
+M013244
+013245
+M013245
+013246
+M013246
+013247
+M013247
+013248
+M013248
+013249
+M013249
+013250
+M013250
+013251
+M013251
+013252
+M013252
+013253
+M013253
+013254
+M013254
+013255
+M013255
+013256
+M013256
+013257
+M013257
+013258
+M013258
+013259
+M013259
+013260
+M013260
+013261
+M013261
+013262
+M013262
+013263
+M013263
+013264
+M013264
+013265
+M013265
+013266
+M013266
+013267
+M013267
+013268
+M013268
+013269
+M013269
+013270
+M013270
+013271
+M013271
+013272
+M013272
+013273
+M013273
+013274
+M013274
+013275
+M013275
+013276
+M013276
+013277
+M013277
+013278
+M013278
+013279
+M013279
+013280
+M013280
+013297
+M013297
+013298
+M013298
+013299
+M013299
+013300
+M013300
+013301
+M013301
+013316
+M013316
+013317
+M013317
+013389
+M013389
+013390
+M013390
+013391
+M013391
+013392
+M013392
+013393
+M013393
+013394
+M013394
+013395
+M013395
+013396
+M013396
+013397
+M013397
+013398
+M013398
+013399
+M013399
+013400
+M013400
+013401
+M013401
+013402
+M013402
+013403
+M013403
+013404
+M013404
+013405
+M013405
+013406
+M013406
+013465
+M013465
+013466
+M013466
+013506
+M013506
+013507
+M013507
+013577
+M013577
+013578
+M013578
+013579
+M013579
+013580
+M013580
+013581
+M013581
+013582
+M013582
+013583
+M013583
+013665
+M013665
+013666
+M013666
+013667
+M013667
+013724
+M013724
+013725
+M013725
+013726
+M013726
+013727
+M013727
+013728
+M013728
+013736
+M013736
+013737
+M013737
+013738
+M013738
+013739
+M013739
+013740
+M013740
+013741
+M013741
+013742
+M013742
+013743
+M013743
+013744
+M013744
+013745
+M013745
+013746
+M013746
+013747
+M013747
+013748
+M013748
+013749
+M013749
+013750
+M013750
+013751
+M013751
+013752
+M013752
+013753
+M013753
+013754
+M013754
+013755
+M013755
+013756
+M013756
+013757
+M013757
+013758
+M013758
+013759
+M013759
+013760
+M013760
+013761
+M013761
+013762
+M013762
+013763
+M013763
+013764
+M013764
+013765
+M013765
+013766
+M013766
+013767
+M013767
+013768
+M013768
+013769
+M013769
+013770
+M013770
+013771
+M013771
+013772
+M013772
+013773
+M013773
+013774
+M013774
+013775
+M013775
+013776
+M013776
+013777
+M013777
+013778
+M013778
+013779
+M013779
+013780
+M013780
+013781
+M013781
+013782
+M013782
+013786
+M013786
+013787
+M013787
+013788
+M013788
+013789
+M013789
+013790
+M013790
+013791
+M013791
+013792
+M013792
+013793
+M013793
+013794
+M013794
+013800
+M013800
+013801
+M013801
+013802
+M013802
+013827
+M013827
+013828
+M013828
+013829
+M013829
+013830
+M013830
+013831
+M013831
+013865
+M013865
+013866
+M013866
+013867
+M013867
+013868
+M013868
+013869
+M013869
+013870
+M013870
+013894
+M013894
+013895
+M013895
+013896
+M013896
+013897
+M013897
+013898
+M013898
+013899
+M013899
+013900
+M013900
+013901
+M013901
+013902
+M013902
+013903
+M013903
+013904
+M013904
+013905
+M013905
+013906
+M013906
+013907
+M013907
+013908
+M013908
+013909
+M013909
+013910
+M013910
+013911
+M013911
+013912
+M013912
+013913
+M013913
+013914
+M013914
+013915
+M013915
+013916
+M013916
+013917
+M013917
+013918
+M013918
+013919
+M013919
+013920
+M013920
+013921
+M013921
+013922
+M013922
+013923
+M013923
+013924
+M013924
+013925
+M013925
+013943
+M013943
+013944
+M013944
+013945
+M013945
+013946
+M013946
+013947
+M013947
+013948
+M013948
+013949
+M013949
+013950
+M013950
+013951
+M013951
+013952
+M013952
+013953
+M013953
+013954
+M013954
+013955
+M013955
+013956
+M013956
+013957
+M013957
+013958
+M013958
+013959
+M013959
+013960
+M013960
+013961
+M013961
+013962
+M013962
+013976
+M013976
+013977
+M013977
+013978
+M013978
+013979
+M013979
+013980
+M013980
+013981
+M013981
+013982
+M013982
+013983
+M013983
+013984
+M013984
+013985
+M013985
+013986
+M013986
+013987
+M013987
+013988
+M013988
+013989
+M013989
+013990
+M013990
+013991
+M013991
+013992
+M013992
+013993
+M013993
+013994
+M013994
+013995
+M013995
+013996
+M013996
+013997
+M013997
+013998
+M013998
+013999
+M013999
+014000
+M014000
+014001
+M014001
+014012
+M014012
+014013
+M014013
+014014
+M014014
+014015
+M014015
+014016
+M014016
+014017
+M014017
+014114
+M014114
+014115
+M014115
+014116
+M014116
+014117
+M014117
+014118
+M014118
+014119
+M014119
+014120
+M014120
+014121
+M014121
+014122
+M014122
+014123
+M014123
+014124
+M014124
+014125
+M014125
+014126
+M014126
+014127
+M014127
+014128
+M014128
+014129
+M014129
+014130
+M014130
+014131
+M014131
+014132
+M014132
+014133
+M014133
+014134
+M014134
+014135
+M014135
+014136
+M014136
+014137
+M014137
+014138
+M014138
+014139
+M014139
+014140
+M014140
+014141
+M014141
+014285
+M014285
+014286
+M014286
+014287
+M014287
+014288
+M014288
+014289
+M014289
+014290
+M014290
+014291
+M014291
+014349
+M014349
+014350
+M014350
+014351
+M014351
+014352
+M014352
+014353
+M014353
+014354
+M014354
+014380
+M014380
+014381
+M014381
+014382
+M014382
+014383
+M014383
+014384
+M014384
+014385
+M014385
+014386
+M014386
+014387
+M014387
+014388
+M014388
+014389
+M014389
+014390
+M014390
+014391
+M014391
+014392
+M014392
+014393
+M014393
+014394
+M014394
+014395
+M014395
+014396
+M014396
+014397
+M014397
+014398
+M014398
+014399
+M014399
+014400
+M014400
+014406
+M014406
+014407
+M014407
+014408
+M014408
+014409
+M014409
+014410
+M014410
+014411
+M014411
+014412
+M014412
+014413
+M014413
+014414
+M014414
+014415
+M014415
+014416
+M014416
+014417
+M014417
+014418
+M014418
+014419
+M014419
+014420
+M014420
+014421
+M014421
+014422
+M014422
+014423
+M014423
+014424
+M014424
+014425
+M014425
+014426
+M014426
+014427
+M014427
+014465
+M014465
+014466
+M014466
+014467
+M014467
+014468
+M014468
+014469
+M014469
+014470
+M014470
+014471
+M014471
+014472
+M014472
+014473
+M014473
+014474
+M014474
+014475
+M014475
+014476
+M014476
+014477
+M014477
+014478
+M014478
+014479
+M014479
+014480
+M014480
+014481
+M014481
+014482
+M014482
+014493
+M014493
+014494
+M014494
+014532
+M014532
+014533
+M014533
+014534
+M014534
+014535
+M014535
+014536
+M014536
+014537
+M014537
+014538
+M014538
+014539
+M014539
+014564
+M014564
+014565
+M014565
+014566
+M014566
+014567
+M014567
+014568
+M014568
+014569
+M014569
+014570
+M014570
+014571
+M014571
+014572
+M014572
+014573
+M014573
+014574
+M014574
+014575
+M014575
+014576
+M014576
+014577
+M014577
+014578
+M014578
+014628
+M014628
+014629
+M014629
+014630
+M014630
+014631
+M014631
+014632
+M014632
+014633
+M014633
+014634
+M014634
+014635
+M014635
+014636
+M014636
+014637
+M014637
+014638
+M014638
+014639
+M014639
+014640
+M014640
+014641
+M014641
+014642
+M014642
+014668
+M014668
+014669
+M014669
+014670
+M014670
+014671
+M014671
+014676
+M014676
+014677
+M014677
+014678
+M014678
+014679
+M014679
+014680
+M014680
+014681
+M014681
+014682
+M014682
+014683
+M014683
+014684
+M014684
+014685
+M014685
+014686
+M014686
+014687
+M014687
+014688
+M014688
+014689
+M014689
+014690
+M014690
+014691
+M014691
+014692
+M014692
+014693
+M014693
+014694
+M014694
+014766
+M014766
+014767
+M014767
+014768
+M014768
+014769
+M014769
+014770
+M014770
+014771
+M014771
+014772
+M014772
+014773
+M014773
+014774
+M014774
+014775
+M014775
+014776
+M014776
+014777
+M014777
+014810
+M014810
+014811
+M014811
+014812
+M014812
+014813
+M014813
+014814
+M014814
+014815
+M014815
+014816
+M014816
+014817
+M014817
+014818
+M014818
+014837
+M014837
+014838
+M014838
+014839
+M014839
+014840
+M014840
+014841
+M014841
+014842
+M014842
+014843
+M014843
+014844
+M014844
+014845
+M014845
+014846
+M014846
+014847
+M014847
+014848
+M014848
+014849
+M014849
+014850
+M014850
+014851
+M014851
+014852
+M014852
+014853
+M014853
+014897
+M014897
+014898
+M014898
+014899
+M014899
+014900
+M014900
+014901
+M014901
+014902
+M014902
+014903
+M014903
+014917
+M014917
+014918
+M014918
+014919
+M014919
+014920
+M014920
+014921
+M014921
+014922
+M014922
+014923
+M014923
+014924
+M014924
+014925
+M014925
+014933
+M014933
+014934
+M014934
+014935
+M014935
+014936
+M014936
+014937
+M014937
+014938
+M014938
+014939
+M014939
+014944
+M014944
+014945
+M014945
+014946
+M014946
+014947
+M014947
+014948
+M014948
+014949
+M014949
+014950
+M014950
+014951
+M014951
+014952
+M014952
+014953
+M014953
+014954
+M014954
+014955
+M014955
+014956
+M014956
+014957
+M014957
+014958
+M014958
+014959
+M014959
+014960
+M014960
+014961
+M014961
+015113
+M015113
+015114
+M015114
+015115
+M015115
+015116
+M015116
+015117
+M015117
+015118
+M015118
+015119
+M015119
+015120
+M015120
+015121
+M015121
+015122
+M015122
+015123
+M015123
+015124
+M015124
+015125
+M015125
+015126
+M015126
+015127
+M015127
+015128
+M015128
+015129
+M015129
+015130
+M015130
+015131
+M015131
+015132
+M015132
+015133
+M015133
+015134
+M015134
+015135
+M015135
+015136
+M015136
+015142
+M015142
+015143
+M015143
+015144
+M015144
+015145
+M015145
+015146
+M015146
+015147
+M015147
+015156
+M015156
+015157
+M015157
+015158
+M015158
+015159
+M015159
+015160
+M015160
+015161
+M015161
+015162
+M015162
+015163
+M015163
+015164
+M015164
+015165
+M015165
+015166
+M015166
+015167
+M015167
+015168
+M015168
+015169
+M015169
+015170
+M015170
+015171
+M015171
+015172
+M015172
+015173
+M015173
+015217
+M015217
+015218
+M015218
+015219
+M015219
+015220
+M015220
+015221
+M015221
+015222
+M015222
+015223
+M015223
+015224
+M015224
+015225
+M015225
+015226
+M015226
+015227
+M015227
+015228
+M015228
+015229
+M015229
+015230
+M015230
+015231
+M015231
+015232
+M015232
+015233
+M015233
+015234
+M015234
+015235
+M015235
+015236
+M015236
+015237
+M015237
+015238
+M015238
+015239
+M015239
+015240
+M015240
+015241
+M015241
+015242
+M015242
+015243
+M015243
+015244
+M015244
+015245
+M015245
+015246
+M015246
+015271
+M015271
+015272
+M015272
+015273
+M015273
+015274
+M015274
+015275
+M015275
+015276
+M015276
+015277
+M015277
+015301
+M015301
+015302
+M015302
+015303
+M015303
+015304
+M015304
+015305
+M015305
+015306
+M015306
+015307
+M015307
+015308
+M015308
+015309
+M015309
+015310
+M015310
+015311
+M015311
+015312
+M015312
+015313
+M015313
+015314
+M015314
+015315
+M015315
+015316
+M015316
+015317
+M015317
+015318
+M015318
+015319
+M015319
+015320
+M015320
+015321
+M015321
+015322
+M015322
+015323
+M015323
+015324
+M015324
+015325
+M015325
+015326
+M015326
+015327
+M015327
+015328
+M015328
+015329
+M015329
+015335
+M015335
+015336
+M015336
+015337
+M015337
+015338
+M015338
+015339
+M015339
+015373
+M015373
+015374
+M015374
+015375
+M015375
+015376
+M015376
+015377
+M015377
+015427
+M015427
+015428
+M015428
+015429
+M015429
+015430
+M015430
+015431
+M015431
+015432
+M015432
+015433
+M015433
+015434
+M015434
+015435
+M015435
+015509
+M015509
+015510
+M015510
+015511
+M015511
+015512
+M015512
+015513
+M015513
+015514
+M015514
+015515
+M015515
+015516
+M015516
+015517
+M015517
+015518
+M015518
+015519
+M015519
+015564
+M015564
+015565
+M015565
+015566
+M015566
+015567
+M015567
+015568
+M015568
+015569
+M015569
+015570
+M015570
+015571
+M015571
+015616
+M015616
+015617
+M015617
+015618
+M015618
+015619
+M015619
+015620
+M015620
+015621
+M015621
+015622
+M015622
+015623
+M015623
+015624
+M015624
+015625
+M015625
+015626
+M015626
+015627
+M015627
+015628
+M015628
+015629
+M015629
+015630
+M015630
+015631
+M015631
+015632
+M015632
+015633
+M015633
+015634
+M015634
+015644
+M015644
+015645
+M015645
+015646
+M015646
+015647
+M015647
+015648
+M015648
+015649
+M015649
+015650
+M015650
+015651
+M015651
+015652
+M015652
+015653
+M015653
+015654
+M015654
+015655
+M015655
+015656
+M015656
+015657
+M015657
+015658
+M015658
+015659
+M015659
+015660
+M015660
+015661
+M015661
+015662
+M015662
+015663
+M015663
+015664
+M015664
+015665
+M015665
+015666
+M015666
+015667
+M015667
+015668
+M015668
+015669
+M015669
+015670
+M015670
+015671
+M015671
+015672
+M015672
+015673
+M015673
+015674
+M015674
+015675
+M015675
+015676
+M015676
+015677
+M015677
+015678
+M015678
+015679
+M015679
+015680
+M015680
+015681
+M015681
+015682
+M015682
+015683
+M015683
+015684
+M015684
+015685
+M015685
+015686
+M015686
+015687
+M015687
+015688
+M015688
+015689
+M015689
+015690
+M015690
+015691
+M015691
+015692
+M015692
+015693
+M015693
+015694
+M015694
+015695
+M015695
+015696
+M015696
+015697
+M015697
+015698
+M015698
+015699
+M015699
+015700
+M015700
+015701
+M015701
+015702
+M015702
+015703
+M015703
+015704
+M015704
+015705
+M015705
+015706
+M015706
+015707
+M015707
+015708
+M015708
+015709
+M015709
+015710
+M015710
+015711
+M015711
+015712
+M015712
+015713
+M015713
+015714
+M015714
+015715
+M015715
+015716
+M015716
+015717
+M015717
+015718
+M015718
+015719
+M015719
+015720
+M015720
+015721
+M015721
+015722
+M015722
+015723
+M015723
+015724
+M015724
+015725
+M015725
+015726
+M015726
+015733
+M015733
+015734
+M015734
+015735
+M015735
+015736
+M015736
+015737
+M015737
+015738
+M015738
+015739
+M015739
+015740
+M015740
+015741
+M015741
+015742
+M015742
+015743
+M015743
+015744
+M015744
+015745
+M015745
+015779
+M015779
+015780
+M015780
+015781
+M015781
+015782
+M015782
+015801
+M015801
+015802
+M015802
+015803
+M015803
+015804
+M015804
+015805
+M015805
+015806
+M015806
+015807
+M015807
+015808
+M015808
+015809
+M015809
+015810
+M015810
+015811
+M015811
+015932
+M015932
+015933
+M015933
+015934
+M015934
+015935
+M015935
+015936
+M015936
+015937
+M015937
+015938
+M015938
+015945
+M015945
+015946
+M015946
+015947
+M015947
+015948
+M015948
+015949
+M015949
+015950
+M015950
+015951
+M015951
+015952
+M015952
+015953
+M015953
+015954
+M015954
+015980
+M015980
+015981
+M015981
+015982
+M015982
+015983
+M015983
+015984
+M015984
+015985
+M015985
+015986
+M015986
+015987
+M015987
+015988
+M015988
+015989
+M015989
+015990
+M015990
+015991
+M015991
+015992
+M015992
+015993
+M015993
+015994
+M015994
+015995
+M015995
+015996
+M015996
+015997
+M015997
+015998
+M015998
+015999
+M015999
+016000
+M016000
+016001
+M016001
+016002
+M016002
+016003
+M016003
+016004
+M016004
+016005
+M016005
+016006
+M016006
+016007
+M016007
+016008
+M016008
+016009
+M016009
+016010
+M016010
+016011
+M016011
+016012
+M016012
+016013
+M016013
+016014
+M016014
+016015
+M016015
+016016
+M016016
+016017
+M016017
+016018
+M016018
+016019
+M016019
+016020
+M016020
+016021
+M016021
+016022
+M016022
+016097
+M016097
+016098
+M016098
+016099
+M016099
+016111
+M016111
+016112
+M016112
+016113
+M016113
+016114
+M016114
+016115
+M016115
+016116
+M016116
+016117
+M016117
+016118
+M016118
+016119
+M016119
+016120
+M016120
+016121
+M016121
+016122
+M016122
+016123
+M016123
+016124
+M016124
+016125
+M016125
+016126
+M016126
+016127
+M016127
+016128
+M016128
+016129
+M016129
+016130
+M016130
+016131
+M016131
+016132
+M016132
+016133
+M016133
+016134
+M016134
+016135
+M016135
+016136
+M016136
+016137
+M016137
+016138
+M016138
+016139
+M016139
+016140
+M016140
+016141
+M016141
+016142
+M016142
+016143
+M016143
+016144
+M016144
+016145
+M016145
+016146
+M016146
+016147
+M016147
+016148
+M016148
+016149
+M016149
+016150
+M016150
+016220
+M016220
+016221
+M016221
+016222
+M016222
+016223
+M016223
+016224
+M016224
+016233
+M016233
+016234
+M016234
+016235
+M016235
+016236
+M016236
+016237
+M016237
+016267
+M016267
+016268
+M016268
+016269
+M016269
+016270
+M016270
+016271
+M016271
+016272
+M016272
+016273
+M016273
+016281
+M016281
+016282
+M016282
+016283
+M016283
+016284
+M016284
+016285
+M016285
+016286
+M016286
+016287
+M016287
+016288
+M016288
+016289
+M016289
+016290
+M016290
+016344
+M016344
+016345
+M016345
+016346
+M016346
+016347
+M016347
+016348
+M016348
+016349
+M016349
+016387
+M016387
+016388
+M016388
+016389
+M016389
+016390
+M016390
+016391
+M016391
+016404
+M016404
+016405
+M016405
+016406
+M016406
+016407
+M016407
+016408
+M016408
+016409
+M016409
+016410
+M016410
+016444
+M016444
+016445
+M016445
+016446
+M016446
+016447
+M016447
+016448
+M016448
+016449
+M016449
+016450
+M016450
+016451
+M016451
+016452
+M016452
+016453
+M016453
+016454
+M016454
+016455
+M016455
+016456
+M016456
+016457
+M016457
+016458
+M016458
+016459
+M016459
+016465
+M016465
+016466
+M016466
+016467
+M016467
+016468
+M016468
+016475
+M016475
+016476
+M016476
+016477
+M016477
+016478
+M016478
+016479
+M016479
+016480
+M016480
+016481
+M016481
+016482
+M016482
+016483
+M016483
+016484
+M016484
+016485
+M016485
+016486
+M016486
+016487
+M016487
+016488
+M016488
+016489
+M016489
+016490
+M016490
+016491
+M016491
+016492
+M016492
+016493
+M016493
+016494
+M016494
+016495
+M016495
+016496
+M016496
+016497
+M016497
+016498
+M016498
+016499
+M016499
+016500
+M016500
+016501
+M016501
+016502
+M016502
+016503
+M016503
+016504
+M016504
+016505
+M016505
+016506
+M016506
+016507
+M016507
+016508
+M016508
+016509
+M016509
+016510
+M016510
+016511
+M016511
+016512
+M016512
+016513
+M016513
+016514
+M016514
+016515
+M016515
+016516
+M016516
+016517
+M016517
+016518
+M016518
+016519
+M016519
+016520
+M016520
+016521
+M016521
+016522
+M016522
+016523
+M016523
+016524
+M016524
+016525
+M016525
+016526
+M016526
+016527
+M016527
+016528
+M016528
+016529
+M016529
+016530
+M016530
+016531
+M016531
+016538
+M016538
+016539
+M016539
+016589
+M016589
+016590
+M016590
+016591
+M016591
+016592
+M016592
+016593
+M016593
+016594
+M016594
+016595
+M016595
+016596
+M016596
+016597
+M016597
+016643
+M016643
+016644
+M016644
+016645
+M016645
+016646
+M016646
+016647
+M016647
+016648
+M016648
+016649
+M016649
+016650
+M016650
+016651
+M016651
+016652
+M016652
+016687
+M016687
+016688
+M016688
+016689
+M016689
+016690
+M016690
+016691
+M016691
+016692
+M016692
+016693
+M016693
+016694
+M016694
+016695
+M016695
+016696
+M016696
+016697
+M016697
+016698
+M016698
+016699
+M016699
+016700
+M016700
+016701
+M016701
+016705
+M016705
+016706
+M016706
+016707
+M016707
+016708
+M016708
+016709
+M016709
+016724
+M016724
+016725
+M016725
+016726
+M016726
+016727
+M016727
+016728
+M016728
+016729
+M016729
+016730
+M016730
+016731
+M016731
+016732
+M016732
+016733
+M016733
+016734
+M016734
+016735
+M016735
+016736
+M016736
+016786
+M016786
+016787
+M016787
+016788
+M016788
+016806
+M016806
+016807
+M016807
+016808
+M016808
+016809
+M016809
+016810
+M016810
+016811
+M016811
+016812
+M016812
+016842
+M016842
+016843
+M016843
+016844
+M016844
+016845
+M016845
+016846
+M016846
+016847
+M016847
+016848
+M016848
+016858
+M016858
+016859
+M016859
+016860
+M016860
+016861
+M016861
+016862
+M016862
+016863
+M016863
+016864
+M016864
+016865
+M016865
+016866
+M016866
+016867
+M016867
+016942
+M016942
+016943
+M016943
+016961
+M016961
+016962
+M016962
+016963
+M016963
+016964
+M016964
+016965
+M016965
+016966
+M016966
+016967
+M016967
+016968
+M016968
+016969
+M016969
+016973
+M016973
+016974
+M016974
+016975
+M016975
+016976
+M016976
+016977
+M016977
+016978
+M016978
+017033
+M017033
+017034
+M017034
+017035
+M017035
+017074
+M017074
+017075
+M017075
+017076
+M017076
+017077
+M017077
+017078
+M017078
+017079
+M017079
+017080
+M017080
+017081
+M017081
+017082
+M017082
+017083
+M017083
+017084
+M017084
+017085
+M017085
+017086
+M017086
+017087
+M017087
+017088
+M017088
+017089
+M017089
+017090
+M017090
+017091
+M017091
+017133
+M017133
+017134
+M017134
+017135
+M017135
+017136
+M017136
+017137
+M017137
+017138
+M017138
+017139
+M017139
+017143
+M017143
+017144
+M017144
+017145
+M017145
+017146
+M017146
+017147
+M017147
+017148
+M017148
+017149
+M017149
+017212
+M017212
+017213
+M017213
+017214
+M017214
+017299
+M017299
+017300
+M017300
+017301
+M017301
+017302
+M017302
+017303
+M017303
+017304
+M017304
+017305
+M017305
+017306
+M017306
+017307
+M017307
+017308
+M017308
+017309
+M017309
+017310
+M017310
+017311
+M017311
+017312
+M017312
+017313
+M017313
+017314
+M017314
+017315
+M017315
+017316
+M017316
+017317
+M017317
+017318
+M017318
+017319
+M017319
+017320
+M017320
+017321
+M017321
+017322
+M017322
+017323
+M017323
+017324
+M017324
+017325
+M017325
+017326
+M017326
+017327
+M017327
+017328
+M017328
+017329
+M017329
+017330
+M017330
+017387
+M017387
+017388
+M017388
+017389
+M017389
+017394
+M017394
+017395
+M017395
+017396
+M017396
+017397
+M017397
+017398
+M017398
+017399
+M017399
+017400
+M017400
+017401
+M017401
+017402
+M017402
+017403
+M017403
+017404
+M017404
+017405
+M017405
+017406
+M017406
+017421
+M017421
+017422
+M017422
+017423
+M017423
+017424
+M017424
+017425
+M017425
+017426
+M017426
+017427
+M017427
+017494
+M017494
+017495
+M017495
+017496
+M017496
+017497
+M017497
+017498
+M017498
+017499
+M017499
+017500
+M017500
+017501
+M017501
+017502
+M017502
+017503
+M017503
+017504
+M017504
+017505
+M017505
+017506
+M017506
+017507
+M017507
+017508
+M017508
+017535
+M017535
+017536
+M017536
+017537
+M017537
+017538
+M017538
+017539
+M017539
+017540
+M017540
+017541
+M017541
+017552
+M017552
+017553
+M017553
+017554
+M017554
+017555
+M017555
+017556
+M017556
+017559
+M017559
+017560
+M017560
+017561
+M017561
+017562
+M017562
+017563
+M017563
+017564
+M017564
+017579
+M017579
+017580
+M017580
+017581
+M017581
+017582
+M017582
+017583
+M017583
+017604
+M017604
+017605
+M017605
+017606
+M017606
+017607
+M017607
+017608
+M017608
+017609
+M017609
+017610
+M017610
+017611
+M017611
+017612
+M017612
+017613
+M017613
+017614
+M017614
+017615
+M017615
+017616
+M017616
+017617
+M017617
+017618
+M017618
+017653
+M017653
+017654
+M017654
+017655
+M017655
+017675
+M017675
+017676
+M017676
+017677
+M017677
+017678
+M017678
+017679
+M017679
+017680
+M017680
+017681
+M017681
+017682
+M017682
+017683
+M017683
+017701
+M017701
+017702
+M017702
+017703
+M017703
+017734
+M017734
+017735
+M017735
+017736
+M017736
+017737
+M017737
+017738
+M017738
+017739
+M017739
+017783
+M017783
+017784
+M017784
+017785
+M017785
+017786
+M017786
+017787
+M017787
+017788
+M017788
+017789
+M017789
+017790
+M017790
+017791
+M017791
+017792
+M017792
+017824
+M017824
+017825
+M017825
+017826
+M017826
+017827
+M017827
+017828
+M017828
+017829
+M017829
+017830
+M017830
+017858
+M017858
+017859
+M017859
+017860
+M017860
+017861
+M017861
+017862
+M017862
+017863
+M017863
+017903
+M017903
+017904
+M017904
+017905
+M017905
+017906
+M017906
+017907
+M017907
+017908
+M017908
+017909
+M017909
+017951
+M017951
+017952
+M017952
+017953
+M017953
+017954
+M017954
+017955
+M017955
+017956
+M017956
+017957
+M017957
+017973
+M017973
+017974
+M017974
+017975
+M017975
+017976
+M017976
+017977
+M017977
+017978
+M017978
+017979
+M017979
+017980
+M017980
+017981
+M017981
+017982
+M017982
+017983
+M017983
+017984
+M017984
+017985
+M017985
+017986
+M017986
+017987
+M017987
+017998
+M017998
+017999
+M017999
+018000
+M018000
+018001
+M018001
+018002
+M018002
+018003
+M018003
+018004
+M018004
+018005
+M018005
+018006
+M018006
+018007
+M018007
+018008
+M018008
+018009
+M018009
+018012
+M018012
+018013
+M018013
+018014
+M018014
+018139
+M018139
+018140
+M018140
+018141
+M018141
+018142
+M018142
+018143
+M018143
+018144
+M018144
+018145
+M018145
+018146
+M018146
+018147
+M018147
+018148
+M018148
+018149
+M018149
+018150
+M018150
+018151
+M018151
+018152
+M018152
+018153
+M018153
+018154
+M018154
+018155
+M018155
+018156
+M018156
+018157
+M018157
+018158
+M018158
+018159
+M018159
+018160
+M018160
+018161
+M018161
+018162
+M018162
+018163
+M018163
+018164
+M018164
+018165
+M018165
+018166
+M018166
+018167
+M018167
+018168
+M018168
+018169
+M018169
+018170
+M018170
+018171
+M018171
+018172
+M018172
+018173
+M018173
+018174
+M018174
+018175
+M018175
+018176
+M018176
+018177
+M018177
+018178
+M018178
+018179
+M018179
+018180
+M018180
+018181
+M018181
+018182
+M018182
+018183
+M018183
+018184
+M018184
+018185
+M018185
+018186
+M018186
+018187
+M018187
+018195
+M018195
+018196
+M018196
+018197
+M018197
+018198
+M018198
+018199
+M018199
+018200
+M018200
+018201
+M018201
+018202
+M018202
+018257
+M018257
+018258
+M018258
+018259
+M018259
+018260
+M018260
+018261
+M018261
+018262
+M018262
+018322
+M018322
+018323
+M018323
+018324
+M018324
+018325
+M018325
+018396
+M018396
+018397
+M018397
+018398
+M018398
+018399
+M018399
+018400
+M018400
+018401
+M018401
+018402
+M018402
+018403
+M018403
+018459
+M018459
+018460
+M018460
+018461
+M018461
+018462
+M018462
+018463
+M018463
+018464
+M018464
+018465
+M018465
+018466
+M018466
+018467
+M018467
+018530
+M018530
+018531
+M018531
+018573
+M018573
+018574
+M018574
+018575
+M018575
+018576
+M018576
+018578
+M018578
+018579
+M018579
+018580
+M018580
+018581
+M018581
+018582
+M018582
+018583
+M018583
+018584
+M018584
+018585
+M018585
+018586
+M018586
+018588
+M018588
+018589
+M018589
+018590
+M018590
+018591
+M018591
+018592
+M018592
+018593
+M018593
+018594
+M018594
+018595
+M018595
+018596
+M018596
+018597
+M018597
+018598
+M018598
+018599
+M018599
+018600
+M018600
+018602
+M018602
+018603
+M018603
+018604
+M018604
+018605
+M018605
+018606
+M018606
+018607
+M018607
+018608
+M018608
+018609
+M018609
+018610
+M018610
+018619
+M018619
+018620
+M018620
+018621
+M018621
+018622
+M018622
+018623
+M018623
+018624
+M018624
+018661
+M018661
+018662
+M018662
+018663
+M018663
+018664
+M018664
+018665
+M018665
+018666
+M018666
+018667
+M018667
+018668
+M018668
+018669
+M018669
+018670
+M018670
+018671
+M018671
+018672
+M018672
+018673
+M018673
+018674
+M018674
+018675
+M018675
+018676
+M018676
+018677
+M018677
+018678
+M018678
+018679
+M018679
+018680
+M018680
+018681
+M018681
+018682
+M018682
+018683
+M018683
+018684
+M018684
+018685
+M018685
+018686
+M018686
+018687
+M018687
+018688
+M018688
+018689
+M018689
+018690
+M018690
+018691
+M018691
+018692
+M018692
+018693
+M018693
+018694
+M018694
+018695
+M018695
+018696
+M018696
+018697
+M018697
+018698
+M018698
+018699
+M018699
+018700
+M018700
+018701
+M018701
+018733
+M018733
+018734
+M018734
+018735
+M018735
+018736
+M018736
+018737
+M018737
+018738
+M018738
+018739
+M018739
+018740
+M018740
+018741
+M018741
+018742
+M018742
+018743
+M018743
+018744
+M018744
+018745
+M018745
+018746
+M018746
+018747
+M018747
+018748
+M018748
+018749
+M018749
+018750
+M018750
+018751
+M018751
+018752
+M018752
+018753
+M018753
+018754
+M018754
+018755
+M018755
+018756
+M018756
+018757
+M018757
+018758
+M018758
+018759
+M018759
+018760
+M018760
+018761
+M018761
+018762
+M018762
+018763
+M018763
+018764
+M018764
+018765
+M018765
+018766
+M018766
+018767
+M018767
+018768
+M018768
+018769
+M018769
+018770
+M018770
+018771
+M018771
+018772
+M018772
+018778
+M018778
+018779
+M018779
+018780
+M018780
+018781
+M018781
+018782
+M018782
+018846
+M018846
+018847
+M018847
+018848
+M018848
+018849
+M018849
+018850
+M018850
+018851
+M018851
+018852
+M018852
+018853
+M018853
+018854
+M018854
+018855
+M018855
+018856
+M018856
+018857
+M018857
+018858
+M018858
+018859
+M018859
+018860
+M018860
+018861
+M018861
+018862
+M018862
+018863
+M018863
+018864
+M018864
+018865
+M018865
+018866
+M018866
+018867
+M018867
+018908
+M018908
+018909
+M018909
+018910
+M018910
+018911
+M018911
+018912
+M018912
+018913
+M018913
+018914
+M018914
+018915
+M018915
+018916
+M018916
+018917
+M018917
+018918
+M018918
+018919
+M018919
+018920
+M018920
+018921
+M018921
+018922
+M018922
+018923
+M018923
+018967
+M018967
+018968
+M018968
+018969
+M018969
+018970
+M018970
+018971
+M018971
+018986
+M018986
+018987
+M018987
+018988
+M018988
+018989
+M018989
+018990
+M018990
+018991
+M018991
+018992
+M018992
+018993
+M018993
+018994
+M018994
+018995
+M018995
+018996
+M018996
+018997
+M018997
+018998
+M018998
+018999
+M018999
+019000
+M019000
+019001
+M019001
+019002
+M019002
+019003
+M019003
+019004
+M019004
+019014
+M019014
+019015
+M019015
+019016
+M019016
+019017
+M019017
+019018
+M019018
+019019
+M019019
+019020
+M019020
+019021
+M019021
+019022
+M019022
+019023
+M019023
+019024
+M019024
+019025
+M019025
+019026
+M019026
+019027
+M019027
+019028
+M019028
+019029
+M019029
+019030
+M019030
+019031
+M019031
+019032
+M019032
+019033
+M019033
+019034
+M019034
+019035
+M019035
+019036
+M019036
+019037
+M019037
+019038
+M019038
+019039
+M019039
+019080
+M019080
+019081
+M019081
+019082
+M019082
+019083
+M019083
+019084
+M019084
+019085
+M019085
+019086
+M019086
+019087
+M019087
+019111
+M019111
+019112
+M019112
+019113
+M019113
+019114
+M019114
+019115
+M019115
+019116
+M019116
+019255
+M019255
+019256
+M019256
+019257
+M019257
+019258
+M019258
+019268
+M019268
+019269
+M019269
+019270
+M019270
+019271
+M019271
+019272
+M019272
+019273
+M019273
+019274
+M019274
+019275
+M019275
+019276
+M019276
+019282
+M019282
+019283
+M019283
+019284
+M019284
+019285
+M019285
+019286
+M019286
+019287
+M019287
+019288
+M019288
+019289
+M019289
+019290
+M019290
+019291
+M019291
+019292
+M019292
+019293
+M019293
+019294
+M019294
+019299
+M019299
+019300
+M019300
+019301
+M019301
+019302
+M019302
+019303
+M019303
+019304
+M019304
+019305
+M019305
+019306
+M019306
+019307
+M019307
+019308
+M019308
+019309
+M019309
+019310
+M019310
+019339
+M019339
+019340
+M019340
+019341
+M019341
+019342
+M019342
+019343
+M019343
+019344
+M019344
+019345
+M019345
+019346
+M019346
+019347
+M019347
+019348
+M019348
+019349
+M019349
+019350
+M019350
+019351
+M019351
+019352
+M019352
+019353
+M019353
+019354
+M019354
+019355
+M019355
+019385
+M019385
+019386
+M019386
+019387
+M019387
+019388
+M019388
+019496
+M019496
+019497
+M019497
+019498
+M019498
+019499
+M019499
+019500
+M019500
+019501
+M019501
+019502
+M019502
+019503
+M019503
+019504
+M019504
+019505
+M019505
+019506
+M019506
+019507
+M019507
+019508
+M019508
+019509
+M019509
+019510
+M019510
+019511
+M019511
+019512
+M019512
+019513
+M019513
+019514
+M019514
+019515
+M019515
+019516
+M019516
+019517
+M019517
+019518
+M019518
+019519
+M019519
+019520
+M019520
+019521
+M019521
+019522
+M019522
+019523
+M019523
+019524
+M019524
+019565
+M019565
+019566
+M019566
+019567
+M019567
+019594
+M019594
+019595
+M019595
+019596
+M019596
+019597
+M019597
+019598
+M019598
+019599
+M019599
+019600
+M019600
+019601
+M019601
+019602
+M019602
+019603
+M019603
+019604
+M019604
+019605
+M019605
+019606
+M019606
+019607
+M019607
+019641
+M019641
+019642
+M019642
+019643
+M019643
+019644
+M019644
+019645
+M019645
+019646
+M019646
+019647
+M019647
+019648
+M019648
+019649
+M019649
+019650
+M019650
+019697
+M019697
+019698
+M019698
+019699
+M019699
+019700
+M019700
+019701
+M019701
+019702
+M019702
+019703
+M019703
+019704
+M019704
+019705
+M019705
+019706
+M019706
+019707
+M019707
+019708
+M019708
+019709
+M019709
+019710
+M019710
+019711
+M019711
+019712
+M019712
+019713
+M019713
+019714
+M019714
+019715
+M019715
+019716
+M019716
+019717
+M019717
+019718
+M019718
+019795
+M019795
+019796
+M019796
+019797
+M019797
+019798
+M019798
+019799
+M019799
+019800
+M019800
+019801
+M019801
+019802
+M019802
+019803
+M019803
+019804
+M019804
+019805
+M019805
+019806
+M019806
+019807
+M019807
+019808
+M019808
+019813
+M019813
+019814
+M019814
+019815
+M019815
+019816
+M019816
+019817
+M019817
+019818
+M019818
+019819
+M019819
+019820
+M019820
+019828
+M019828
+019829
+M019829
+019830
+M019830
+019831
+M019831
+019832
+M019832
+019833
+M019833
+019834
+M019834
+019835
+M019835
+019836
+M019836
+019837
+M019837
+019838
+M019838
+019839
+M019839
+019840
+M019840
+019841
+M019841
+019842
+M019842
+019843
+M019843
+019844
+M019844
+019845
+M019845
+019846
+M019846
+019847
+M019847
+019848
+M019848
+019849
+M019849
+019850
+M019850
+019851
+M019851
+019852
+M019852
+019853
+M019853
+019854
+M019854
+019855
+M019855
+019856
+M019856
+019857
+M019857
+019858
+M019858
+019859
+M019859
+019860
+M019860
+019861
+M019861
+019862
+M019862
+019863
+M019863
+019864
+M019864
+019865
+M019865
+019866
+M019866
+019867
+M019867
+019868
+M019868
+019869
+M019869
+019870
+M019870
+019871
+M019871
+019872
+M019872
+019873
+M019873
+019874
+M019874
+019875
+M019875
+019876
+M019876
+019877
+M019877
+019878
+M019878
+019879
+M019879
+019880
+M019880
+019881
+M019881
+019882
+M019882
+019883
+M019883
+019884
+M019884
+019885
+M019885
+019886
+M019886
+019887
+M019887
+019888
+M019888
+019889
+M019889
+019890
+M019890
+019891
+M019891
+019892
+M019892
+019893
+M019893
+019894
+M019894
+019895
+M019895
+019896
+M019896
+019897
+M019897
+019898
+M019898
+019899
+M019899
+019900
+M019900
+019901
+M019901
+019902
+M019902
+019903
+M019903
+019904
+M019904
+019905
+M019905
+019906
+M019906
+019907
+M019907
+019908
+M019908
+019909
+M019909
+019910
+M019910
+019911
+M019911
+019912
+M019912
+019913
+M019913
+019914
+M019914
+019915
+M019915
+019916
+M019916
+019917
+M019917
+019918
+M019918
+019919
+M019919
+019920
+M019920
+019921
+M019921
+019922
+M019922
+019923
+M019923
+019924
+M019924
+019925
+M019925
+019926
+M019926
+019927
+M019927
+019928
+M019928
+019929
+M019929
+019930
+M019930
+019931
+M019931
+019942
+M019942
+019943
+M019943
+019944
+M019944
+019945
+M019945
+019946
+M019946
+019947
+M019947
+019948
+M019948
+019949
+M019949
+019950
+M019950
+019951
+M019951
+019952
+M019952
+019953
+M019953
+019954
+M019954
+019964
+M019964
+019965
+M019965
+019966
+M019966
+019967
+M019967
+019968
+M019968
+019969
+M019969
+019970
+M019970
+019971
+M019971
+020002
+M020002
+020003
+M020003
+020004
+M020004
+020005
+M020005
+020006
+M020006
+020007
+M020007
+020108
+M020108
+020109
+M020109
+020110
+M020110
+020111
+M020111
+020112
+M020112
+020113
+M020113
+020114
+M020114
+020115
+M020115
+020116
+M020116
+020117
+M020117
+020118
+M020118
+020119
+M020119
+020120
+M020120
+020121
+M020121
+020122
+M020122
+020123
+M020123
+020124
+M020124
+020125
+M020125
+020130
+M020130
+020131
+M020131
+020132
+M020132
+020133
+M020133
+020134
+M020134
+020135
+M020135
+020136
+M020136
+020137
+M020137
+020138
+M020138
+020139
+M020139
+020140
+M020140
+020141
+M020141
+020142
+M020142
+020143
+M020143
+020144
+M020144
+020145
+M020145
+020146
+M020146
+020147
+M020147
+020249
+M020249
+020250
+M020250
+020251
+M020251
+020252
+M020252
+020253
+M020253
+020254
+M020254
+020255
+M020255
+020256
+M020256
+020257
+M020257
+020258
+M020258
+020259
+M020259
+020260
+M020260
+020261
+M020261
+020262
+M020262
+020263
+M020263
+020264
+M020264
+020265
+M020265
+020266
+M020266
+020267
+M020267
+020273
+M020273
+020274
+M020274
+020275
+M020275
+020276
+M020276
+020277
+M020277
+020386
+M020386
+020387
+M020387
+020388
+M020388
+020389
+M020389
+020390
+M020390
+020391
+M020391
+020392
+M020392
+020393
+M020393
+020394
+M020394
+020395
+M020395
+020396
+M020396
+020397
+M020397
+020398
+M020398
+020399
+M020399
+020400
+M020400
+020484
+M020484
+020485
+M020485
+020486
+M020486
+020487
+M020487
+020488
+M020488
+020522
+M020522
+020523
+M020523
+020524
+M020524
+020525
+M020525
+020526
+M020526
+020527
+M020527
+020528
+M020528
+020529
+M020529
+020530
+M020530
+020603
+M020603
+020604
+M020604
+020605
+M020605
+020606
+M020606
+020625
+M020625
+020626
+M020626
+020627
+M020627
+020628
+M020628
+020629
+M020629
+020630
+M020630
+020631
+M020631
+020632
+M020632
+020633
+M020633
+020634
+M020634
+020635
+M020635
+020636
+M020636
+020644
+M020644
+020645
+M020645
+020646
+M020646
+020647
+M020647
+020648
+M020648
+020649
+M020649
+020650
+M020650
+020651
+M020651
+020652
+M020652
+020653
+M020653
+020654
+M020654
+020655
+M020655
+020656
+M020656
+020657
+M020657
+020670
+M020670
+020671
+M020671
+020672
+M020672
+020673
+M020673
+020674
+M020674
+020675
+M020675
+020686
+M020686
+020687
+M020687
+020688
+M020688
+020689
+M020689
+020690
+M020690
+020691
+M020691
+020692
+M020692
+020693
+M020693
+020694
+M020694
+020695
+M020695
+020696
+M020696
+020697
+M020697
+020698
+M020698
+020699
+M020699
+020700
+M020700
+020701
+M020701
+020702
+M020702
+020703
+M020703
+020704
+M020704
+020705
+M020705
+020706
+M020706
+020712
+M020712
+020713
+M020713
+020714
+M020714
+020715
+M020715
+020716
+M020716
+020717
+M020717
+020718
+M020718
+020728
+M020728
+020729
+M020729
+020730
+M020730
+020731
+M020731
+020732
+M020732
+020733
+M020733
+020734
+M020734
+020735
+M020735
+020736
+M020736
+020737
+M020737
+020738
+M020738
+020739
+M020739
+020740
+M020740
+020741
+M020741
+020742
+M020742
+020743
+M020743
+020744
+M020744
+020745
+M020745
+020746
+M020746
+020747
+M020747
+020748
+M020748
+020749
+M020749
+020750
+M020750
+020751
+M020751
+020752
+M020752
+020753
+M020753
+020754
+M020754
+020755
+M020755
+020756
+M020756
+020757
+M020757
+020758
+M020758
+020759
+M020759
+020760
+M020760
+020761
+M020761
+020762
+M020762
+020763
+M020763
+020764
+M020764
+020765
+M020765
+020766
+M020766
+020767
+M020767
+020768
+M020768
+020769
+M020769
+020770
+M020770
+020771
+M020771
+020772
+M020772
+020773
+M020773
+020774
+M020774
+020775
+M020775
+020776
+M020776
+020777
+M020777
+020778
+M020778
+020779
+M020779
+020780
+M020780
+020781
+M020781
+020782
+M020782
+020783
+M020783
+020784
+M020784
+020822
+M020822
+020823
+M020823
+020824
+M020824
+020825
+M020825
+020826
+M020826
+020827
+M020827
+020828
+M020828
+020829
+M020829
+020830
+M020830
+020831
+M020831
+020832
+M020832
+020833
+M020833
+020834
+M020834
+020835
+M020835
+020836
+M020836
+020837
+M020837
+020838
+M020838
+020839
+M020839
+020840
+M020840
+020841
+M020841
+020842
+M020842
+020843
+M020843
+020844
+M020844
+020845
+M020845
+020846
+M020846
+020847
+M020847
+020848
+M020848
+020849
+M020849
+020850
+M020850
+020851
+M020851
+020852
+M020852
+020889
+M020889
+020890
+M020890
+020891
+M020891
+020892
+M020892
+020907
+M020907
+020908
+M020908
+020909
+M020909
+020910
+M020910
+020911
+M020911
+020959
+M020959
+020960
+M020960
+020961
+M020961
+020962
+M020962
+020963
+M020963
+020964
+M020964
+020965
+M020965
+020966
+M020966
+020967
+M020967
+020968
+M020968
+020969
+M020969
+020970
+M020970
+020971
+M020971
+020972
+M020972
+020973
+M020973
+020974
+M020974
+020975
+M020975
+020976
+M020976
+020977
+M020977
+020978
+M020978
+020979
+M020979
+020980
+M020980
+021007
+M021007
+021008
+M021008
+021009
+M021009
+021010
+M021010
+021011
+M021011
+021012
+M021012
+021013
+M021013
+021014
+M021014
+021015
+M021015
+021016
+M021016
+021017
+M021017
+021018
+M021018
+021087
+M021087
+021088
+M021088
+021089
+M021089
+021090
+M021090
+021091
+M021091
+021092
+M021092
+021093
+M021093
+021109
+M021109
+021110
+M021110
+021111
+M021111
+021112
+M021112
+021113
+M021113
+021114
+M021114
+021115
+M021115
+021116
+M021116
+021117
+M021117
+021118
+M021118
+021120
+M021120
+021122
+M021122
+021124
+M021124
+021126
+M021126
+021128
+M021128
+021129
+M021129
+021130
+M021130
+021131
+M021131
+021132
+M021132
+021133
+M021133
+021134
+M021134
+021135
+M021135
+021136
+M021136
+021137
+M021137
+021138
+M021138
+021139
+M021139
+021141
+M021141
+021142
+M021142
+021143
+M021143
+021144
+M021144
+021145
+M021145
+021146
+M021146
+021147
+M021147
+021148
+M021148
+021149
+M021149
+021150
+M021150
+021151
+M021151
+021152
+M021152
+021185
+M021185
+021186
+M021186
+021187
+M021187
+021188
+M021188
+021189
+M021189
+021190
+M021190
+021191
+M021191
+021192
+M021192
+021193
+M021193
+021194
+M021194
+021195
+M021195
+021196
+M021196
+021197
+M021197
+021198
+M021198
+021199
+M021199
+021200
+M021200
+021201
+M021201
+021202
+M021202
+021246
+M021246
+021247
+M021247
+021248
+M021248
+021249
+M021249
+021250
+M021250
+021251
+M021251
+021252
+M021252
+021253
+M021253
+021254
+M021254
+021255
+M021255
+021256
+M021256
+021257
+M021257
+021258
+M021258
+021259
+M021259
+021260
+M021260
+021261
+M021261
+021262
+M021262
+021263
+M021263
+021264
+M021264
+021265
+M021265
+021266
+M021266
+021267
+M021267
+021268
+M021268
+021269
+M021269
+021270
+M021270
+021271
+M021271
+021272
+M021272
+021316
+M021316
+021317
+M021317
+021318
+M021318
+021319
+M021319
+021320
+M021320
+021321
+M021321
+021322
+M021322
+021323
+M021323
+021324
+M021324
+021325
+M021325
+021326
+M021326
+021327
+M021327
+021328
+M021328
+021329
+M021329
+021330
+M021330
+021345
+M021345
+021346
+M021346
+021347
+M021347
+021348
+M021348
+021349
+M021349
+021350
+M021350
+021351
+M021351
+021352
+M021352
+021353
+M021353
+021354
+M021354
+021355
+M021355
+021356
+M021356
+021357
+M021357
+021358
+M021358
+021359
+M021359
+021360
+M021360
+021361
+M021361
+021362
+M021362
+021363
+M021363
+021364
+M021364
+021365
+M021365
+021366
+M021366
+021367
+M021367
+021403
+M021403
+021404
+M021404
+021442
+M021442
+021443
+M021443
+021444
+M021444
+021445
+M021445
+021446
+M021446
+021447
+M021447
+021448
+M021448
+021479
+M021479
+021480
+M021480
+021481
+M021481
+021482
+M021482
+021483
+M021483
+021484
+M021484
+021510
+M021510
+021511
+M021511
+021512
+M021512
+021513
+M021513
+021514
+M021514
+021515
+M021515
+021516
+M021516
+021517
+M021517
+021518
+M021518
+021519
+M021519
+021520
+M021520
+021521
+M021521
+021522
+M021522
+021523
+M021523
+021524
+M021524
+021525
+M021525
+021557
+M021557
+021558
+M021558
+021559
+M021559
+021560
+M021560
+021561
+M021561
+021573
+M021573
+021574
+M021574
+021575
+M021575
+021610
+M021610
+021611
+M021611
+021612
+M021612
+021613
+M021613
+021614
+M021614
+021615
+M021615
+021616
+M021616
+021617
+M021617
+021632
+M021632
+021633
+M021633
+021634
+M021634
+021635
+M021635
+021636
+M021636
+021637
+M021637
+021638
+M021638
+021639
+M021639
+021640
+M021640
+021641
+M021641
+021729
+M021729
+021730
+M021730
+021731
+M021731
+021732
+M021732
+021733
+M021733
+021734
+M021734
+021735
+M021735
+021736
+M021736
+021737
+M021737
+021738
+M021738
+021739
+M021739
+021740
+M021740
+021741
+M021741
+021742
+M021742
+021743
+M021743
+021763
+M021763
+021764
+M021764
+021765
+M021765
+021766
+M021766
+021767
+M021767
+021768
+M021768
+021769
+M021769
+021770
+M021770
+021771
+M021771
+021772
+M021772
+021773
+M021773
+021774
+M021774
+021775
+M021775
+021776
+M021776
+021777
+M021777
+021778
+M021778
+021779
+M021779
+021780
+M021780
+021781
+M021781
+021782
+M021782
+021783
+M021783
+021784
+M021784
+021785
+M021785
+021786
+M021786
+021787
+M021787
+021788
+M021788
+021789
+M021789
+021790
+M021790
+021803
+M021803
+021804
+M021804
+021805
+M021805
+021806
+M021806
+021807
+M021807
+021808
+M021808
+021809
+M021809
+021810
+M021810
+021811
+M021811
+021812
+M021812
+021813
+M021813
+021836
+M021836
+021837
+M021837
+021838
+M021838
+021839
+M021839
+021840
+M021840
+021841
+M021841
+021842
+M021842
+021843
+M021843
+021844
+M021844
+021851
+M021851
+021852
+M021852
+021853
+M021853
+021854
+M021854
+021855
+M021855
+021856
+M021856
+021857
+M021857
+021858
+M021858
+021859
+M021859
+021860
+M021860
+021899
+M021899
+021900
+M021900
+021901
+M021901
+021902
+M021902
+021903
+M021903
+021904
+M021904
+021905
+M021905
+021906
+M021906
+021907
+M021907
+021908
+M021908
+021909
+M021909
+021910
+M021910
+021911
+M021911
+021912
+M021912
+021920
+M021920
+021921
+M021921
+021922
+M021922
+021923
+M021923
+021924
+M021924
+021925
+M021925
+021926
+M021926
+021927
+M021927
+021928
+M021928
+021929
+M021929
+021930
+M021930
+021931
+M021931
+021942
+M021942
+021943
+M021943
+021944
+M021944
+021945
+M021945
+021946
+M021946
+021947
+M021947
+021948
+M021948
+021949
+M021949
+021950
+M021950
+021951
+M021951
+021952
+M021952
+021953
+M021953
+021954
+M021954
+021955
+M021955
+021956
+M021956
+021957
+M021957
+021963
+M021963
+021964
+M021964
+021965
+M021965
+021966
+M021966
+021998
+M021998
+021999
+M021999
+022000
+M022000
+022001
+M022001
+022002
+M022002
+022039
+M022039
+022040
+M022040
+022041
+M022041
+022042
+M022042
+022043
+M022043
+022044
+M022044
+022045
+M022045
+022046
+M022046
+022054
+M022054
+022055
+M022055
+022056
+M022056
+022057
+M022057
+022058
+M022058
+022059
+M022059
+022060
+M022060
+022061
+M022061
+022062
+M022062
+022063
+M022063
+022064
+M022064
+022065
+M022065
+022066
+M022066
+022067
+M022067
+022068
+M022068
+022069
+M022069
+022070
+M022070
+022071
+M022071
+022072
+M022072
+022073
+M022073
+022074
+M022074
+022075
+M022075
+022076
+M022076
+022080
+M022080
+022081
+M022081
+022082
+M022082
+022083
+M022083
+022084
+M022084
+022085
+M022085
+022095
+M022095
+022096
+M022096
+022097
+M022097
+022098
+M022098
+022099
+M022099
+022100
+M022100
+022144
+M022144
+022145
+M022145
+022146
+M022146
+022147
+M022147
+022148
+M022148
+022149
+M022149
+022150
+M022150
+022151
+M022151
+022152
+M022152
+022153
+M022153
+022154
+M022154
+022155
+M022155
+022156
+M022156
+022157
+M022157
+022158
+M022158
+022159
+M022159
+022160
+M022160
+022161
+M022161
+022162
+M022162
+022163
+M022163
+022164
+M022164
+022165
+M022165
+022166
+M022166
+022167
+M022167
+022168
+M022168
+022169
+M022169
+022170
+M022170
+022171
+M022171
+022172
+M022172
+022173
+M022173
+022174
+M022174
+022175
+M022175
+022176
+M022176
+022177
+M022177
+022178
+M022178
+022179
+M022179
+022180
+M022180
+022181
+M022181
+022182
+M022182
+022183
+M022183
+022184
+M022184
+022185
+M022185
+022186
+M022186
+022187
+M022187
+022188
+M022188
+022214
+M022214
+022215
+M022215
+022224
+M022224
+022225
+M022225
+022226
+M022226
+022227
+M022227
+022228
+M022228
+022259
+M022259
+022260
+M022260
+022261
+M022261
+022262
+M022262
+022263
+M022263
+022264
+M022264
+022265
+M022265
+022266
+M022266
+022272
+M022272
+022273
+M022273
+022274
+M022274
+022275
+M022275
+022276
+M022276
+022277
+M022277
+022278
+M022278
+022279
+M022279
+022315
+M022315
+022316
+M022316
+022317
+M022317
+022318
+M022318
+022319
+M022319
+022320
+M022320
+022321
+M022321
+022322
+M022322
+022323
+M022323
+022324
+M022324
+022325
+M022325
+022326
+M022326
+022327
+M022327
+022328
+M022328
+022329
+M022329
+022330
+M022330
+022331
+M022331
+022332
+M022332
+022333
+M022333
+022334
+M022334
+022335
+M022335
+022336
+M022336
+022337
+M022337
+022349
+M022349
+022350
+M022350
+022351
+M022351
+022352
+M022352
+022353
+M022353
+022380
+M022380
+022381
+M022381
+022382
+M022382
+022383
+M022383
+022384
+M022384
+022385
+M022385
+022386
+M022386
+022387
+M022387
+022388
+M022388
+022389
+M022389
+022390
+M022390
+022391
+M022391
+022392
+M022392
+022393
+M022393
+022394
+M022394
+022395
+M022395
+022396
+M022396
+022397
+M022397
+022398
+M022398
+022399
+M022399
+022400
+M022400
+022401
+M022401
+022402
+M022402
+022403
+M022403
+022404
+M022404
+022405
+M022405
+022406
+M022406
+022407
+M022407
+022408
+M022408
+022409
+M022409
+022410
+M022410
+022411
+M022411
+022412
+M022412
+022413
+M022413
+022414
+M022414
+022415
+M022415
+022416
+M022416
+022417
+M022417
+022418
+M022418
+022419
+M022419
+022420
+M022420
+022421
+M022421
+022422
+M022422
+022423
+M022423
+022424
+M022424
+022425
+M022425
+022426
+M022426
+022427
+M022427
+022428
+M022428
+022429
+M022429
+022430
+M022430
+022431
+M022431
+022432
+M022432
+022433
+M022433
+022434
+M022434
+022435
+M022435
+022436
+M022436
+022437
+M022437
+022438
+M022438
+022439
+M022439
+022440
+M022440
+022441
+M022441
+022442
+M022442
+022443
+M022443
+022444
+M022444
+022445
+M022445
+022446
+M022446
+022447
+M022447
+022448
+M022448
+022449
+M022449
+022450
+M022450
+022451
+M022451
+022452
+M022452
+022453
+M022453
+022454
+M022454
+022455
+M022455
+022456
+M022456
+022457
+M022457
+022458
+M022458
+022459
+M022459
+022460
+M022460
+022461
+M022461
+022462
+M022462
+022463
+M022463
+022464
+M022464
+022465
+M022465
+022466
+M022466
+022467
+M022467
+022468
+M022468
+022469
+M022469
+022470
+M022470
+022471
+M022471
+022472
+M022472
+022473
+M022473
+022474
+M022474
+022475
+M022475
+022476
+M022476
+022477
+M022477
+022478
+M022478
+022524
+M022524
+022525
+M022525
+022526
+M022526
+022527
+M022527
+022528
+M022528
+022529
+M022529
+022530
+M022530
+022531
+M022531
+022532
+M022532
+022533
+M022533
+022534
+M022534
+022535
+M022535
+022536
+M022536
+022537
+M022537
+022538
+M022538
+022539
+M022539
+022540
+M022540
+022541
+M022541
+022542
+M022542
+022543
+M022543
+022544
+M022544
+022545
+M022545
+022546
+M022546
+022547
+M022547
+022548
+M022548
+022575
+M022575
+022576
+M022576
+022577
+M022577
+022578
+M022578
+022579
+M022579
+022580
+M022580
+022581
+M022581
+022582
+M022582
+022583
+M022583
+022584
+M022584
+022585
+M022585
+022586
+M022586
+022587
+M022587
+022588
+M022588
+022589
+M022589
+022590
+M022590
+022591
+M022591
+022592
+M022592
+022593
+M022593
+022594
+M022594
+022595
+M022595
+022596
+M022596
+022597
+M022597
+022598
+M022598
+022599
+M022599
+022600
+M022600
+022601
+M022601
+022602
+M022602
+022603
+M022603
+022668
+M022668
+022669
+M022669
+022670
+M022670
+022671
+M022671
+022672
+M022672
+022710
+M022710
+022711
+M022711
+022712
+M022712
+022713
+M022713
+022714
+M022714
+022715
+M022715
+022716
+M022716
+022717
+M022717
+022866
+M022866
+022867
+M022867
+022868
+M022868
+022935
+M022935
+022936
+M022936
+022937
+M022937
+022938
+M022938
+022939
+M022939
+022954
+M022954
+022955
+M022955
+022956
+M022956
+022957
+M022957
+022958
+M022958
+022959
+M022959
+022960
+M022960
+023009
+M023009
+023010
+M023010
+023011
+M023011
+023012
+M023012
+023013
+M023013
+023014
+M023014
+023015
+M023015
+023016
+M023016
+023017
+M023017
+023035
+M023035
+023036
+M023036
+023037
+M023037
+023038
+M023038
+023039
+M023039
+023040
+M023040
+023041
+M023041
+023042
+M023042
+023043
+M023043
+023044
+M023044
+023045
+M023045
+023046
+M023046
+023047
+M023047
+023048
+M023048
+023049
+M023049
+023050
+M023050
+023051
+M023051
+023052
+M023052
+023053
+M023053
+023054
+M023054
+023055
+M023055
+023056
+M023056
+023057
+M023057
+023058
+M023058
+023085
+M023085
+023086
+M023086
+023087
+M023087
+023088
+M023088
+023089
+M023089
+023090
+M023090
+023091
+M023091
+023092
+M023092
+023093
+M023093
+023094
+M023094
+023095
+M023095
+023096
+M023096
+023097
+M023097
+023098
+M023098
+023099
+M023099
+023100
+M023100
+023194
+M023194
+023195
+M023195
+023196
+M023196
+023197
+M023197
+023198
+M023198
+023199
+M023199
+023216
+M023216
+023217
+M023217
+023218
+M023218
+023219
+M023219
+023220
+M023220
+023221
+M023221
+023282
+M023282
+023283
+M023283
+023284
+M023284
+023285
+M023285
+023286
+M023286
+023287
+M023287
+023288
+M023288
+023289
+M023289
+023297
+M023297
+023298
+M023298
+023304
+M023304
+023305
+M023305
+023306
+M023306
+023307
+M023307
+023308
+M023308
+023309
+M023309
+023310
+M023310
+023311
+M023311
+023312
+M023312
+023313
+M023313
+023314
+M023314
+023315
+M023315
+023316
+M023316
+023317
+M023317
+023318
+M023318
+023319
+M023319
+023320
+M023320
+023321
+M023321
+023322
+M023322
+023323
+M023323
+023324
+M023324
+023325
+M023325
+023331
+M023331
+023332
+M023332
+023333
+M023333
+023334
+M023334
+023335
+M023335
+023336
+M023336
+023342
+M023342
+023343
+M023343
+023344
+M023344
+023345
+M023345
+023346
+M023346
+023347
+M023347
+023348
+M023348
+023349
+M023349
+023350
+M023350
+023369
+M023369
+023370
+M023370
+023371
+M023371
+023372
+M023372
+023373
+M023373
+023374
+M023374
+023382
+M023382
+023383
+M023383
+023384
+M023384
+023385
+M023385
+023386
+M023386
+023397
+M023397
+023398
+M023398
+023399
+M023399
+023400
+M023400
+023502
+M023502
+023503
+M023503
+023504
+M023504
+023505
+M023505
+023506
+M023506
+023512
+M023512
+023513
+M023513
+023514
+M023514
+023515
+M023515
+023516
+M023516
+023517
+M023517
+023518
+M023518
+023528
+M023528
+023529
+M023529
+023530
+M023530
+023531
+M023531
+023570
+M023570
+023571
+M023571
+023572
+M023572
+023573
+M023573
+023574
+M023574
+023584
+M023584
+023585
+M023585
+023586
+M023586
+023587
+M023587
+023588
+M023588
+023602
+M023602
+023603
+M023603
+023604
+M023604
+023605
+M023605
+023606
+M023606
+023640
+M023640
+023641
+M023641
+023642
+M023642
+023643
+M023643
+023644
+M023644
+023645
+M023645
+023646
+M023646
+023647
+M023647
+023648
+M023648
+023649
+M023649
+023657
+M023657
+023658
+M023658
+023659
+M023659
+023660
+M023660
+023661
+M023661
+023662
+M023662
+023663
+M023663
+023664
+M023664
+023665
+M023665
+023666
+M023666
+023667
+M023667
+023668
+M023668
+023669
+M023669
+023670
+M023670
+023671
+M023671
+023672
+M023672
+023673
+M023673
+023674
+M023674
+023675
+M023675
+023676
+M023676
+023677
+M023677
+023678
+M023678
+023679
+M023679
+023680
+M023680
+023681
+M023681
+023682
+M023682
+023683
+M023683
+023684
+M023684
+023685
+M023685
+023686
+M023686
+023687
+M023687
+023688
+M023688
+023689
+M023689
+023690
+M023690
+023718
+M023718
+023719
+M023719
+023720
+M023720
+023721
+M023721
+023722
+M023722
+023723
+M023723
+023724
+M023724
+023725
+M023725
+023726
+M023726
+023727
+M023727
+023737
+M023737
+023738
+M023738
+023739
+M023739
+023740
+M023740
+023741
+M023741
+023748
+M023748
+023749
+M023749
+023750
+M023750
+023751
+M023751
+023752
+M023752
+023756
+M023756
+023757
+M023757
+023758
+M023758
+023759
+M023759
+023760
+M023760
+023761
+M023761
+023762
+M023762
+023763
+M023763
+023764
+M023764
+023765
+M023765
+023766
+M023766
+023767
+M023767
+023768
+M023768
+023769
+M023769
+023770
+M023770
+023771
+M023771
+023772
+M023772
+023773
+M023773
+023774
+M023774
+023775
+M023775
+023776
+M023776
+023777
+M023777
+023778
+M023778
+023779
+M023779
+023780
+M023780
+023781
+M023781
+023782
+M023782
+023789
+M023789
+023790
+M023790
+023791
+M023791
+023792
+M023792
+023793
+M023793
+023794
+M023794
+023795
+M023795
+023796
+M023796
+023797
+M023797
+023798
+M023798
+023799
+M023799
+023800
+M023800
+023801
+M023801
+023802
+M023802
+023816
+M023816
+023817
+M023817
+023818
+M023818
+023819
+M023819
+023820
+M023820
+023821
+M023821
+023822
+M023822
+023823
+M023823
+023824
+M023824
+023825
+M023825
+023858
+M023858
+023859
+M023859
+023860
+M023860
+023861
+M023861
+023862
+M023862
+023863
+M023863
+023864
+M023864
+023865
+M023865
+023866
+M023866
+023867
+M023867
+023868
+M023868
+023886
+M023886
+023887
+M023887
+023888
+M023888
+023889
+M023889
+023890
+M023890
+023891
+M023891
+023892
+M023892
+023893
+M023893
+023894
+M023894
+023895
+M023895
+023896
+M023896
+023897
+M023897
+023898
+M023898
+023899
+M023899
+023900
+M023900
+023901
+M023901
+023922
+M023922
+023923
+M023923
+023924
+M023924
+023925
+M023925
+023951
+M023951
+023952
+M023952
+023953
+M023953
+023954
+M023954
+023955
+M023955
+023956
+M023956
+023991
+M023991
+023992
+M023992
+023993
+M023993
+023994
+M023994
+023995
+M023995
+023996
+M023996
+023997
+M023997
+023998
+M023998
+023999
+M023999
+024000
+M024000
+024001
+M024001
+024002
+M024002
+024003
+M024003
+024004
+M024004
+024005
+M024005
+024006
+M024006
+024007
+M024007
+024008
+M024008
+024009
+M024009
+024010
+M024010
+024011
+M024011
+024039
+M024039
+024040
+M024040
+024041
+M024041
+024042
+M024042
+024050
+M024050
+024051
+M024051
+024052
+M024052
+024053
+M024053
+024054
+M024054
+024055
+M024055
+024056
+M024056
+024057
+M024057
+024058
+M024058
+024059
+M024059
+024060
+M024060
+024061
+M024061
+024062
+M024062
+024063
+M024063
+024064
+M024064
+024065
+M024065
+024066
+M024066
+024067
+M024067
+024068
+M024068
+024071
+M024071
+024072
+M024072
+024073
+M024073
+024074
+M024074
+024075
+M024075
+024076
+M024076
+024077
+M024077
+024078
+M024078
+024079
+M024079
+024080
+M024080
+024081
+M024081
+024082
+M024082
+024088
+M024088
+024089
+M024089
+024090
+M024090
+024091
+M024091
+024092
+M024092
+024093
+M024093
+024094
+M024094
+024095
+M024095
+024096
+M024096
+024103
+M024103
+024104
+M024104
+024105
+M024105
+024106
+M024106
+024107
+M024107
+024108
+M024108
+024109
+M024109
+024110
+M024110
+024111
+M024111
+024112
+M024112
+024113
+M024113
+024114
+M024114
+024115
+M024115
+024116
+M024116
+024117
+M024117
+024118
+M024118
+024119
+M024119
+024120
+M024120
+024121
+M024121
+024122
+M024122
+024123
+M024123
+024124
+M024124
+024125
+M024125
+024126
+M024126
+024127
+M024127
+024128
+M024128
+024129
+M024129
+024130
+M024130
+024180
+M024180
+024181
+M024181
+024182
+M024182
+024183
+M024183
+024184
+M024184
+024185
+M024185
+024186
+M024186
+024192
+M024192
+024193
+M024193
+024194
+M024194
+024195
+M024195
+024196
+M024196
+024197
+M024197
+024204
+M024204
+024205
+M024205
+024206
+M024206
+024207
+M024207
+024208
+M024208
+024209
+M024209
+024210
+M024210
+024211
+M024211
+024212
+M024212
+024213
+M024213
+024214
+M024214
+024215
+M024215
+024216
+M024216
+024217
+M024217
+024218
+M024218
+024219
+M024219
+024322
+M024322
+024323
+M024323
+024324
+M024324
+024325
+M024325
+024326
+M024326
+024327
+M024327
+024328
+M024328
+024329
+M024329
+024330
+M024330
+024335
+M024335
+024336
+M024336
+024337
+M024337
+024338
+M024338
+024339
+M024339
+024340
+M024340
+024341
+M024341
+024342
+M024342
+024343
+M024343
+024344
+M024344
+024345
+M024345
+024346
+M024346
+024354
+M024354
+024355
+M024355
+024356
+M024356
+024374
+M024374
+024375
+M024375
+024376
+M024376
+024377
+M024377
+024378
+M024378
+024379
+M024379
+024380
+M024380
+024402
+M024402
+024403
+M024403
+024404
+M024404
+024405
+M024405
+024406
+M024406
+024407
+M024407
+024408
+M024408
+024409
+M024409
+024410
+M024410
+024411
+M024411
+024412
+M024412
+024413
+M024413
+024414
+M024414
+024415
+M024415
+024416
+M024416
+024417
+M024417
+024418
+M024418
+024419
+M024419
+024420
+M024420
+024421
+M024421
+024422
+M024422
+024423
+M024423
+024424
+M024424
+024425
+M024425
+024426
+M024426
+024427
+M024427
+024428
+M024428
+024429
+M024429
+024430
+M024430
+024431
+M024431
+024432
+M024432
+024433
+M024433
+024434
+M024434
+024435
+M024435
+024436
+M024436
+024437
+M024437
+024438
+M024438
+024439
+M024439
+024440
+M024440
+024441
+M024441
+024442
+M024442
+024443
+M024443
+024444
+M024444
+024445
+M024445
+024446
+M024446
+024447
+M024447
+024448
+M024448
+024449
+M024449
+024450
+M024450
+024451
+M024451
+024452
+M024452
+024453
+M024453
+024454
+M024454
+024455
+M024455
+024456
+M024456
+024461
+M024461
+024462
+M024462
+024528
+M024528
+024529
+M024529
+024530
+M024530
+024531
+M024531
+024532
+M024532
+024533
+M024533
+024534
+M024534
+024535
+M024535
+024536
+M024536
+024537
+M024537
+024538
+M024538
+024539
+M024539
+024540
+M024540
+024541
+M024541
+024542
+M024542
+024543
+M024543
+024544
+M024544
+024545
+M024545
+024638
+M024638
+024639
+M024639
+024640
+M024640
+024641
+M024641
+024642
+M024642
+024667
+M024667
+024668
+M024668
+024669
+M024669
+024670
+M024670
+024671
+M024671
+024672
+M024672
+024682
+M024682
+024683
+M024683
+024684
+M024684
+024685
+M024685
+024686
+M024686
+024687
+M024687
+024688
+M024688
+024689
+M024689
+024690
+M024690
+024691
+M024691
+024692
+M024692
+024693
+M024693
+024694
+M024694
+024695
+M024695
+024696
+M024696
+024697
+M024697
+024698
+M024698
+024699
+M024699
+024700
+M024700
+024701
+M024701
+024702
+M024702
+024703
+M024703
+024704
+M024704
+024705
+M024705
+024706
+M024706
+024707
+M024707
+024708
+M024708
+024709
+M024709
+024710
+M024710
+024711
+M024711
+024712
+M024712
+024713
+M024713
+024714
+M024714
+024715
+M024715
+024716
+M024716
+024717
+M024717
+024718
+M024718
+024719
+M024719
+024720
+M024720
+024721
+M024721
+024722
+M024722
+024723
+M024723
+024724
+M024724
+024725
+M024725
+024726
+M024726
+024727
+M024727
+024728
+M024728
+024729
+M024729
+024730
+M024730
+024731
+M024731
+024732
+M024732
+024776
+M024776
+024777
+M024777
+024778
+M024778
+024779
+M024779
+024780
+M024780
+024845
+M024845
+024846
+M024846
+024847
+M024847
+024848
+M024848
+024905
+M024905
+024906
+M024906
+024907
+M024907
+024908
+M024908
+024909
+M024909
+024910
+M024910
+024911
+M024911
+024912
+M024912
+024913
+M024913
+024914
+M024914
+024915
+M024915
+024916
+M024916
+024917
+M024917
+024918
+M024918
+024919
+M024919
+024920
+M024920
+024921
+M024921
+024922
+M024922
+024923
+M024923
+024942
+M024942
+024943
+M024943
+024944
+M024944
+024945
+M024945
+024946
+M024946
+024966
+M024966
+024967
+M024967
+024968
+M024968
+024969
+M024969
+024970
+M024970
+024971
+M024971
+024972
+M024972
+024973
+M024973
+024974
+M024974
+024975
+M024975
+024982
+M024982
+024983
+M024983
+024984
+M024984
+024985
+M024985
+024986
+M024986
+024987
+M024987
+024988
+M024988
+024989
+M024989
+024990
+M024990
+024991
+M024991
+024992
+M024992
+024993
+M024993
+024994
+M024994
+024995
+M024995
+024996
+M024996
+024997
+M024997
+024998
+M024998
+024999
+M024999
+025000
+M025000
+025001
+M025001
+025002
+M025002
+025003
+M025003
+025004
+M025004
+025005
+M025005
+025006
+M025006
+025007
+M025007
+025008
+M025008
+025009
+M025009
+025010
+M025010
+025011
+M025011
+025012
+M025012
+025013
+M025013
+025014
+M025014
+025015
+M025015
+025016
+M025016
+025017
+M025017
+025018
+M025018
+025019
+M025019
+025020
+M025020
+025021
+M025021
+025022
+M025022
+025023
+M025023
+025024
+M025024
+025025
+M025025
+025026
+M025026
+025027
+M025027
+025074
+M025074
+025075
+M025075
+025076
+M025076
+025077
+M025077
+025078
+M025078
+025079
+M025079
+025122
+M025122
+025123
+M025123
+025124
+M025124
+025125
+M025125
+025126
+M025126
+025127
+M025127
+025128
+M025128
+025129
+M025129
+025130
+M025130
+025131
+M025131
+025132
+M025132
+025133
+M025133
+025134
+M025134
+025135
+M025135
+025136
+M025136
+025137
+M025137
+025138
+M025138
+025139
+M025139
+025140
+M025140
+025141
+M025141
+025142
+M025142
+025143
+M025143
+025144
+M025144
+025145
+M025145
+025146
+M025146
+025180
+M025180
+025181
+M025181
+025182
+M025182
+025184
+M025184
+025185
+M025185
+025186
+M025186
+025187
+M025187
+025188
+M025188
+025189
+M025189
+025190
+M025190
+025191
+M025191
+025197
+M025197
+025198
+M025198
+025199
+M025199
+025272
+M025272
+025273
+M025273
+025274
+M025274
+025275
+M025275
+025276
+M025276
+025277
+M025277
+025278
+M025278
+025279
+M025279
+025280
+M025280
+025281
+M025281
+025282
+M025282
+025283
+M025283
+025284
+M025284
+025285
+M025285
+025286
+M025286
+025340
+M025340
+025341
+M025341
+025342
+M025342
+025343
+M025343
+025344
+M025344
+025345
+M025345
+025346
+M025346
+025347
+M025347
+025348
+M025348
+025349
+M025349
+025350
+M025350
+025351
+M025351
+025352
+M025352
+025353
+M025353
+025354
+M025354
+025355
+M025355
+025356
+M025356
+025357
+M025357
+025358
+M025358
+025359
+M025359
+025360
+M025360
+025361
+M025361
+025362
+M025362
+025363
+M025363
+025364
+M025364
+025365
+M025365
+025366
+M025366
+025367
+M025367
+025368
+M025368
+025369
+M025369
+025370
+M025370
+025381
+M025381
+025382
+M025382
+025383
+M025383
+025384
+M025384
+025385
+M025385
+025410
+M025410
+025411
+M025411
+025412
+M025412
+025414
+M025414
+025415
+M025415
+025416
+M025416
+025417
+M025417
+025418
+M025418
+025419
+M025419
+025420
+M025420
+025422
+M025422
+025423
+M025423
+025424
+M025424
+025425
+M025425
+025426
+M025426
+025427
+M025427
+025428
+M025428
+025429
+M025429
+025430
+M025430
+025431
+M025431
+025432
+M025432
+025501
+M025501
+025502
+M025502
+025503
+M025503
+025504
+M025504
+025505
+M025505
+025506
+M025506
+025507
+M025507
+025508
+M025508
+025509
+M025509
+025510
+M025510
+025511
+M025511
+025520
+M025520
+025521
+M025521
+025522
+M025522
+025523
+M025523
+025524
+M025524
+025525
+M025525
+025526
+M025526
+025527
+M025527
+025528
+M025528
+025529
+M025529
+025530
+M025530
+025531
+M025531
+025532
+M025532
+025533
+M025533
+025534
+M025534
+025535
+M025535
+025536
+M025536
+025537
+M025537
+025538
+M025538
+025539
+M025539
+025540
+M025540
+025541
+M025541
+025542
+M025542
+025543
+M025543
+025544
+M025544
+025545
+M025545
+025546
+M025546
+025547
+M025547
+025548
+M025548
+025549
+M025549
+025550
+M025550
+025551
+M025551
+025690
+M025690
+025691
+M025691
+025692
+M025692
+025693
+M025693
+025694
+M025694
+025695
+M025695
+025696
+M025696
+025697
+M025697
+025698
+M025698
+025699
+M025699
+025700
+M025700
+025701
+M025701
+025702
+M025702
+025703
+M025703
+025704
+M025704
+025705
+M025705
+025706
+M025706
+025769
+M025769
+025770
+M025770
+025771
+M025771
+025772
+M025772
+025773
+M025773
+025811
+M025811
+025812
+M025812
+025813
+M025813
+025814
+M025814
+025815
+M025815
+025816
+M025816
+025823
+M025823
+025824
+M025824
+025825
+M025825
+025826
+M025826
+025827
+M025827
+025828
+M025828
+025829
+M025829
+025830
+M025830
+025867
+M025867
+025868
+M025868
+025869
+M025869
+025870
+M025870
+025871
+M025871
+025872
+M025872
+025873
+M025873
+025874
+M025874
+025875
+M025875
+025876
+M025876
+025877
+M025877
+025878
+M025878
+025883
+M025883
+025884
+M025884
+025885
+M025885
+025886
+M025886
+025887
+M025887
+025888
+M025888
+025908
+M025908
+025909
+M025909
+025910
+M025910
+025911
+M025911
+025912
+M025912
+025913
+M025913
+025914
+M025914
+025915
+M025915
+025916
+M025916
+025917
+M025917
+025918
+M025918
+025919
+M025919
+025920
+M025920
+025921
+M025921
+025922
+M025922
+025923
+M025923
+025924
+M025924
+025925
+M025925
+025926
+M025926
+026001
+M026001
+026002
+M026002
+026003
+M026003
+026025
+M026025
+026026
+M026026
+026027
+M026027
+026028
+M026028
+026029
+M026029
+026046
+M026046
+026047
+M026047
+026048
+M026048
+026049
+M026049
+026050
+M026050
+026051
+M026051
+026052
+M026052
+026053
+M026053
+026054
+M026054
+026055
+M026055
+026056
+M026056
+026057
+M026057
+026058
+M026058
+026059
+M026059
+026060
+M026060
+026106
+M026106
+026107
+M026107
+026108
+M026108
+026109
+M026109
+026167
+M026167
+026168
+M026168
+026169
+M026169
+026170
+M026170
+026171
+M026171
+026172
+M026172
+026173
+M026173
+026174
+M026174
+026175
+M026175
+026176
+M026176
+026177
+M026177
+026178
+M026178
+026179
+M026179
+026180
+M026180
+026181
+M026181
+026182
+M026182
+026183
+M026183
+026184
+M026184
+026185
+M026185
+026186
+M026186
+026187
+M026187
+026188
+M026188
+026189
+M026189
+026190
+M026190
+026191
+M026191
+026192
+M026192
+026193
+M026193
+026194
+M026194
+026195
+M026195
+026196
+M026196
+026197
+M026197
+026198
+M026198
+026199
+M026199
+026200
+M026200
+026201
+M026201
+026202
+M026202
+026203
+M026203
+026204
+M026204
+026205
+M026205
+026206
+M026206
+026247
+M026247
+026248
+M026248
+026249
+M026249
+026250
+M026250
+026251
+M026251
+026252
+M026252
+026253
+M026253
+026256
+M026256
+026257
+M026257
+026258
+M026258
+026259
+M026259
+026260
+M026260
+026280
+M026280
+026281
+M026281
+026282
+M026282
+026283
+M026283
+026284
+M026284
+026285
+M026285
+026286
+M026286
+026287
+M026287
+026288
+M026288
+026289
+M026289
+026329
+M026329
+026330
+M026330
+026331
+M026331
+026332
+M026332
+026333
+M026333
+026334
+M026334
+026340
+M026340
+026341
+M026341
+026342
+M026342
+026343
+M026343
+026344
+M026344
+026345
+M026345
+026346
+M026346
+026347
+M026347
+026348
+M026348
+026349
+M026349
+026350
+M026350
+026351
+M026351
+026352
+M026352
+026353
+M026353
+026354
+M026354
+026355
+M026355
+026356
+M026356
+026357
+M026357
+026358
+M026358
+026359
+M026359
+026360
+M026360
+026361
+M026361
+026362
+M026362
+026363
+M026363
+026364
+M026364
+026365
+M026365
+026366
+M026366
+026381
+M026381
+026382
+M026382
+026383
+M026383
+026384
+M026384
+026385
+M026385
+026437
+M026437
+026438
+M026438
+026439
+M026439
+026440
+M026440
+026441
+M026441
+026442
+M026442
+026443
+M026443
+026444
+M026444
+026445
+M026445
+026446
+M026446
+026447
+M026447
+026448
+M026448
+026449
+M026449
+026450
+M026450
+026451
+M026451
+026452
+M026452
+026453
+M026453
+026454
+M026454
+026455
+M026455
+026456
+M026456
+026457
+M026457
+026458
+M026458
+026459
+M026459
+026460
+M026460
+026461
+M026461
+026462
+M026462
+026463
+M026463
+026464
+M026464
+026465
+M026465
+026466
+M026466
+026467
+M026467
+026468
+M026468
+026469
+M026469
+026470
+M026470
+026471
+M026471
+026472
+M026472
+026473
+M026473
+026474
+M026474
+026475
+M026475
+026476
+M026476
+026477
+M026477
+026478
+M026478
+026479
+M026479
+026480
+M026480
+026481
+M026481
+026482
+M026482
+026493
+M026493
+026494
+M026494
+026495
+M026495
+026496
+M026496
+026497
+M026497
+026498
+M026498
+026537
+M026537
+026538
+M026538
+026539
+M026539
+026540
+M026540
+026541
+M026541
+026542
+M026542
+026543
+M026543
+026544
+M026544
+026545
+M026545
+026546
+M026546
+026547
+M026547
+026548
+M026548
+026549
+M026549
+026550
+M026550
+026551
+M026551
+026557
+M026557
+026558
+M026558
+026559
+M026559
+026560
+M026560
+026561
+M026561
+026562
+M026562
+026563
+M026563
+026579
+M026579
+026580
+M026580
+026581
+M026581
+026582
+M026582
+026583
+M026583
+026584
+M026584
+026585
+M026585
+026658
+M026658
+026659
+M026659
+026660
+M026660
+026661
+M026661
+026662
+M026662
+026663
+M026663
+026664
+M026664
+026665
+M026665
+026679
+M026679
+026680
+M026680
+026681
+M026681
+026682
+M026682
+026683
+M026683
+026684
+M026684
+026685
+M026685
+026686
+M026686
+026687
+M026687
+026688
+M026688
+026689
+M026689
+026690
+M026690
+026691
+M026691
+026692
+M026692
+026693
+M026693
+026694
+M026694
+026695
+M026695
+026696
+M026696
+026697
+M026697
+026698
+M026698
+026699
+M026699
+026700
+M026700
+026701
+M026701
+026702
+M026702
+026703
+M026703
+026704
+M026704
+026705
+M026705
+026706
+M026706
+026707
+M026707
+026708
+M026708
+026709
+M026709
+026710
+M026710
+026711
+M026711
+026712
+M026712
+026713
+M026713
+026714
+M026714
+026715
+M026715
+026716
+M026716
+026717
+M026717
+026718
+M026718
+026719
+M026719
+026720
+M026720
+026721
+M026721
+026722
+M026722
+026723
+M026723
+026724
+M026724
+026725
+M026725
+026726
+M026726
+026727
+M026727
+026739
+M026739
+026740
+M026740
+026741
+M026741
+026742
+M026742
+026743
+M026743
+026744
+M026744
+026836
+M026836
+026837
+M026837
+026916
+M026916
+026917
+M026917
+026918
+M026918
+026919
+M026919
+026920
+M026920
+026921
+M026921
+026922
+M026922
+026923
+M026923
+026924
+M026924
+026925
+M026925
+026926
+M026926
+026927
+M026927
+026928
+M026928
+026929
+M026929
+026930
+M026930
+026931
+M026931
+026932
+M026932
+026933
+M026933
+026950
+M026950
+026951
+M026951
+026952
+M026952
+026953
+M026953
+026954
+M026954
+026955
+M026955
+026956
+M026956
+026957
+M026957
+026958
+M026958
+026959
+M026959
+026960
+M026960
+026961
+M026961
+026962
+M026962
+026985
+M026985
+026986
+M026986
+026987
+M026987
+026988
+M026988
+026989
+M026989
+026990
+M026990
+026991
+M026991
+027021
+M027021
+027022
+M027022
+027023
+M027023
+027024
+M027024
+027025
+M027025
+027026
+M027026
+027027
+M027027
+027086
+M027086
+027087
+M027087
+027088
+M027088
+027148
+M027148
+027149
+M027149
+027150
+M027150
+027151
+M027151
+027152
+M027152
+027153
+M027153
+027154
+M027154
+027155
+M027155
+027156
+M027156
+027157
+M027157
+027158
+M027158
+027159
+M027159
+027160
+M027160
+027161
+M027161
+027162
+M027162
+027163
+M027163
+027164
+M027164
+027165
+M027165
+027166
+M027166
+027167
+M027167
+027168
+M027168
+027169
+M027169
+027170
+M027170
+027171
+M027171
+027172
+M027172
+027173
+M027173
+027174
+M027174
+027175
+M027175
+027176
+M027176
+027177
+M027177
+027178
+M027178
+027232
+M027232
+027233
+M027233
+027234
+M027234
+027235
+M027235
+027236
+M027236
+027253
+M027253
+027254
+M027254
+027255
+M027255
+027256
+M027256
+027257
+M027257
+027258
+M027258
+027259
+M027259
+027260
+M027260
+027261
+M027261
+027262
+M027262
+027263
+M027263
+027264
+M027264
+027265
+M027265
+027266
+M027266
+027267
+M027267
+027268
+M027268
+027269
+M027269
+027270
+M027270
+027271
+M027271
+027272
+M027272
+027273
+M027273
+027274
+M027274
+027275
+M027275
+027276
+M027276
+027330
+M027330
+027331
+M027331
+027332
+M027332
+027333
+M027333
+027334
+M027334
+027335
+M027335
+027336
+M027336
+027337
+M027337
+027338
+M027338
+027339
+M027339
+027340
+M027340
+027341
+M027341
+027342
+M027342
+027343
+M027343
+027344
+M027344
+027345
+M027345
+027346
+M027346
+027347
+M027347
+027348
+M027348
+027349
+M027349
+027350
+M027350
+027351
+M027351
+027352
+M027352
+027353
+M027353
+027354
+M027354
+027355
+M027355
+027356
+M027356
+027357
+M027357
+027358
+M027358
+027359
+M027359
+027360
+M027360
+027361
+M027361
+027362
+M027362
+027363
+M027363
+027364
+M027364
+027365
+M027365
+027366
+M027366
+027367
+M027367
+027368
+M027368
+027369
+M027369
+027370
+M027370
+027371
+M027371
+027372
+M027372
+027373
+M027373
+027374
+M027374
+027375
+M027375
+027376
+M027376
+027377
+M027377
+027378
+M027378
+027379
+M027379
+027380
+M027380
+027395
+M027395
+027396
+M027396
+027397
+M027397
+027398
+M027398
+027399
+M027399
+027400
+M027400
+027401
+M027401
+027402
+M027402
+027403
+M027403
+027404
+M027404
+027405
+M027405
+027406
+M027406
+027407
+M027407
+027408
+M027408
+027409
+M027409
+027410
+M027410
+027411
+M027411
+027412
+M027412
+027413
+M027413
+027414
+M027414
+027462
+M027462
+027463
+M027463
+027469
+M027469
+027470
+M027470
+027471
+M027471
+027472
+M027472
+027473
+M027473
+027474
+M027474
+027475
+M027475
+027476
+M027476
+027477
+M027477
+027519
+M027519
+027520
+M027520
+027521
+M027521
+027522
+M027522
+027523
+M027523
+027542
+M027542
+027543
+M027543
+027544
+M027544
+027545
+M027545
+027546
+M027546
+027547
+M027547
+027548
+M027548
+027549
+M027549
+027550
+M027550
+027551
+M027551
+027552
+M027552
+027553
+M027553
+027554
+M027554
+027555
+M027555
+027556
+M027556
+027557
+M027557
+027558
+M027558
+027559
+M027559
+027560
+M027560
+027561
+M027561
+027562
+M027562
+027563
+M027563
+027564
+M027564
+027565
+M027565
+027566
+M027566
+027567
+M027567
+027568
+M027568
+027569
+M027569
+027570
+M027570
+027571
+M027571
+027572
+M027572
+027573
+M027573
+027574
+M027574
+027581
+M027581
+027582
+M027582
+027583
+M027583
+027584
+M027584
+027585
+M027585
+027586
+M027586
+027587
+M027587
+027588
+M027588
+027589
+M027589
+027590
+M027590
+027612
+M027612
+027613
+M027613
+027614
+M027614
+027615
+M027615
+027616
+M027616
+027617
+M027617
+027618
+M027618
+027619
+M027619
+027620
+M027620
+027621
+M027621
+027622
+M027622
+027623
+M027623
+027624
+M027624
+027625
+M027625
+027626
+M027626
+027627
+M027627
+027628
+M027628
+027629
+M027629
+027630
+M027630
+027631
+M027631
+027632
+M027632
+027633
+M027633
+027634
+M027634
+027635
+M027635
+027636
+M027636
+027637
+M027637
+027638
+M027638
+027639
+M027639
+027640
+M027640
+027641
+M027641
+027642
+M027642
+027643
+M027643
+027644
+M027644
+027645
+M027645
+027646
+M027646
+027721
+M027721
+027722
+M027722
+027723
+M027723
+027724
+M027724
+027725
+M027725
+027726
+M027726
+027727
+M027727
+027763
+M027763
+027764
+M027764
+027765
+M027765
+027766
+M027766
+027767
+M027767
+027768
+M027768
+027769
+M027769
+027770
+M027770
+027771
+M027771
+027772
+M027772
+027773
+M027773
+027823
+M027823
+027824
+M027824
+027825
+M027825
+027826
+M027826
+027827
+M027827
+027828
+M027828
+027829
+M027829
+027830
+M027830
+027831
+M027831
+027876
+M027876
+027877
+M027877
+027878
+M027878
+027879
+M027879
+027880
+M027880
+027881
+M027881
+027912
+M027912
+027913
+M027913
+027914
+M027914
+027915
+M027915
+027916
+M027916
+027917
+M027917
+027918
+M027918
+027919
+M027919
+027920
+M027920
+027921
+M027921
+027922
+M027922
+028018
+M028018
+028019
+M028019
+028020
+M028020
+028049
+M028049
+028050
+M028050
+028051
+M028051
+028052
+M028052
+028069
+M028069
+028070
+M028070
+028071
+M028071
+028072
+M028072
+028073
+M028073
+028121
+M028121
+028122
+M028122
+028123
+M028123
+028170
+M028170
+028171
+M028171
+028172
+M028172
+028173
+M028173
+028174
+M028174
+028175
+M028175
+028176
+M028176
+028177
+M028177
+028178
+M028178
+028179
+M028179
+028180
+M028180
+028181
+M028181
+028224
+M028224
+028225
+M028225
+028226
+M028226
+028227
+M028227
+028228
+M028228
+028229
+M028229
+028230
+M028230
+028231
+M028231
+028232
+M028232
+028233
+M028233
+028234
+M028234
+028235
+M028235
+028236
+M028236
+028237
+M028237
+028284
+M028284
+028285
+M028285
+028286
+M028286
+028287
+M028287
+028288
+M028288
+028289
+M028289
+028290
+M028290
+028291
+M028291
+028292
+M028292
+028293
+M028293
+028294
+M028294
+028295
+M028295
+028296
+M028296
+028297
+M028297
+028298
+M028298
+028299
+M028299
+028300
+M028300
+028301
+M028301
+028302
+M028302
+028312
+M028312
+028313
+M028313
+028314
+M028314
+028315
+M028315
+028316
+M028316
+028317
+M028317
+028318
+M028318
+028319
+M028319
+028320
+M028320
+028321
+M028321
+028322
+M028322
+028359
+M028359
+028360
+M028360
+028361
+M028361
+028362
+M028362
+028363
+M028363
+028364
+M028364
+028365
+M028365
+028366
+M028366
+028367
+M028367
+028383
+M028383
+028384
+M028384
+028385
+M028385
+028386
+M028386
+028387
+M028387
+028388
+M028388
+028425
+M028425
+028426
+M028426
+028427
+M028427
+028428
+M028428
+028429
+M028429
+028430
+M028430
+028431
+M028431
+028432
+M028432
+028433
+M028433
+028434
+M028434
+028435
+M028435
+028436
+M028436
+028437
+M028437
+028438
+M028438
+028439
+M028439
+028440
+M028440
+028441
+M028441
+028442
+M028442
+028443
+M028443
+028444
+M028444
+028445
+M028445
+028446
+M028446
+028447
+M028447
+028448
+M028448
+028449
+M028449
+028450
+M028450
+028451
+M028451
+028452
+M028452
+028453
+M028453
+028454
+M028454
+028455
+M028455
+028456
+M028456
+028457
+M028457
+028458
+M028458
+028459
+M028459
+028480
+M028480
+028481
+M028481
+028482
+M028482
+028483
+M028483
+028484
+M028484
+028485
+M028485
+028486
+M028486
+028487
+M028487
+028488
+M028488
+028489
+M028489
+028490
+M028490
+028491
+M028491
+028492
+M028492
+028530
+M028530
+028531
+M028531
+028532
+M028532
+028533
+M028533
+028547
+M028547
+028548
+M028548
+028549
+M028549
+028550
+M028550
+028565
+M028565
+028566
+M028566
+028567
+M028567
+028594
+M028594
+028595
+M028595
+028596
+M028596
+028597
+M028597
+028598
+M028598
+028599
+M028599
+028600
+M028600
+028601
+M028601
+028602
+M028602
+028603
+M028603
+028604
+M028604
+028605
+M028605
+028606
+M028606
+028643
+M028643
+028644
+M028644
+028645
+M028645
+028646
+M028646
+028647
+M028647
+028648
+M028648
+028655
+M028655
+028656
+M028656
+028657
+M028657
+028658
+M028658
+028659
+M028659
+028660
+M028660
+028661
+M028661
+028662
+M028662
+028747
+M028747
+028748
+M028748
+028749
+M028749
+028838
+M028838
+028839
+M028839
+028840
+M028840
+028841
+M028841
+028842
+M028842
+028843
+M028843
+028879
+M028879
+028880
+M028880
+028881
+M028881
+028882
+M028882
+028883
+M028883
+028884
+M028884
+028885
+M028885
+028886
+M028886
+028887
+M028887
+028888
+M028888
+028889
+M028889
+028937
+M028937
+028938
+M028938
+028939
+M028939
+028940
+M028940
+028941
+M028941
+028942
+M028942
+028943
+M028943
+028944
+M028944
+028945
+M028945
+028946
+M028946
+028947
+M028947
+028948
+M028948
+028949
+M028949
+028950
+M028950
+028951
+M028951
+028952
+M028952
+028953
+M028953
+028954
+M028954
+028955
+M028955
+028956
+M028956
+028957
+M028957
+028958
+M028958
+028959
+M028959
+028966
+M028966
+028967
+M028967
+028968
+M028968
+028969
+M028969
+028970
+M028970
+029011
+M029011
+029012
+M029012
+029013
+M029013
+029014
+M029014
+029015
+M029015
+029016
+M029016
+029017
+M029017
+029018
+M029018
+029019
+M029019
+029021
+M029021
+029022
+M029022
+029023
+M029023
+029024
+M029024
+029025
+M029025
+029026
+M029026
+029027
+M029027
+029028
+M029028
+029029
+M029029
+029030
+M029030
+029031
+M029031
+029032
+M029032
+029033
+M029033
+029034
+M029034
+029035
+M029035
+029036
+M029036
+029037
+M029037
+029038
+M029038
+029039
+M029039
+029040
+M029040
+029041
+M029041
+029054
+M029054
+029055
+M029055
+029056
+M029056
+029057
+M029057
+029058
+M029058
+029059
+M029059
+029060
+M029060
+029061
+M029061
+029062
+M029062
+029063
+M029063
+029064
+M029064
+029065
+M029065
+029066
+M029066
+029067
+M029067
+029068
+M029068
+029069
+M029069
+029070
+M029070
+029071
+M029071
+029072
+M029072
+029076
+M029076
+029077
+M029077
+029078
+M029078
+029079
+M029079
+029080
+M029080
+029135
+M029135
+029136
+M029136
+029137
+M029137
+029138
+M029138
+029139
+M029139
+029140
+M029140
+029141
+M029141
+029142
+M029142
+029143
+M029143
+029144
+M029144
+029145
+M029145
+029146
+M029146
+029147
+M029147
+029148
+M029148
+029149
+M029149
+029150
+M029150
+029151
+M029151
+029152
+M029152
+029153
+M029153
+029154
+M029154
+029155
+M029155
+029156
+M029156
+029157
+M029157
+029158
+M029158
+029159
+M029159
+029221
+M029221
+029222
+M029222
+029223
+M029223
+029224
+M029224
+029225
+M029225
+029226
+M029226
+029227
+M029227
+029228
+M029228
+029229
+M029229
+029230
+M029230
+029275
+M029275
+029276
+M029276
+029277
+M029277
+029286
+M029286
+029287
+M029287
+029288
+M029288
+029289
+M029289
+029290
+M029290
+029291
+M029291
+029292
+M029292
+029298
+M029298
+029299
+M029299
+029300
+M029300
+029301
+M029301
+029343
+M029343
+029344
+M029344
+029345
+M029345
+029346
+M029346
+029347
+M029347
+029348
+M029348
+029349
+M029349
+029350
+M029350
+029351
+M029351
+029352
+M029352
+029353
+M029353
+029354
+M029354
+029355
+M029355
+029356
+M029356
+029357
+M029357
+029358
+M029358
+029359
+M029359
+029360
+M029360
+029361
+M029361
+029362
+M029362
+029363
+M029363
+029364
+M029364
+029365
+M029365
+029366
+M029366
+029367
+M029367
+029368
+M029368
+029369
+M029369
+029370
+M029370
+029371
+M029371
+029372
+M029372
+029373
+M029373
+029374
+M029374
+029375
+M029375
+029376
+M029376
+029377
+M029377
+029378
+M029378
+029379
+M029379
+029380
+M029380
+029381
+M029381
+029382
+M029382
+029383
+M029383
+029384
+M029384
+029385
+M029385
+029386
+M029386
+029387
+M029387
+029388
+M029388
+029401
+M029401
+029402
+M029402
+029403
+M029403
+029404
+M029404
+029405
+M029405
+029406
+M029406
+029407
+M029407
+029408
+M029408
+029409
+M029409
+029410
+M029410
+029411
+M029411
+029412
+M029412
+029413
+M029413
+029414
+M029414
+029529
+M029529
+029530
+M029530
+029531
+M029531
+029532
+M029532
+029533
+M029533
+029569
+M029569
+029570
+M029570
+029571
+M029571
+029572
+M029572
+029573
+M029573
+029574
+M029574
+029575
+M029575
+029576
+M029576
+029577
+M029577
+029578
+M029578
+029579
+M029579
+029580
+M029580
+029581
+M029581
+029582
+M029582
+029583
+M029583
+029584
+M029584
+029585
+M029585
+029586
+M029586
+029587
+M029587
+029588
+M029588
+029589
+M029589
+029590
+M029590
+029591
+M029591
+029592
+M029592
+029611
+M029611
+029612
+M029612
+029613
+M029613
+029614
+M029614
+029638
+M029638
+029639
+M029639
+029640
+M029640
+029641
+M029641
+029642
+M029642
+029643
+M029643
+029644
+M029644
+029645
+M029645
+029646
+M029646
+029647
+M029647
+029648
+M029648
+029676
+M029676
+029677
+M029677
+029678
+M029678
+029679
+M029679
+029680
+M029680
+029681
+M029681
+029682
+M029682
+029683
+M029683
+029764
+M029764
+029765
+M029765
+029766
+M029766
+029767
+M029767
+029768
+M029768
+029769
+M029769
+029792
+M029792
+029793
+M029793
+029794
+M029794
+029795
+M029795
+029796
+M029796
+029797
+M029797
+029798
+M029798
+029799
+M029799
+029800
+M029800
+029801
+M029801
+029847
+M029847
+029848
+M029848
+029849
+M029849
+029850
+M029850
+029851
+M029851
+029885
+M029885
+029886
+M029886
+029887
+M029887
+029888
+M029888
+029889
+M029889
+029890
+M029890
+029891
+M029891
+029892
+M029892
+029893
+M029893
+029894
+M029894
+029895
+M029895
+029896
+M029896
+029897
+M029897
+029898
+M029898
+029899
+M029899
+029900
+M029900
+029901
+M029901
+029902
+M029902
+029903
+M029903
+029904
+M029904
+029905
+M029905
+029906
+M029906
+029916
+M029916
+029917
+M029917
+029918
+M029918
+029919
+M029919
+029920
+M029920
+029921
+M029921
+029922
+M029922
+029923
+M029923
+029924
+M029924
+029925
+M029925
+029926
+M029926
+029927
+M029927
+029928
+M029928
+029929
+M029929
+029930
+M029930
+029958
+M029958
+029959
+M029959
+029960
+M029960
+029961
+M029961
+029962
+M029962
+030041
+M030041
+030042
+M030042
+030043
+M030043
+030044
+M030044
+030045
+M030045
+030046
+M030046
+030107
+M030107
+030108
+M030108
+030109
+M030109
+030110
+M030110
+030176
+M030176
+030177
+M030177
+030178
+M030178
+030179
+M030179
+030180
+M030180
+030181
+M030181
+030182
+M030182
+030183
+M030183
+030184
+M030184
+030185
+M030185
+030186
+M030186
+030187
+M030187
+030188
+M030188
+030189
+M030189
+030190
+M030190
+030191
+M030191
+030192
+M030192
+030193
+M030193
+030194
+M030194
+030198
+M030198
+030199
+M030199
+030200
+M030200
+030201
+M030201
+030202
+M030202
+030203
+M030203
+030204
+M030204
+030205
+M030205
+030245
+M030245
+030246
+M030246
+030247
+M030247
+030248
+M030248
+030249
+M030249
+030250
+M030250
+030251
+M030251
+030252
+M030252
+030253
+M030253
+030254
+M030254
+030255
+M030255
+030256
+M030256
+030257
+M030257
+030258
+M030258
+030259
+M030259
+030260
+M030260
+030261
+M030261
+030262
+M030262
+030336
+M030336
+030337
+M030337
+030338
+M030338
+030339
+M030339
+030340
+M030340
+030341
+M030341
+030342
+M030342
+030343
+M030343
+030344
+M030344
+030345
+M030345
+030346
+M030346
+030347
+M030347
+030348
+M030348
+030349
+M030349
+030350
+M030350
+030351
+M030351
+030352
+M030352
+030353
+M030353
+030354
+M030354
+030355
+M030355
+030384
+M030384
+030385
+M030385
+030386
+M030386
+030387
+M030387
+030388
+M030388
+030389
+M030389
+030390
+M030390
+030396
+M030396
+030397
+M030397
+030398
+M030398
+030399
+M030399
+030400
+M030400
+030401
+M030401
+030431
+M030431
+030432
+M030432
+030433
+M030433
+030434
+M030434
+030435
+M030435
+030436
+M030436
+030437
+M030437
+030583
+M030583
+030584
+M030584
+030585
+M030585
+030586
+M030586
+030587
+M030587
+030613
+M030613
+030614
+M030614
+030615
+M030615
+030616
+M030616
+030617
+M030617
+030618
+M030618
+030619
+M030619
+030620
+M030620
+030665
+M030665
+030666
+M030666
+030667
+M030667
+030668
+M030668
+030669
+M030669
+030670
+M030670
+030671
+M030671
+030672
+M030672
+030673
+M030673
+030674
+M030674
+030675
+M030675
+030676
+M030676
+030677
+M030677
+030678
+M030678
+030679
+M030679
+030680
+M030680
+030681
+M030681
+030682
+M030682
+030683
+M030683
+030684
+M030684
+030685
+M030685
+030686
+M030686
+030687
+M030687
+030688
+M030688
+030720
+M030720
+030721
+M030721
+030722
+M030722
+030723
+M030723
+030724
+M030724
+030725
+M030725
+030726
+M030726
+030766
+M030766
+030767
+M030767
+030768
+M030768
+030769
+M030769
+030770
+M030770
+030771
+M030771
+030772
+M030772
+030773
+M030773
+030774
+M030774
+030775
+M030775
+030776
+M030776
+030777
+M030777
+030778
+M030778
+030779
+M030779
+030780
+M030780
+030781
+M030781
+030782
+M030782
+030783
+M030783
+030784
+M030784
+030785
+M030785
+030786
+M030786
+030787
+M030787
+030788
+M030788
+030789
+M030789
+030864
+M030864
+030865
+M030865
+030866
+M030866
+030867
+M030867
+030868
+M030868
+030869
+M030869
+030870
+M030870
+030871
+M030871
+030872
+M030872
+030873
+M030873
+030874
+M030874
+030875
+M030875
+030876
+M030876
+030877
+M030877
+030878
+M030878
+030879
+M030879
+030880
+M030880
+030881
+M030881
+030882
+M030882
+030883
+M030883
+030884
+M030884
+030885
+M030885
+030886
+M030886
+030887
+M030887
+030888
+M030888
+030889
+M030889
+030890
+M030890
+030891
+M030891
+030892
+M030892
+030893
+M030893
+030894
+M030894
+030900
+M030900
+030901
+M030901
+030902
+M030902
+030903
+M030903
+030904
+M030904
+030905
+M030905
+030906
+M030906
+030907
+M030907
+030908
+M030908
+030909
+M030909
+030910
+M030910
+030911
+M030911
+030912
+M030912
+030913
+M030913
+030914
+M030914
+030915
+M030915
+030916
+M030916
+030917
+M030917
+030918
+M030918
+030919
+M030919
+030921
+M030921
+030922
+M030922
+030923
+M030923
+030924
+M030924
+030925
+M030925
+030926
+M030926
+030927
+M030927
+030928
+M030928
+030929
+M030929
+030930
+M030930
+030931
+M030931
+030932
+M030932
+030933
+M030933
+030934
+M030934
+030935
+M030935
+030936
+M030936
+030937
+M030937
+030938
+M030938
+031000
+M031000
+031001
+M031001
+031002
+M031002
+031030
+M031030
+031031
+M031031
+031032
+M031032
+031033
+M031033
+031034
+M031034
+031035
+M031035
+031036
+M031036
+031037
+M031037
+031038
+M031038
+031039
+M031039
+031040
+M031040
+031041
+M031041
+031052
+M031052
+031053
+M031053
+031054
+M031054
+031055
+M031055
+031056
+M031056
+031057
+M031057
+031058
+M031058
+031059
+M031059
+031060
+M031060
+031061
+M031061
+031062
+M031062
+031063
+M031063
+031064
+M031064
+031065
+M031065
+031066
+M031066
+031067
+M031067
+031068
+M031068
+031069
+M031069
+031070
+M031070
+031071
+M031071
+031072
+M031072
+031073
+M031073
+031074
+M031074
+031075
+M031075
+031076
+M031076
+031077
+M031077
+031083
+M031083
+031084
+M031084
+031085
+M031085
+031086
+M031086
+031087
+M031087
+031088
+M031088
+031089
+M031089
+031090
+M031090
+031091
+M031091
+031092
+M031092
+031093
+M031093
+031094
+M031094
+031095
+M031095
+031096
+M031096
+031097
+M031097
+031098
+M031098
+031126
+M031126
+031127
+M031127
+031128
+M031128
+031482
+M031482
+031483
+M031483
+031484
+M031484
+031485
+M031485
+031486
+M031486
+031487
+M031487
+031488
+M031488
+031489
+M031489
+031490
+M031490
+031491
+M031491
+031492
+M031492
+031493
+M031493
+031494
+M031494
+031606
+M031606
+031607
+M031607
+031608
+M031608
+031609
+M031609
+031642
+M031642
+031643
+M031643
+031644
+M031644
+031645
+M031645
+031646
+M031646
+031647
+M031647
+031648
+M031648
+031649
+M031649
+031650
+M031650
+031651
+M031651
+031652
+M031652
+031653
+M031653
+031821
+M031821
+031822
+M031822
+031823
+M031823
+031824
+M031824
+031825
+M031825
+031840
+M031840
+031841
+M031841
+031842
+M031842
+031843
+M031843
+031844
+M031844
+031873
+M031873
+031874
+M031874
+031875
+M031875
+031876
+M031876
+031877
+M031877
+031878
+M031878
+031879
+M031879
+031880
+M031880
+031881
+M031881
+031882
+M031882
+031903
+M031903
+031904
+M031904
+031905
+M031905
+031906
+M031906
+031907
+M031907
+031908
+M031908
+031909
+M031909
+031910
+M031910
+031911
+M031911
+031912
+M031912
+031913
+M031913
+031914
+M031914
+031915
+M031915
+031916
+M031916
+031917
+M031917
+031918
+M031918
+031919
+M031919
+031920
+M031920
+031921
+M031921
+031922
+M031922
+031923
+M031923
+031924
+M031924
+031925
+M031925
+031935
+M031935
+031936
+M031936
+031937
+M031937
+031938
+M031938
+031939
+M031939
+031940
+M031940
+031941
+M031941
+031950
+M031950
+031951
+M031951
+031952
+M031952
+031953
+M031953
+031954
+M031954
+031955
+M031955
+031956
+M031956
+031957
+M031957
+031958
+M031958
+031959
+M031959
+031960
+M031960
+031961
+M031961
+031962
+M031962
+031963
+M031963
+031964
+M031964
+031965
+M031965
+031966
+M031966
+031967
+M031967
+031968
+M031968
+031969
+M031969
+031970
+M031970
+031971
+M031971
+031972
+M031972
+031973
+M031973
+031974
+M031974
+031975
+M031975
+031976
+M031976
+031977
+M031977
+031978
+M031978
+031979
+M031979
+031980
+M031980
+031981
+M031981
+031982
+M031982
+031983
+M031983
+031984
+M031984
+031985
+M031985
+031986
+M031986
+031987
+M031987
+032007
+M032007
+032008
+M032008
+032009
+M032009
+032010
+M032010
+032011
+M032011
+032042
+M032042
+032043
+M032043
+032044
+M032044
+032045
+M032045
+032046
+M032046
+032047
+M032047
+032048
+M032048
+032049
+M032049
+032050
+M032050
+032051
+M032051
+032058
+M032058
+032059
+M032059
+032060
+M032060
+032061
+M032061
+032062
+M032062
+032063
+M032063
+032064
+M032064
+032065
+M032065
+032066
+M032066
+032067
+M032067
+032068
+M032068
+032069
+M032069
+032070
+M032070
+032071
+M032071
+032072
+M032072
+032073
+M032073
+032074
+M032074
+032075
+M032075
+032082
+M032082
+032083
+M032083
+032084
+M032084
+032090
+M032090
+032091
+M032091
+032092
+M032092
+032093
+M032093
+032094
+M032094
+032134
+M032134
+032135
+M032135
+032136
+M032136
+032137
+M032137
+032138
+M032138
+032139
+M032139
+032140
+M032140
+032177
+M032177
+032178
+M032178
+032179
+M032179
+032180
+M032180
+032181
+M032181
+032204
+M032204
+032205
+M032205
+032206
+M032206
+032207
+M032207
+032208
+M032208
+032209
+M032209
+032210
+M032210
+032211
+M032211
+032212
+M032212
+032213
+M032213
+032214
+M032214
+032230
+M032230
+032231
+M032231
+032232
+M032232
+032233
+M032233
+032234
+M032234
+032235
+M032235
+032236
+M032236
+032237
+M032237
+032238
+M032238
+032239
+M032239
+032240
+M032240
+032241
+M032241
+032242
+M032242
+032243
+M032243
+032244
+M032244
+032245
+M032245
+032246
+M032246
+032247
+M032247
+032248
+M032248
+032249
+M032249
+032250
+M032250
+032251
+M032251
+032252
+M032252
+032253
+M032253
+032254
+M032254
+032255
+M032255
+032256
+M032256
+032257
+M032257
+032258
+M032258
+032259
+M032259
+032260
+M032260
+032261
+M032261
+032262
+M032262
+032263
+M032263
+032264
+M032264
+032265
+M032265
+032266
+M032266
+032267
+M032267
+032268
+M032268
+032269
+M032269
+032270
+M032270
+032271
+M032271
+032272
+M032272
+032273
+M032273
+032274
+M032274
+032275
+M032275
+032276
+M032276
+032277
+M032277
+032278
+M032278
+032279
+M032279
+032280
+M032280
+032281
+M032281
+032335
+M032335
+032336
+M032336
+032337
+M032337
+032338
+M032338
+032339
+M032339
+032340
+M032340
+032379
+M032379
+032380
+M032380
+032381
+M032381
+032382
+M032382
+032383
+M032383
+032384
+M032384
+032385
+M032385
+032386
+M032386
+032387
+M032387
+032388
+M032388
+032389
+M032389
+032390
+M032390
+032391
+M032391
+032392
+M032392
+032393
+M032393
+032408
+M032408
+032409
+M032409
+032410
+M032410
+032411
+M032411
+032445
+M032445
+032446
+M032446
+032447
+M032447
+032448
+M032448
+032449
+M032449
+032450
+M032450
+032451
+M032451
+032452
+M032452
+032453
+M032453
+032454
+M032454
+032455
+M032455
+032465
+M032465
+032466
+M032466
+032467
+M032467
+032468
+M032468
+032469
+M032469
+032470
+M032470
+032471
+M032471
+032472
+M032472
+032473
+M032473
+032497
+M032497
+032498
+M032498
+032499
+M032499
+032500
+M032500
+032501
+M032501
+032502
+M032502
+032518
+M032518
+032519
+M032519
+032520
+M032520
+032521
+M032521
+032522
+M032522
+032523
+M032523
+032524
+M032524
+032525
+M032525
+032601
+M032601
+032602
+M032602
+032603
+M032603
+032604
+M032604
+032605
+M032605
+032651
+M032651
+032652
+M032652
+032653
+M032653
+032654
+M032654
+032655
+M032655
+032656
+M032656
+032657
+M032657
+032658
+M032658
+032659
+M032659
+032660
+M032660
+032661
+M032661
+032662
+M032662
+032663
+M032663
+032664
+M032664
+032665
+M032665
+032666
+M032666
+032667
+M032667
+032668
+M032668
+032669
+M032669
+032670
+M032670
+032671
+M032671
+032672
+M032672
+032673
+M032673
+032674
+M032674
+032708
+M032708
+032709
+M032709
+032710
+M032710
+032711
+M032711
+032712
+M032712
+032713
+M032713
+032714
+M032714
+032715
+M032715
+032716
+M032716
+032717
+M032717
+032718
+M032718
+032719
+M032719
+032720
+M032720
+032721
+M032721
+032722
+M032722
+032723
+M032723
+032801
+M032801
+032802
+M032802
+032803
+M032803
+032804
+M032804
+032806
+M032806
+032807
+M032807
+032808
+M032808
+032809
+M032809
+032810
+M032810
+032811
+M032811
+032812
+M032812
+032813
+M032813
+032814
+M032814
+032815
+M032815
+032816
+M032816
+032817
+M032817
+032818
+M032818
+032819
+M032819
+032820
+M032820
+032821
+M032821
+032822
+M032822
+032823
+M032823
+032824
+M032824
+032825
+M032825
+032826
+M032826
+032827
+M032827
+032828
+M032828
+032829
+M032829
+032830
+M032830
+032831
+M032831
+032832
+M032832
+032833
+M032833
+032834
+M032834
+032835
+M032835
+032836
+M032836
+032837
+M032837
+032838
+M032838
+032839
+M032839
+032840
+M032840
+032841
+M032841
+032842
+M032842
+032843
+M032843
+032844
+M032844
+032845
+M032845
+032846
+M032846
+032847
+M032847
+032848
+M032848
+032849
+M032849
+032850
+M032850
+032851
+M032851
+032852
+M032852
+032853
+M032853
+032854
+M032854
+032855
+M032855
+032856
+M032856
+032857
+M032857
+032858
+M032858
+032859
+M032859
+032860
+M032860
+032861
+M032861
+032862
+M032862
+032863
+M032863
+032864
+M032864
+032865
+M032865
+032866
+M032866
+032867
+M032867
+032868
+M032868
+032869
+M032869
+032870
+M032870
+032871
+M032871
+032872
+M032872
+032873
+M032873
+032874
+M032874
+032875
+M032875
+032876
+M032876
+032877
+M032877
+032878
+M032878
+032879
+M032879
+032880
+M032880
+032881
+M032881
+032882
+M032882
+032883
+M032883
+032884
+M032884
+032885
+M032885
+032886
+M032886
+032887
+M032887
+032888
+M032888
+032889
+M032889
+032890
+M032890
+032891
+M032891
+032892
+M032892
+032893
+M032893
+032894
+M032894
+032895
+M032895
+032896
+M032896
+032897
+M032897
+032898
+M032898
+032899
+M032899
+032900
+M032900
+032901
+M032901
+032902
+M032902
+032918
+M032918
+032919
+M032919
+032920
+M032920
+032921
+M032921
+032922
+M032922
+032923
+M032923
+032932
+M032932
+032933
+M032933
+032934
+M032934
+032935
+M032935
+032936
+M032936
+032937
+M032937
+032938
+M032938
+032939
+M032939
+032940
+M032940
+033045
+M033045
+033046
+M033046
+033047
+M033047
+033048
+M033048
+033055
+M033055
+033056
+M033056
+033057
+M033057
+033058
+M033058
+033059
+M033059
+033060
+M033060
+033061
+M033061
+033062
+M033062
+033063
+M033063
+033064
+M033064
+033073
+M033073
+033074
+M033074
+033075
+M033075
+033076
+M033076
+033077
+M033077
+033078
+M033078
+033079
+M033079
+033102
+M033102
+033103
+M033103
+033104
+M033104
+033105
+M033105
+033106
+M033106
+033107
+M033107
+033108
+M033108
+033109
+M033109
+033208
+M033208
+033209
+M033209
+033210
+M033210
+033211
+M033211
+033212
+M033212
+033213
+M033213
+033214
+M033214
+033215
+M033215
+033216
+M033216
+033217
+M033217
+033218
+M033218
+033219
+M033219
+033220
+M033220
+033221
+M033221
+033222
+M033222
+033223
+M033223
+033224
+M033224
+033225
+M033225
+033226
+M033226
+033227
+M033227
+033228
+M033228
+033264
+M033264
+033265
+M033265
+033266
+M033266
+033267
+M033267
+033268
+M033268
+033269
+M033269
+033270
+M033270
+033301
+M033301
+033302
+M033302
+033303
+M033303
+033304
+M033304
+033305
+M033305
+033306
+M033306
+033307
+M033307
+033308
+M033308
+033309
+M033309
+033310
+M033310
+033314
+M033314
+033315
+M033315
+033316
+M033316
+033317
+M033317
+033318
+M033318
+033319
+M033319
+033320
+M033320
+033321
+M033321
+033322
+M033322
+033323
+M033323
+033324
+M033324
+033325
+M033325
+033326
+M033326
+033327
+M033327
+033328
+M033328
+033329
+M033329
+033330
+M033330
+033331
+M033331
+033332
+M033332
+033333
+M033333
+033334
+M033334
+033335
+M033335
+033336
+M033336
+033338
+M033338
+033437
+M033437
+033438
+M033438
+033439
+M033439
+033466
+M033466
+033467
+M033467
+033468
+M033468
+033469
+M033469
+033470
+M033470
+033471
+M033471
+033472
+M033472
+033473
+M033473
+033474
+M033474
+033475
+M033475
+033476
+M033476
+033477
+M033477
+033478
+M033478
+033479
+M033479
+033480
+M033480
+033481
+M033481
+033482
+M033482
+033483
+M033483
+033484
+M033484
+033485
+M033485
+033486
+M033486
+033487
+M033487
+033488
+M033488
+033489
+M033489
+033490
+M033490
+033491
+M033491
+033492
+M033492
+033493
+M033493
+033494
+M033494
+033495
+M033495
+033496
+M033496
+033497
+M033497
+033498
+M033498
+033499
+M033499
+033500
+M033500
+033501
+M033501
+033502
+M033502
+033503
+M033503
+033504
+M033504
+033505
+M033505
+033506
+M033506
+033507
+M033507
+033508
+M033508
+033509
+M033509
+033510
+M033510
+033526
+M033526
+033527
+M033527
+033528
+M033528
+033529
+M033529
+033530
+M033530
+033531
+M033531
+033532
+M033532
+033533
+M033533
+033534
+M033534
+033535
+M033535
+033536
+M033536
+033537
+M033537
+033538
+M033538
+033539
+M033539
+033540
+M033540
+033541
+M033541
+033542
+M033542
+033543
+M033543
+033544
+M033544
+033545
+M033545
+033546
+M033546
+033547
+M033547
+033548
+M033548
+033549
+M033549
+033550
+M033550
+033551
+M033551
+033552
+M033552
+033553
+M033553
+033554
+M033554
+033555
+M033555
+033556
+M033556
+033557
+M033557
+033558
+M033558
+033559
+M033559
+033560
+M033560
+033561
+M033561
+033562
+M033562
+033563
+M033563
+033564
+M033564
+033565
+M033565
+033566
+M033566
+033567
+M033567
+033568
+M033568
+033569
+M033569
+033570
+M033570
+033571
+M033571
+033572
+M033572
+033700
+M033700
+033701
+M033701
+033702
+M033702
+033703
+M033703
+033704
+M033704
+033705
+M033705
+033706
+M033706
+033723
+M033723
+033724
+M033724
+033725
+M033725
+033726
+M033726
+033727
+M033727
+033736
+M033736
+033737
+M033737
+033738
+M033738
+033739
+M033739
+033740
+M033740
+033741
+M033741
+033742
+M033742
+033743
+M033743
+033744
+M033744
+033745
+M033745
+033746
+M033746
+033747
+M033747
+033748
+M033748
+033749
+M033749
+033750
+M033750
+033751
+M033751
+033752
+M033752
+033753
+M033753
+033754
+M033754
+033755
+M033755
+033756
+M033756
+033757
+M033757
+033758
+M033758
+033759
+M033759
+033760
+M033760
+033761
+M033761
+033762
+M033762
+033763
+M033763
+033764
+M033764
+033765
+M033765
+033766
+M033766
+033776
+M033776
+033777
+M033777
+033778
+M033778
+033779
+M033779
+033780
+M033780
+033781
+M033781
+033782
+M033782
+033896
+M033896
+033897
+M033897
+033898
+M033898
+033899
+M033899
+033900
+M033900
+033939
+M033939
+033940
+M033940
+033941
+M033941
+033947
+M033947
+033948
+M033948
+033949
+M033949
+033950
+M033950
+033965
+M033965
+033966
+M033966
+033967
+M033967
+033968
+M033968
+033969
+M033969
+033970
+M033970
+033971
+M033971
+033972
+M033972
+033973
+M033973
+033987
+M033987
+033988
+M033988
+033989
+M033989
+033990
+M033990
+034029
+M034029
+034030
+M034030
+034031
+M034031
+034032
+M034032
+034033
+M034033
+034034
+M034034
+034058
+M034058
+034059
+M034059
+034060
+M034060
+034061
+M034061
+034062
+M034062
+034063
+M034063
+034064
+M034064
+034065
+M034065
+034066
+M034066
+034069
+M034069
+034070
+M034070
+034071
+M034071
+034162
+M034162
+034163
+M034163
+034164
+M034164
+034165
+M034165
+034166
+M034166
+034167
+M034167
+034168
+M034168
+034169
+M034169
+034170
+M034170
+034171
+M034171
+034172
+M034172
+034173
+M034173
+034174
+M034174
+034175
+M034175
+034176
+M034176
+034177
+M034177
+034178
+M034178
+034179
+M034179
+034180
+M034180
+034210
+M034210
+034211
+M034211
+034212
+M034212
+034213
+M034213
+034214
+M034214
+034215
+M034215
+034216
+M034216
+034217
+M034217
+034218
+M034218
+034260
+M034260
+034261
+M034261
+034262
+M034262
+034263
+M034263
+034264
+M034264
+034265
+M034265
+034266
+M034266
+034267
+M034267
+034268
+M034268
+034269
+M034269
+034270
+M034270
+034271
+M034271
+034272
+M034272
+034273
+M034273
+034274
+M034274
+034275
+M034275
+034276
+M034276
+034277
+M034277
+034318
+M034318
+034319
+M034319
+034320
+M034320
+034321
+M034321
+034322
+M034322
+034323
+M034323
+034324
+M034324
+034325
+M034325
+034326
+M034326
+034327
+M034327
+034328
+M034328
+034329
+M034329
+034330
+M034330
+034331
+M034331
+034332
+M034332
+034333
+M034333
+034334
+M034334
+034336
+M034336
+034337
+M034337
+034338
+M034338
+034339
+M034339
+034340
+M034340
+034356
+M034356
+034357
+M034357
+034358
+M034358
+034403
+M034403
+034404
+M034404
+034405
+M034405
+034406
+M034406
+034407
+M034407
+034408
+M034408
+034409
+M034409
+034410
+M034410
+034411
+M034411
+034412
+M034412
+034413
+M034413
+034414
+M034414
+034415
+M034415
+034416
+M034416
+034417
+M034417
+034418
+M034418
+034419
+M034419
+034420
+M034420
+034421
+M034421
+034422
+M034422
+034423
+M034423
+034424
+M034424
+034425
+M034425
+034426
+M034426
+034427
+M034427
+034428
+M034428
+034429
+M034429
+034430
+M034430
+034431
+M034431
+034432
+M034432
+034433
+M034433
+034434
+M034434
+034435
+M034435
+034436
+M034436
+034437
+M034437
+034438
+M034438
+034444
+M034444
+034445
+M034445
+034446
+M034446
+034447
+M034447
+034448
+M034448
+034449
+M034449
+034450
+M034450
+034451
+M034451
+034452
+M034452
+034453
+M034453
+034454
+M034454
+034455
+M034455
+034456
+M034456
+034457
+M034457
+034458
+M034458
+034459
+M034459
+034460
+M034460
+034461
+M034461
+034462
+M034462
+034463
+M034463
+034497
+M034497
+034498
+M034498
+034499
+M034499
+034500
+M034500
+034501
+M034501
+034502
+M034502
+034503
+M034503
+034504
+M034504
+034505
+M034505
+034506
+M034506
+034507
+M034507
+034508
+M034508
+034509
+M034509
+034510
+M034510
+034511
+M034511
+034512
+M034512
+034513
+M034513
+034514
+M034514
+034515
+M034515
+034516
+M034516
+034517
+M034517
+034518
+M034518
+034519
+M034519
+034520
+M034520
+034564
+M034564
+034565
+M034565
+034566
+M034566
+034567
+M034567
+034568
+M034568
+034569
+M034569
+034570
+M034570
+034571
+M034571
+034572
+M034572
+034573
+M034573
+034574
+M034574
+034575
+M034575
+034576
+M034576
+034577
+M034577
+034578
+M034578
+034579
+M034579
+034580
+M034580
+034581
+M034581
+034582
+M034582
+034583
+M034583
+034584
+M034584
+034585
+M034585
+034586
+M034586
+034587
+M034587
+034605
+M034605
+034606
+M034606
+034607
+M034607
+034608
+M034608
+034609
+M034609
+034610
+M034610
+034611
+M034611
+034616
+M034616
+034617
+M034617
+034618
+M034618
+034619
+M034619
+034620
+M034620
+034621
+M034621
+034622
+M034622
+034623
+M034623
+034624
+M034624
+034625
+M034625
+034626
+M034626
+034627
+M034627
+034628
+M034628
+034629
+M034629
+034643
+M034643
+034644
+M034644
+034645
+M034645
+034646
+M034646
+034661
+M034661
+034662
+M034662
+034663
+M034663
+034664
+M034664
+034665
+M034665
+034666
+M034666
+034667
+M034667
+034668
+M034668
+034669
+M034669
+034670
+M034670
+034671
+M034671
+034672
+M034672
+034755
+M034755
+034756
+M034756
+034757
+M034757
+034758
+M034758
+034759
+M034759
+034760
+M034760
+034761
+M034761
+034762
+M034762
+034763
+M034763
+034780
+M034780
+034781
+M034781
+034782
+M034782
+034783
+M034783
+034784
+M034784
+034785
+M034785
+034786
+M034786
+034787
+M034787
+034788
+M034788
+034789
+M034789
+034790
+M034790
+034791
+M034791
+034792
+M034792
+034793
+M034793
+034794
+M034794
+034795
+M034795
+034796
+M034796
+034797
+M034797
+034798
+M034798
+034799
+M034799
+034800
+M034800
+034801
+M034801
+034802
+M034802
+034810
+M034810
+034811
+M034811
+034812
+M034812
+034813
+M034813
+034814
+M034814
+034815
+M034815
+034816
+M034816
+034817
+M034817
+034818
+M034818
+034819
+M034819
+034820
+M034820
+034821
+M034821
+034822
+M034822
+034823
+M034823
+034824
+M034824
+034825
+M034825
+034826
+M034826
+034827
+M034827
+034828
+M034828
+034829
+M034829
+034830
+M034830
+034831
+M034831
+034832
+M034832
+034833
+M034833
+034834
+M034834
+034835
+M034835
+034836
+M034836
+034837
+M034837
+034838
+M034838
+034839
+M034839
+034840
+M034840
+034841
+M034841
+034842
+M034842
+034843
+M034843
+034844
+M034844
+034845
+M034845
+034888
+M034888
+034889
+M034889
+034890
+M034890
+034891
+M034891
+034892
+M034892
+034893
+M034893
+034894
+M034894
+034895
+M034895
+034896
+M034896
+034897
+M034897
+034898
+M034898
+034899
+M034899
+034994
+M034994
+034995
+M034995
+034996
+M034996
+034997
+M034997
+034998
+M034998
+035127
+M035127
+035128
+M035128
+035129
+M035129
+035130
+M035130
+035131
+M035131
+035132
+M035132
+035133
+M035133
+035134
+M035134
+035135
+M035135
+035271
+M035271
+035272
+M035272
+035273
+M035273
+035274
+M035274
+035275
+M035275
+035276
+M035276
+035277
+M035277
+035278
+M035278
+035279
+M035279
+035280
+M035280
+035281
+M035281
+035282
+M035282
+035283
+M035283
+035284
+M035284
+035285
+M035285
+035286
+M035286
+035287
+M035287
+035288
+M035288
+035289
+M035289
+035290
+M035290
+035291
+M035291
+035292
+M035292
+035293
+M035293
+035295
+M035295
+035296
+M035296
+035297
+M035297
+035298
+M035298
+035299
+M035299
+035300
+M035300
+035301
+M035301
+035302
+M035302
+035303
+M035303
+035304
+M035304
+035305
+M035305
+035343
+M035343
+035344
+M035344
+035345
+M035345
+035346
+M035346
+035347
+M035347
+035348
+M035348
+035349
+M035349
+035350
+M035350
+035351
+M035351
+035352
+M035352
+035353
+M035353
+035354
+M035354
+035355
+M035355
+035375
+M035375
+035376
+M035376
+035377
+M035377
+035378
+M035378
+035379
+M035379
+035484
+M035484
+035485
+M035485
+035486
+M035486
+035487
+M035487
+035488
+M035488
+035489
+M035489
+035490
+M035490
+035491
+M035491
+035492
+M035492
+035493
+M035493
+035494
+M035494
+035495
+M035495
+035496
+M035496
+035527
+M035527
+035528
+M035528
+035529
+M035529
+035530
+M035530
+035531
+M035531
+035538
+M035538
+035539
+M035539
+035540
+M035540
+035541
+M035541
+035542
+M035542
+035564
+M035564
+035565
+M035565
+035566
+M035566
+035567
+M035567
+035568
+M035568
+035569
+M035569
+035570
+M035570
+035571
+M035571
+035572
+M035572
+035573
+M035573
+035574
+M035574
+035575
+M035575
+035576
+M035576
+035577
+M035577
+035578
+M035578
+035756
+M035756
+035757
+M035757
+035758
+M035758
+035759
+M035759
+035760
+M035760
+035812
+M035812
+035813
+M035813
+035814
+M035814
+035826
+M035826
+035827
+M035827
+035828
+M035828
+035829
+M035829
+035830
+M035830
+035918
+M035918
+035919
+M035919
+035920
+M035920
+035921
+M035921
+035922
+M035922
+035957
+M035957
+035958
+M035958
+035959
+M035959
+035960
+M035960
+035961
+M035961
+035967
+M035967
+035968
+M035968
+035969
+M035969
+035970
+M035970
+035971
+M035971
+036015
+M036015
+036016
+M036016
+036017
+M036017
+036018
+M036018
+036019
+M036019
+036026
+M036026
+036027
+M036027
+036028
+M036028
+036029
+M036029
+036030
+M036030
+036045
+M036045
+036046
+M036046
+036047
+M036047
+036048
+M036048
+036049
+M036049
+036050
+M036050
+036051
+M036051
+036052
+M036052
+036053
+M036053
+036054
+M036054
+036055
+M036055
+036056
+M036056
+036057
+M036057
+036058
+M036058
+036059
+M036059
+036060
+M036060
+036105
+M036105
+036106
+M036106
+036107
+M036107
+036108
+M036108
+036109
+M036109
+036110
+M036110
+036117
+M036117
+036118
+M036118
+036119
+M036119
+036120
+M036120
+036124
+M036124
+036125
+M036125
+036126
+M036126
+036127
+M036127
+036128
+M036128
+036129
+M036129
+036130
+M036130
+036131
+M036131
+036132
+M036132
+036133
+M036133
+036134
+M036134
+036135
+M036135
+036136
+M036136
+036137
+M036137
+036138
+M036138
+036139
+M036139
+036140
+M036140
+036165
+M036165
+036166
+M036166
+036167
+M036167
+036168
+M036168
+036169
+M036169
+036174
+M036174
+036175
+M036175
+036176
+M036176
+036177
+M036177
+036224
+M036224
+036225
+M036225
+036226
+M036226
+036227
+M036227
+036228
+M036228
+036375
+M036375
+036376
+M036376
+036377
+M036377
+036378
+M036378
+036379
+M036379
+036380
+M036380
+036381
+M036381
+036382
+M036382
+036383
+M036383
+036384
+M036384
+036385
+M036385
+036386
+M036386
+036387
+M036387
+036388
+M036388
+036389
+M036389
+036390
+M036390
+036391
+M036391
+036392
+M036392
+036423
+M036423
+036424
+M036424
+036448
+M036448
+036449
+M036449
+036450
+M036450
+036451
+M036451
+036452
+M036452
+036453
+M036453
+036454
+M036454
+036455
+M036455
+036456
+M036456
+036457
+M036457
+036458
+M036458
+036459
+M036459
+036460
+M036460
+036461
+M036461
+036462
+M036462
+036463
+M036463
+036464
+M036464
+036465
+M036465
+036466
+M036466
+036467
+M036467
+036468
+M036468
+036469
+M036469
+036470
+M036470
+036471
+M036471
+036472
+M036472
+036473
+M036473
+036501
+M036501
+036502
+M036502
+036503
+M036503
+036504
+M036504
+036505
+M036505
+036506
+M036506
+036507
+M036507
+036508
+M036508
+036509
+M036509
+036510
+M036510
+036511
+M036511
+036572
+M036572
+036573
+M036573
+036574
+M036574
+036575
+M036575
+036576
+M036576
+036577
+M036577
+036578
+M036578
+036579
+M036579
+036580
+M036580
+036581
+M036581
+036582
+M036582
+036622
+M036622
+036623
+M036623
+036624
+M036624
+036625
+M036625
+036626
+M036626
+036641
+M036641
+036642
+M036642
+036643
+M036643
+036644
+M036644
+036645
+M036645
+036646
+M036646
+036647
+M036647
+036648
+M036648
+036662
+M036662
+036663
+M036663
+036664
+M036664
+036696
+M036696
+036697
+M036697
+036698
+M036698
+036699
+M036699
+036700
+M036700
+036701
+M036701
+036702
+M036702
+036703
+M036703
+036712
+M036712
+036713
+M036713
+036741
+M036741
+036742
+M036742
+036743
+M036743
+036744
+M036744
+036745
+M036745
+036746
+M036746
+036747
+M036747
+036748
+M036748
+036749
+M036749
+036750
+M036750
+036751
+M036751
+036752
+M036752
+036753
+M036753
+036754
+M036754
+036755
+M036755
+036756
+M036756
+036757
+M036757
+036776
+M036776
+036777
+M036777
+036778
+M036778
+036779
+M036779
+036780
+M036780
+036781
+M036781
+036782
+M036782
+036783
+M036783
+036784
+M036784
+036785
+M036785
+036786
+M036786
+036787
+M036787
+036788
+M036788
+036816
+M036816
+036817
+M036817
+036818
+M036818
+036835
+M036835
+036836
+M036836
+036837
+M036837
+036904
+M036904
+036905
+M036905
+036906
+M036906
+036907
+M036907
+036908
+M036908
+036909
+M036909
+036910
+M036910
+036911
+M036911
+036912
+M036912
+036917
+M036917
+036918
+M036918
+036919
+M036919
+036920
+M036920
+036972
+M036972
+036973
+M036973
+036974
+M036974
+036975
+M036975
+036976
+M036976
+036977
+M036977
+036978
+M036978
+037007
+M037007
+037008
+M037008
+037009
+M037009
+037010
+M037010
+037011
+M037011
+037012
+M037012
+037013
+M037013
+037014
+M037014
+037015
+M037015
+037016
+M037016
+037017
+M037017
+037101
+M037101
+037102
+M037102
+037103
+M037103
+037104
+M037104
+037105
+M037105
+037106
+M037106
+037107
+M037107
+037108
+M037108
+037109
+M037109
+037115
+M037115
+037116
+M037116
+037117
+M037117
+037118
+M037118
+037119
+M037119
+037120
+M037120
+037121
+M037121
+037122
+M037122
+037123
+M037123
+037124
+M037124
+037125
+M037125
+037167
+M037167
+037168
+M037168
+037169
+M037169
+037170
+M037170
+037171
+M037171
+037172
+M037172
+037173
+M037173
+037232
+M037232
+037233
+M037233
+037234
+M037234
+037370
+M037370
+037371
+M037371
+037372
+M037372
+037373
+M037373
+037374
+M037374
+037375
+M037375
+037376
+M037376
+037377
+M037377
+037378
+M037378
+037379
+M037379
+037380
+M037380
+037381
+M037381
+037382
+M037382
+037383
+M037383
+037393
+M037393
+037394
+M037394
+037395
+M037395
+037396
+M037396
+037397
+M037397
+037398
+M037398
+037399
+M037399
+037400
+M037400
+037401
+M037401
+037402
+M037402
+037403
+M037403
+037404
+M037404
+037405
+M037405
+037406
+M037406
+037407
+M037407
+037408
+M037408
+037409
+M037409
+037410
+M037410
+037411
+M037411
+037412
+M037412
+037413
+M037413
+037414
+M037414
+037420
+M037420
+037421
+M037421
+037422
+M037422
+037423
+M037423
+037424
+M037424
+037425
+M037425
+037426
+M037426
+037427
+M037427
+037428
+M037428
+037429
+M037429
+037430
+M037430
+037431
+M037431
+037432
+M037432
+037433
+M037433
+037434
+M037434
+037435
+M037435
+037436
+M037436
+037437
+M037437
+037438
+M037438
+037439
+M037439
+037440
+M037440
+037441
+M037441
+037442
+M037442
+037443
+M037443
+037444
+M037444
+037445
+M037445
+037446
+M037446
+037473
+M037473
+037474
+M037474
+037475
+M037475
+037476
+M037476
+037477
+M037477
+037478
+M037478
+037479
+M037479
+037480
+M037480
+037481
+M037481
+037482
+M037482
+037483
+M037483
+037484
+M037484
+037485
+M037485
+037486
+M037486
+037487
+M037487
+037488
+M037488
+037518
+M037518
+037519
+M037519
+037520
+M037520
+037521
+M037521
+037522
+M037522
+037523
+M037523
+037524
+M037524
+037525
+M037525
+037526
+M037526
+037527
+M037527
+037528
+M037528
+037592
+M037592
+037593
+M037593
+037594
+M037594
+037595
+M037595
+037596
+M037596
+037597
+M037597
+037598
+M037598
+037599
+M037599
+037600
+M037600
+037601
+M037601
+037602
+M037602
+037611
+M037611
+037612
+M037612
+037613
+M037613
+037652
+M037652
+037653
+M037653
+037654
+M037654
+037689
+M037689
+037690
+M037690
+037691
+M037691
+037692
+M037692
+037693
+M037693
+037694
+M037694
+037731
+M037731
+037732
+M037732
+037733
+M037733
+037734
+M037734
+037741
+M037741
+037742
+M037742
+037743
+M037743
+037744
+M037744
+037745
+M037745
+037746
+M037746
+037747
+M037747
+037748
+M037748
+037749
+M037749
+037750
+M037750
+037751
+M037751
+037752
+M037752
+037753
+M037753
+037790
+M037790
+037791
+M037791
+037792
+M037792
+037793
+M037793
+037806
+M037806
+037807
+M037807
+037808
+M037808
+037809
+M037809
+037810
+M037810
+037833
+M037833
+037834
+M037834
+037835
+M037835
+037836
+M037836
+037837
+M037837
+037857
+M037857
+037858
+M037858
+037859
+M037859
+037860
+M037860
+037861
+M037861
+037862
+M037862
+037863
+M037863
+037864
+M037864
+037865
+M037865
+037866
+M037866
+037867
+M037867
+037868
+M037868
+037869
+M037869
+037870
+M037870
+037871
+M037871
+037872
+M037872
+037873
+M037873
+037874
+M037874
+037875
+M037875
+037876
+M037876
+037895
+M037895
+037896
+M037896
+037897
+M037897
+037898
+M037898
+037899
+M037899
+037900
+M037900
+037901
+M037901
+037902
+M037902
+037922
+M037922
+037923
+M037923
+037924
+M037924
+037925
+M037925
+037926
+M037926
+037927
+M037927
+037928
+M037928
+037929
+M037929
+037930
+M037930
+037961
+M037961
+037962
+M037962
+037963
+M037963
+037964
+M037964
+037965
+M037965
+037966
+M037966
+037967
+M037967
+037968
+M037968
+037969
+M037969
+037970
+M037970
+037971
+M037971
+037972
+M037972
+037973
+M037973
+037974
+M037974
+037975
+M037975
+038034
+M038034
+038035
+M038035
+038036
+M038036
+038037
+M038037
+038038
+M038038
+038071
+M038071
+038072
+M038072
+038073
+M038073
+038074
+M038074
+038075
+M038075
+038076
+M038076
+038088
+M038088
+038089
+M038089
+038090
+M038090
+038091
+M038091
+038092
+M038092
+038093
+M038093
+038094
+M038094
+038095
+M038095
+038101
+M038101
+038102
+M038102
+038103
+M038103
+038104
+M038104
+038105
+M038105
+038106
+M038106
+038107
+M038107
+038108
+M038108
+038109
+M038109
+038124
+M038124
+038125
+M038125
+038126
+M038126
+038127
+M038127
+038128
+M038128
+038201
+M038201
+038202
+M038202
+038203
+M038203
+038204
+M038204
+038205
+M038205
+038206
+M038206
+038207
+M038207
+038208
+M038208
+038209
+M038209
+038210
+M038210
+038211
+M038211
+038212
+M038212
+038213
+M038213
+038214
+M038214
+038215
+M038215
+038216
+M038216
+038217
+M038217
+038218
+M038218
+038219
+M038219
+038220
+M038220
+038267
+M038267
+038268
+M038268
+038269
+M038269
+038270
+M038270
+038271
+M038271
+038272
+M038272
+038273
+M038273
+038274
+M038274
+038275
+M038275
+038276
+M038276
+038277
+M038277
+038283
+M038283
+038284
+M038284
+038285
+M038285
+038286
+M038286
+038287
+M038287
+038288
+M038288
+038289
+M038289
+038290
+M038290
+038291
+M038291
+038292
+M038292
+038293
+M038293
+038294
+M038294
+038295
+M038295
+038296
+M038296
+038297
+M038297
+038298
+M038298
+038299
+M038299
+038300
+M038300
+038301
+M038301
+038302
+M038302
+038303
+M038303
+038309
+M038309
+038310
+M038310
+038311
+M038311
+038312
+M038312
+038313
+M038313
+038314
+M038314
+038315
+M038315
+038316
+M038316
+038317
+M038317
+038318
+M038318
+038319
+M038319
+038320
+M038320
+038321
+M038321
+038322
+M038322
+038323
+M038323
+038324
+M038324
+038325
+M038325
+038326
+M038326
+038327
+M038327
+038328
+M038328
+038329
+M038329
+038330
+M038330
+038331
+M038331
+038332
+M038332
+038333
+M038333
+038334
+M038334
+038335
+M038335
+038336
+M038336
+038337
+M038337
+038338
+M038338
+038339
+M038339
+038340
+M038340
+038341
+M038341
+038342
+M038342
+038343
+M038343
+038344
+M038344
+038345
+M038345
+038346
+M038346
+038347
+M038347
+038348
+M038348
+038349
+M038349
+038372
+M038372
+038373
+M038373
+038374
+M038374
+038375
+M038375
+038376
+M038376
+038377
+M038377
+038378
+M038378
+038379
+M038379
+038380
+M038380
+038381
+M038381
+038382
+M038382
+038389
+M038389
+038390
+M038390
+038391
+M038391
+038392
+M038392
+038393
+M038393
+038394
+M038394
+038395
+M038395
+038396
+M038396
+038397
+M038397
+038398
+M038398
+038399
+M038399
+038400
+M038400
+038401
+M038401
+038402
+M038402
+038403
+M038403
+038404
+M038404
+038405
+M038405
+038406
+M038406
+038407
+M038407
+038408
+M038408
+038471
+M038471
+038472
+M038472
+038473
+M038473
+038474
+M038474
+038475
+M038475
+038476
+M038476
+038477
+M038477
+038478
+M038478
+038479
+M038479
+038480
+M038480
+038481
+M038481
+038482
+M038482
+038483
+M038483
+038562
+M038562
+038563
+M038563
+038564
+M038564
+038565
+M038565
+038566
+M038566
+038567
+M038567
+038568
+M038568
+038569
+M038569
+038570
+M038570
+038571
+M038571
+038572
+M038572
+038573
+M038573
+038583
+M038583
+038584
+M038584
+038585
+M038585
+038586
+M038586
+038587
+M038587
+038605
+M038605
+038606
+M038606
+038607
+M038607
+038641
+M038641
+038642
+M038642
+038643
+M038643
+038644
+M038644
+038645
+M038645
+038646
+M038646
+038647
+M038647
+038648
+M038648
+038649
+M038649
+038650
+M038650
+038689
+M038689
+038690
+M038690
+038691
+M038691
+038692
+M038692
+038693
+M038693
+038694
+M038694
+038695
+M038695
+038696
+M038696
+038697
+M038697
+038698
+M038698
+038699
+M038699
+038700
+M038700
+038701
+M038701
+038715
+M038715
+038716
+M038716
+038717
+M038717
+038718
+M038718
+038719
+M038719
+038720
+M038720
+038721
+M038721
+038722
+M038722
+038723
+M038723
+038724
+M038724
+038730
+M038730
+038731
+M038731
+038732
+M038732
+038733
+M038733
+038734
+M038734
+038735
+M038735
+038736
+M038736
+038737
+M038737
+038738
+M038738
+038739
+M038739
+038740
+M038740
+038741
+M038741
+038742
+M038742
+038743
+M038743
+038744
+M038744
+038745
+M038745
+038746
+M038746
+038747
+M038747
+038748
+M038748
+038758
+M038758
+038759
+M038759
+038760
+M038760
+038761
+M038761
+038762
+M038762
+038763
+M038763
+038764
+M038764
+038765
+M038765
+038766
+M038766
+038767
+M038767
+038768
+M038768
+038769
+M038769
+038770
+M038770
+038771
+M038771
+038772
+M038772
+038773
+M038773
+038774
+M038774
+038775
+M038775
+038776
+M038776
+038777
+M038777
+038778
+M038778
+038779
+M038779
+038780
+M038780
+038781
+M038781
+038782
+M038782
+038783
+M038783
+038784
+M038784
+038785
+M038785
+038786
+M038786
+038787
+M038787
+038871
+M038871
+038872
+M038872
+038873
+M038873
+038874
+M038874
+038875
+M038875
+038876
+M038876
+038877
+M038877
+038878
+M038878
+038879
+M038879
+038912
+M038912
+038913
+M038913
+038914
+M038914
+038915
+M038915
+038916
+M038916
+038917
+M038917
+038918
+M038918
+038919
+M038919
+038920
+M038920
+038921
+M038921
+038922
+M038922
+038923
+M038923
+038924
+M038924
+038925
+M038925
+038926
+M038926
+038927
+M038927
+038928
+M038928
+038929
+M038929
+038930
+M038930
+038931
+M038931
+038932
+M038932
+038933
+M038933
+038934
+M038934
+038935
+M038935
+038936
+M038936
+038937
+M038937
+038938
+M038938
+038939
+M038939
+038940
+M038940
+038941
+M038941
+038942
+M038942
+038943
+M038943
+038944
+M038944
+038945
+M038945
+038946
+M038946
+038947
+M038947
+038952
+M038952
+038953
+M038953
+038954
+M038954
+038955
+M038955
+038956
+M038956
+038957
+M038957
+038958
+M038958
+038959
+M038959
+038960
+M038960
+038961
+M038961
+038962
+M038962
+038963
+M038963
+038964
+M038964
+038965
+M038965
+038966
+M038966
+038967
+M038967
+038968
+M038968
+038969
+M038969
+038970
+M038970
+038971
+M038971
+038972
+M038972
+038973
+M038973
+039048
+M039048
+039049
+M039049
+039050
+M039050
+039051
+M039051
+039058
+M039058
+039059
+M039059
+039060
+M039060
+039061
+M039061
+039062
+M039062
+039083
+M039083
+039084
+M039084
+039085
+M039085
+039126
+M039126
+039127
+M039127
+039128
+M039128
+039129
+M039129
+039130
+M039130
+039131
+M039131
+039132
+M039132
+039147
+M039147
+039148
+M039148
+039149
+M039149
+039150
+M039150
+039151
+M039151
+039152
+M039152
+039153
+M039153
+039154
+M039154
+039155
+M039155
+039156
+M039156
+039157
+M039157
+039181
+M039181
+039182
+M039182
+039183
+M039183
+039184
+M039184
+039185
+M039185
+039186
+M039186
+039187
+M039187
+039188
+M039188
+039189
+M039189
+039190
+M039190
+039191
+M039191
+039192
+M039192
+039193
+M039193
+039194
+M039194
+039195
+M039195
+039196
+M039196
+039231
+M039231
+039232
+M039232
+039233
+M039233
+039234
+M039234
+039235
+M039235
+039236
+M039236
+039300
+M039300
+039301
+M039301
+039302
+M039302
+039303
+M039303
+039304
+M039304
+039305
+M039305
+039306
+M039306
+039307
+M039307
+039308
+M039308
+039316
+M039316
+039317
+M039317
+039318
+M039318
+039319
+M039319
+039320
+M039320
+039346
+M039346
+039347
+M039347
+039348
+M039348
+039349
+M039349
+039350
+M039350
+039351
+M039351
+039352
+M039352
+039353
+M039353
+039354
+M039354
+039380
+M039380
+039381
+M039381
+039382
+M039382
+039383
+M039383
+039384
+M039384
+039457
+M039457
+039458
+M039458
+039459
+M039459
+039460
+M039460
+039461
+M039461
+039462
+M039462
+039463
+M039463
+039464
+M039464
+039465
+M039465
+039466
+M039466
+039467
+M039467
+039468
+M039468
+039469
+M039469
+039470
+M039470
+039471
+M039471
+039472
+M039472
+039473
+M039473
+039474
+M039474
+039475
+M039475
+039476
+M039476
+039477
+M039477
+039478
+M039478
+039506
+M039506
+039507
+M039507
+039508
+M039508
+039509
+M039509
+039510
+M039510
+039511
+M039511
+039512
+M039512
+039513
+M039513
+039514
+M039514
+039515
+M039515
+039516
+M039516
+039517
+M039517
+039518
+M039518
+039519
+M039519
+039520
+M039520
+039521
+M039521
+039522
+M039522
+039523
+M039523
+039524
+M039524
+039525
+M039525
+039526
+M039526
+039529
+M039529
+039530
+M039530
+039531
+M039531
+039532
+M039532
+039533
+M039533
+039534
+M039534
+039535
+M039535
+039536
+M039536
+039537
+M039537
+039538
+M039538
+039539
+M039539
+039540
+M039540
+039541
+M039541
+039542
+M039542
+039543
+M039543
+039544
+M039544
+039545
+M039545
+039546
+M039546
+039547
+M039547
+039548
+M039548
+039549
+M039549
+039550
+M039550
+039551
+M039551
+039552
+M039552
+039553
+M039553
+039554
+M039554
+039555
+M039555
+039556
+M039556
+039557
+M039557
+039558
+M039558
+039559
+M039559
+039560
+M039560
+039562
+M039562
+039563
+M039563
+039564
+M039564
+039565
+M039565
+039566
+M039566
+039567
+M039567
+039568
+M039568
+039569
+M039569
+039570
+M039570
+039571
+M039571
+039572
+M039572
+039573
+M039573
+039574
+M039574
+039575
+M039575
+039576
+M039576
+039577
+M039577
+039578
+M039578
+039579
+M039579
+039580
+M039580
+039582
+M039582
+039612
+M039612
+039613
+M039613
+039614
+M039614
+039615
+M039615
+039616
+M039616
+039617
+M039617
+039618
+M039618
+039619
+M039619
+039620
+M039620
+039621
+M039621
+039738
+M039738
+039739
+M039739
+039740
+M039740
+039741
+M039741
+039742
+M039742
+039743
+M039743
+039744
+M039744
+039745
+M039745
+039746
+M039746
+039747
+M039747
+039748
+M039748
+039796
+M039796
+039797
+M039797
+039798
+M039798
+039799
+M039799
+039800
+M039800
+039801
+M039801
+039802
+M039802
+039860
+M039860
+039861
+M039861
+039862
+M039862
+039863
+M039863
+039864
+M039864
+039865
+M039865
+039866
+M039866
+039867
+M039867
+039868
+M039868
+039869
+M039869
+039870
+M039870
+039871
+M039871
+039872
+M039872
+039873
+M039873
+039874
+M039874
+039875
+M039875
+039876
+M039876
+039877
+M039877
+039878
+M039878
+039879
+M039879
+039880
+M039880
+039881
+M039881
+039882
+M039882
+039883
+M039883
+039884
+M039884
+039885
+M039885
+039886
+M039886
+039887
+M039887
+039888
+M039888
+039894
+M039894
+039895
+M039895
+039896
+M039896
+039897
+M039897
+039898
+M039898
+039899
+M039899
+039900
+M039900
+039901
+M039901
+039902
+M039902
+039903
+M039903
+039904
+M039904
+039905
+M039905
+039906
+M039906
+039907
+M039907
+039908
+M039908
+039909
+M039909
+039910
+M039910
+039955
+M039955
+039956
+M039956
+039957
+M039957
+039958
+M039958
+039959
+M039959
+039960
+M039960
+039961
+M039961
+039962
+M039962
+039963
+M039963
+039964
+M039964
+039965
+M039965
+040025
+M040025
+040026
+M040026
+040027
+M040027
+040028
+M040028
+040029
+M040029
+040030
+M040030
+040031
+M040031
+040032
+M040032
+040033
+M040033
+040034
+M040034
+040035
+M040035
+040036
+M040036
+040037
+M040037
+040038
+M040038
+040039
+M040039
+040040
+M040040
+040041
+M040041
+040042
+M040042
+040043
+M040043
+040044
+M040044
+040045
+M040045
+040046
+M040046
+040047
+M040047
+040048
+M040048
+040049
+M040049
+040050
+M040050
+040051
+M040051
+040052
+M040052
+040053
+M040053
+040054
+M040054
+040055
+M040055
+040056
+M040056
+040057
+M040057
+040058
+M040058
+040059
+M040059
+040060
+M040060
+040061
+M040061
+040062
+M040062
+040063
+M040063
+040064
+M040064
+040065
+M040065
+040066
+M040066
+040067
+M040067
+040068
+M040068
+040069
+M040069
+040070
+M040070
+040071
+M040071
+040072
+M040072
+040073
+M040073
+040074
+M040074
+040075
+M040075
+040076
+M040076
+040077
+M040077
+040078
+M040078
+040079
+M040079
+040080
+M040080
+040081
+M040081
+040082
+M040082
+040083
+M040083
+040084
+M040084
+040085
+M040085
+040086
+M040086
+040087
+M040087
+040088
+M040088
+040089
+M040089
+040090
+M040090
+040091
+M040091
+040092
+M040092
+040093
+M040093
+040094
+M040094
+040095
+M040095
+040096
+M040096
+040097
+M040097
+040098
+M040098
+040099
+M040099
+040100
+M040100
+040101
+M040101
+040102
+M040102
+040103
+M040103
+040104
+M040104
+040105
+M040105
+040106
+M040106
+040107
+M040107
+040108
+M040108
+040109
+M040109
+040110
+M040110
+040111
+M040111
+040112
+M040112
+040113
+M040113
+040114
+M040114
+040115
+M040115
+040116
+M040116
+040117
+M040117
+040118
+M040118
+040119
+M040119
+040120
+M040120
+040121
+M040121
+040122
+M040122
+040123
+M040123
+040124
+M040124
+040125
+M040125
+040137
+M040137
+040138
+M040138
+040139
+M040139
+040140
+M040140
+040141
+M040141
+040194
+M040194
+040195
+M040195
+040196
+M040196
+040197
+M040197
+040198
+M040198
+040199
+M040199
+040325
+M040325
+040326
+M040326
+040327
+M040327
+040345
+M040345
+040346
+M040346
+040350
+M040350
+040351
+M040351
+040352
+M040352
+040353
+M040353
+040354
+M040354
+040355
+M040355
+040356
+M040356
+040357
+M040357
+040358
+M040358
+040359
+M040359
+040360
+M040360
+040361
+M040361
+040362
+M040362
+040363
+M040363
+040364
+M040364
+040365
+M040365
+040366
+M040366
+040367
+M040367
+040368
+M040368
+040369
+M040369
+040370
+M040370
+040371
+M040371
+040372
+M040372
+040373
+M040373
+040374
+M040374
+040375
+M040375
+040376
+M040376
+040377
+M040377
+040392
+M040392
+040393
+M040393
+040394
+M040394
+040402
+M040402
+040403
+M040403
+040404
+M040404
+040405
+M040405
+040406
+M040406
+040407
+M040407
+040408
+M040408
+040409
+M040409
+040410
+M040410
+040411
+M040411
+040412
+M040412
+040432
+M040432
+040433
+M040433
+040434
+M040434
+040435
+M040435
+040436
+M040436
+040437
+M040437
+040438
+M040438
+040439
+M040439
+040440
+M040440
+040441
+M040441
+040442
+M040442
+040443
+M040443
+040444
+M040444
+040445
+M040445
+040446
+M040446
+040447
+M040447
+040448
+M040448
+040449
+M040449
+040450
+M040450
+040451
+M040451
+040452
+M040452
+040453
+M040453
+040454
+M040454
+040455
+M040455
+040478
+M040478
+040479
+M040479
+040480
+M040480
+040481
+M040481
+040482
+M040482
+040483
+M040483
+040484
+M040484
+040485
+M040485
+040486
+M040486
+040511
+M040511
+040512
+M040512
+040513
+M040513
+040514
+M040514
+040515
+M040515
+040516
+M040516
+040517
+M040517
+040518
+M040518
+040519
+M040519
+040520
+M040520
+040521
+M040521
+040522
+M040522
+040523
+M040523
+040524
+M040524
+040525
+M040525
+040526
+M040526
+040527
+M040527
+040528
+M040528
+040529
+M040529
+040538
+M040538
+040539
+M040539
+040540
+M040540
+040541
+M040541
+040542
+M040542
+040543
+M040543
+040544
+M040544
+040545
+M040545
+040546
+M040546
+040547
+M040547
+040548
+M040548
+040549
+M040549
+040550
+M040550
+040551
+M040551
+040647
+M040647
+040648
+M040648
+040649
+M040649
+040650
+M040650
+040651
+M040651
+040652
+M040652
+040653
+M040653
+040659
+M040659
+040660
+M040660
+040661
+M040661
+040662
+M040662
+040663
+M040663
+040664
+M040664
+040715
+M040715
+040716
+M040716
+040717
+M040717
+040718
+M040718
+040719
+M040719
+040720
+M040720
+040721
+M040721
+040722
+M040722
+040723
+M040723
+040724
+M040724
+040725
+M040725
+040726
+M040726
+040727
+M040727
+040728
+M040728
+040729
+M040729
+040730
+M040730
+040731
+M040731
+040732
+M040732
+040733
+M040733
+040753
+M040753
+040754
+M040754
+040755
+M040755
+040756
+M040756
+040757
+M040757
+040758
+M040758
+040759
+M040759
+040760
+M040760
+040761
+M040761
+040762
+M040762
+040763
+M040763
+040764
+M040764
+040765
+M040765
+040766
+M040766
+040767
+M040767
+040768
+M040768
+040769
+M040769
+040770
+M040770
+040771
+M040771
+040772
+M040772
+040773
+M040773
+040774
+M040774
+040797
+M040797
+040798
+M040798
+040812
+M040812
+040813
+M040813
+040814
+M040814
+040815
+M040815
+040816
+M040816
+040914
+M040914
+040915
+M040915
+040916
+M040916
+040917
+M040917
+040918
+M040918
+040919
+M040919
+040920
+M040920
+040921
+M040921
+040922
+M040922
+040923
+M040923
+040924
+M040924
+040925
+M040925
+040926
+M040926
+040927
+M040927
+040928
+M040928
+040929
+M040929
+040930
+M040930
+040931
+M040931
+040932
+M040932
+040933
+M040933
+040934
+M040934
+040935
+M040935
+040936
+M040936
+040937
+M040937
+040984
+M040984
+040985
+M040985
+040986
+M040986
+040987
+M040987
+040988
+M040988
+040989
+M040989
+040990
+M040990
+040991
+M040991
+040992
+M040992
+040993
+M040993
+040994
+M040994
+040995
+M040995
+040996
+M040996
+040997
+M040997
+040998
+M040998
+040999
+M040999
+041000
+M041000
+041001
+M041001
+041002
+M041002
+041003
+M041003
+041004
+M041004
+041005
+M041005
+041006
+M041006
+041007
+M041007
+041008
+M041008
+041009
+M041009
+041010
+M041010
+041011
+M041011
+041012
+M041012
+041013
+M041013
+041014
+M041014
+041015
+M041015
+041016
+M041016
+041017
+M041017
+041018
+M041018
+041019
+M041019
+041020
+M041020
+041021
+M041021
+041022
+M041022
+041023
+M041023
+041024
+M041024
+041105
+M041105
+041106
+M041106
+041107
+M041107
+041108
+M041108
+041109
+M041109
+041110
+M041110
+041111
+M041111
+041112
+M041112
+041173
+M041173
+041174
+M041174
+041175
+M041175
+041181
+M041181
+041182
+M041182
+041183
+M041183
+041184
+M041184
+041185
+M041185
+041186
+M041186
+041187
+M041187
+041188
+M041188
+041189
+M041189
+041190
+M041190
+041191
+M041191
+041192
+M041192
+041193
+M041193
+041194
+M041194
+041195
+M041195
+041196
+M041196
+041197
+M041197
+041198
+M041198
+041199
+M041199
+041200
+M041200
+041201
+M041201
+041202
+M041202
+041203
+M041203
+041204
+M041204
+041205
+M041205
+041206
+M041206
+041207
+M041207
+041208
+M041208
+041209
+M041209
+041210
+M041210
+041211
+M041211
+041212
+M041212
+041374
+M041374
+041375
+M041375
+041376
+M041376
+041377
+M041377
+041378
+M041378
+041379
+M041379
+041380
+M041380
+041381
+M041381
+041382
+M041382
+041420
+M041420
+041421
+M041421
+041422
+M041422
+041423
+M041423
+041424
+M041424
+041425
+M041425
+041426
+M041426
+041427
+M041427
+041428
+M041428
+041429
+M041429
+041430
+M041430
+041431
+M041431
+041432
+M041432
+041433
+M041433
+041434
+M041434
+041435
+M041435
+041436
+M041436
+041437
+M041437
+041438
+M041438
+041479
+M041479
+041480
+M041480
+041481
+M041481
+041482
+M041482
+041483
+M041483
+041504
+M041504
+041505
+M041505
+041506
+M041506
+041521
+M041521
+041522
+M041522
+041523
+M041523
+041537
+M041537
+041538
+M041538
+041539
+M041539
+041540
+M041540
+041541
+M041541
+041542
+M041542
+041543
+M041543
+041544
+M041544
+041545
+M041545
+041546
+M041546
+041547
+M041547
+041548
+M041548
+041549
+M041549
+041550
+M041550
+041551
+M041551
+041552
+M041552
+041553
+M041553
+041554
+M041554
+041555
+M041555
+041556
+M041556
+041557
+M041557
+041558
+M041558
+041559
+M041559
+041560
+M041560
+041561
+M041561
+041562
+M041562
+041563
+M041563
+041564
+M041564
+041565
+M041565
+041691
+M041691
+041692
+M041692
+041693
+M041693
+041694
+M041694
+041695
+M041695
+041696
+M041696
+041697
+M041697
+041698
+M041698
+041699
+M041699
+041700
+M041700
+041701
+M041701
+041702
+M041702
+041703
+M041703
+041704
+M041704
+041705
+M041705
+041706
+M041706
+041707
+M041707
+041708
+M041708
+041709
+M041709
+041710
+M041710
+041711
+M041711
+041712
+M041712
+041713
+M041713
+041714
+M041714
+041715
+M041715
+041716
+M041716
+041717
+M041717
+041718
+M041718
+041719
+M041719
+041720
+M041720
+041721
+M041721
+041722
+M041722
+041723
+M041723
+041724
+M041724
+041725
+M041725
+041726
+M041726
+041727
+M041727
+041728
+M041728
+041729
+M041729
+041730
+M041730
+041731
+M041731
+041732
+M041732
+041733
+M041733
+041786
+M041786
+041787
+M041787
+041788
+M041788
+041789
+M041789
+041790
+M041790
+041791
+M041791
+041792
+M041792
+041869
+M041869
+041870
+M041870
+041871
+M041871
+041872
+M041872
+041873
+M041873
+041874
+M041874
+041875
+M041875
+041876
+M041876
+041877
+M041877
+041878
+M041878
+041879
+M041879
+041880
+M041880
+041881
+M041881
+041882
+M041882
+041883
+M041883
+041884
+M041884
+041885
+M041885
+041886
+M041886
+041887
+M041887
+041888
+M041888
+041889
+M041889
+041890
+M041890
+041891
+M041891
+041892
+M041892
+041897
+M041897
+041898
+M041898
+041899
+M041899
+041900
+M041900
+041901
+M041901
+041902
+M041902
+041903
+M041903
+041904
+M041904
+041905
+M041905
+041906
+M041906
+041907
+M041907
+041908
+M041908
+041909
+M041909
+041910
+M041910
+041911
+M041911
+041912
+M041912
+041913
+M041913
+041914
+M041914
+041915
+M041915
+041916
+M041916
+041917
+M041917
+041918
+M041918
+041919
+M041919
+041920
+M041920
+041942
+M041942
+041943
+M041943
+041944
+M041944
+041945
+M041945
+041946
+M041946
+041947
+M041947
+041948
+M041948
+041963
+M041963
+041964
+M041964
+041965
+M041965
+041966
+M041966
+041967
+M041967
+041968
+M041968
+041969
+M041969
+041970
+M041970
+042004
+M042004
+042005
+M042005
+042006
+M042006
+042007
+M042007
+042008
+M042008
+042009
+M042009
+042041
+M042041
+042042
+M042042
+042098
+M042098
+042099
+M042099
+042100
+M042100
+042101
+M042101
+042102
+M042102
+042103
+M042103
+042104
+M042104
+042105
+M042105
+042106
+M042106
+042107
+M042107
+042108
+M042108
+042109
+M042109
+042110
+M042110
+042111
+M042111
+042112
+M042112
+042113
+M042113
+042114
+M042114
+042115
+M042115
+042116
+M042116
+042117
+M042117
+042118
+M042118
+042119
+M042119
+042120
+M042120
+042121
+M042121
+042122
+M042122
+042123
+M042123
+042124
+M042124
+042125
+M042125
+042126
+M042126
+042127
+M042127
+042128
+M042128
+042129
+M042129
+042130
+M042130
+042131
+M042131
+042132
+M042132
+042133
+M042133
+042134
+M042134
+042135
+M042135
+042136
+M042136
+042137
+M042137
+042138
+M042138
+042139
+M042139
+042140
+M042140
+042141
+M042141
+042142
+M042142
+042143
+M042143
+042144
+M042144
+042145
+M042145
+042151
+M042151
+042152
+M042152
+042153
+M042153
+042154
+M042154
+042155
+M042155
+042156
+M042156
+042157
+M042157
+042158
+M042158
+042159
+M042159
+042160
+M042160
+042161
+M042161
+042162
+M042162
+042163
+M042163
+042164
+M042164
+042165
+M042165
+042166
+M042166
+042167
+M042167
+042168
+M042168
+042169
+M042169
+042170
+M042170
+042171
+M042171
+042172
+M042172
+042173
+M042173
+042174
+M042174
+042291
+M042291
+042292
+M042292
+042293
+M042293
+042294
+M042294
+042295
+M042295
+042296
+M042296
+042297
+M042297
+042298
+M042298
+042372
+M042372
+042373
+M042373
+042374
+M042374
+042375
+M042375
+042376
+M042376
+042377
+M042377
+042378
+M042378
+042379
+M042379
+042380
+M042380
+042392
+M042392
+042393
+M042393
+042394
+M042394
+042395
+M042395
+042396
+M042396
+042397
+M042397
+042497
+M042497
+042498
+M042498
+042499
+M042499
+042500
+M042500
+042501
+M042501
+042502
+M042502
+042503
+M042503
+042504
+M042504
+042505
+M042505
+042506
+M042506
+042507
+M042507
+042508
+M042508
+042509
+M042509
+042510
+M042510
+042511
+M042511
+042526
+M042526
+042527
+M042527
+042528
+M042528
+042529
+M042529
+042530
+M042530
+042531
+M042531
+042532
+M042532
+042533
+M042533
+042534
+M042534
+042535
+M042535
+042536
+M042536
+042537
+M042537
+042538
+M042538
+042539
+M042539
+042540
+M042540
+042548
+M042548
+042549
+M042549
+042550
+M042550
+042551
+M042551
+042552
+M042552
+042553
+M042553
+042554
+M042554
+042555
+M042555
+042556
+M042556
+042557
+M042557
+042558
+M042558
+042559
+M042559
+042560
+M042560
+042616
+M042616
+042617
+M042617
+042618
+M042618
+042619
+M042619
+042748
+M042748
+042749
+M042749
+042750
+M042750
+042751
+M042751
+042752
+M042752
+042753
+M042753
+042754
+M042754
+042755
+M042755
+042756
+M042756
+042757
+M042757
+042758
+M042758
+042759
+M042759
+042760
+M042760
+042761
+M042761
+042762
+M042762
+042763
+M042763
+042764
+M042764
+042765
+M042765
+042766
+M042766
+042767
+M042767
+042768
+M042768
+042769
+M042769
+042770
+M042770
+042771
+M042771
+042772
+M042772
+042773
+M042773
+042774
+M042774
+042775
+M042775
+042776
+M042776
+042777
+M042777
+042778
+M042778
+042779
+M042779
+042780
+M042780
+042781
+M042781
+042782
+M042782
+042795
+M042795
+042796
+M042796
+042797
+M042797
+042816
+M042816
+042817
+M042817
+042818
+M042818
+042819
+M042819
+042820
+M042820
+042821
+M042821
+042822
+M042822
+042823
+M042823
+042824
+M042824
+042825
+M042825
+042826
+M042826
+042827
+M042827
+042828
+M042828
+042829
+M042829
+042830
+M042830
+042831
+M042831
+042832
+M042832
+042833
+M042833
+042834
+M042834
+042835
+M042835
+042836
+M042836
+042842
+M042842
+042843
+M042843
+042844
+M042844
+042845
+M042845
+042846
+M042846
+042847
+M042847
+042848
+M042848
+042849
+M042849
+042850
+M042850
+042863
+M042863
+042864
+M042864
+042865
+M042865
+042866
+M042866
+042867
+M042867
+042868
+M042868
+042869
+M042869
+042870
+M042870
+042871
+M042871
+042872
+M042872
+042873
+M042873
+042874
+M042874
+042978
+M042978
+042979
+M042979
+042980
+M042980
+042981
+M042981
+042982
+M042982
+042983
+M042983
+042984
+M042984
+042985
+M042985
+042986
+M042986
+042987
+M042987
+043029
+M043029
+043030
+M043030
+043031
+M043031
+043032
+M043032
+043033
+M043033
+043087
+M043087
+043088
+M043088
+043089
+M043089
+043119
+M043119
+043120
+M043120
+043121
+M043121
+043122
+M043122
+043123
+M043123
+043124
+M043124
+043125
+M043125
+043126
+M043126
+043127
+M043127
+043128
+M043128
+043214
+M043214
+043215
+M043215
+043216
+M043216
+043217
+M043217
+043218
+M043218
+043219
+M043219
+043220
+M043220
+043221
+M043221
+043222
+M043222
+043223
+M043223
+043224
+M043224
+043225
+M043225
+043226
+M043226
+043227
+M043227
+043328
+M043328
+043329
+M043329
+043330
+M043330
+043331
+M043331
+043332
+M043332
+043341
+M043341
+043342
+M043342
+043343
+M043343
+043344
+M043344
+043345
+M043345
+043346
+M043346
+043347
+M043347
+043437
+M043437
+043438
+M043438
+043439
+M043439
+043440
+M043440
+043441
+M043441
+043442
+M043442
+043443
+M043443
+043444
+M043444
+043445
+M043445
+043446
+M043446
+043447
+M043447
+043448
+M043448
+043449
+M043449
+043458
+M043458
+043459
+M043459
+043460
+M043460
+043461
+M043461
+043462
+M043462
+043463
+M043463
+043464
+M043464
+043465
+M043465
+043466
+M043466
+043467
+M043467
+043468
+M043468
+043469
+M043469
+043470
+M043470
+043471
+M043471
+043472
+M043472
+043473
+M043473
+043474
+M043474
+043475
+M043475
+043476
+M043476
+043477
+M043477
+043478
+M043478
+043479
+M043479
+043480
+M043480
+043481
+M043481
+043482
+M043482
+043483
+M043483
+043484
+M043484
+043485
+M043485
+043486
+M043486
+043487
+M043487
+043488
+M043488
+043489
+M043489
+043490
+M043490
+043491
+M043491
+043492
+M043492
+043493
+M043493
+043494
+M043494
+043495
+M043495
+043496
+M043496
+043537
+M043537
+043538
+M043538
+043539
+M043539
+043540
+M043540
+043541
+M043541
+043542
+M043542
+043543
+M043543
+043546
+M043546
+043547
+M043547
+043548
+M043548
+043549
+M043549
+043550
+M043550
+043551
+M043551
+043552
+M043552
+043553
+M043553
+043554
+M043554
+043555
+M043555
+043556
+M043556
+043557
+M043557
+043558
+M043558
+043559
+M043559
+043560
+M043560
+043561
+M043561
+043562
+M043562
+043563
+M043563
+043564
+M043564
+043565
+M043565
+043566
+M043566
+043567
+M043567
+043568
+M043568
+043569
+M043569
+043570
+M043570
+043571
+M043571
+043572
+M043572
+043573
+M043573
+043574
+M043574
+043575
+M043575
+043576
+M043576
+043577
+M043577
+043578
+M043578
+043579
+M043579
+043580
+M043580
+043581
+M043581
+043582
+M043582
+043583
+M043583
+043624
+M043624
+043625
+M043625
+043626
+M043626
+043627
+M043627
+043648
+M043648
+043649
+M043649
+043650
+M043650
+043651
+M043651
+043653
+M043653
+043654
+M043654
+043655
+M043655
+043657
+M043657
+043658
+M043658
+043660
+M043660
+043661
+M043661
+043662
+M043662
+043663
+M043663
+043664
+M043664
+043665
+M043665
+043666
+M043666
+043667
+M043667
+043668
+M043668
+043669
+M043669
+043670
+M043670
+043671
+M043671
+043672
+M043672
+043673
+M043673
+043674
+M043674
+043675
+M043675
+043676
+M043676
+043677
+M043677
+043679
+M043679
+043680
+M043680
+043681
+M043681
+043682
+M043682
+043683
+M043683
+043684
+M043684
+043685
+M043685
+043686
+M043686
+043687
+M043687
+043709
+M043709
+043710
+M043710
+043711
+M043711
+043712
+M043712
+043718
+M043718
+043719
+M043719
+043720
+M043720
+043721
+M043721
+043722
+M043722
+043723
+M043723
+043724
+M043724
+043725
+M043725
+043726
+M043726
+043727
+M043727
+043728
+M043728
+043729
+M043729
+043748
+M043748
+043749
+M043749
+043750
+M043750
+043751
+M043751
+043752
+M043752
+043753
+M043753
+043754
+M043754
+043755
+M043755
+043756
+M043756
+043757
+M043757
+043758
+M043758
+043759
+M043759
+043769
+M043769
+043770
+M043770
+043771
+M043771
+043772
+M043772
+043773
+M043773
+043777
+M043777
+043778
+M043778
+043779
+M043779
+043780
+M043780
+043781
+M043781
+043782
+M043782
+043783
+M043783
+043784
+M043784
+043785
+M043785
+043786
+M043786
+043787
+M043787
+043788
+M043788
+043789
+M043789
+043790
+M043790
+044016
+M044016
+044017
+M044017
+044018
+M044018
+044019
+M044019
+044020
+M044020
+044046
+M044046
+044047
+M044047
+044048
+M044048
+044049
+M044049
+044050
+M044050
+044051
+M044051
+044052
+M044052
+044053
+M044053
+044054
+M044054
+044055
+M044055
+044056
+M044056
+044057
+M044057
+044058
+M044058
+044059
+M044059
+044060
+M044060
+044061
+M044061
+044062
+M044062
+044063
+M044063
+044064
+M044064
+044066
+M044066
+044067
+M044067
+044068
+M044068
+044069
+M044069
+044070
+M044070
+044071
+M044071
+044072
+M044072
+044141
+M044141
+044142
+M044142
+044143
+M044143
+044144
+M044144
+044145
+M044145
+044146
+M044146
+044147
+M044147
+044148
+M044148
+044149
+M044149
+044150
+M044150
+044151
+M044151
+044152
+M044152
+044153
+M044153
+044154
+M044154
+044155
+M044155
+044156
+M044156
+044157
+M044157
+044158
+M044158
+044159
+M044159
+044160
+M044160
+044161
+M044161
+044162
+M044162
+044163
+M044163
+044164
+M044164
+044165
+M044165
+044166
+M044166
+044167
+M044167
+044168
+M044168
+044169
+M044169
+044281
+M044281
+044282
+M044282
+044283
+M044283
+044284
+M044284
+044285
+M044285
+044286
+M044286
+044287
+M044287
+044288
+M044288
+044289
+M044289
+044290
+M044290
+044291
+M044291
+044292
+M044292
+044300
+M044300
+044301
+M044301
+044302
+M044302
+044303
+M044303
+044331
+M044331
+044332
+M044332
+044333
+M044333
+044334
+M044334
+044335
+M044335
+044336
+M044336
+044337
+M044337
+044341
+M044341
+044342
+M044342
+044343
+M044343
+044344
+M044344
+044345
+M044345
+044346
+M044346
+044347
+M044347
+044348
+M044348
+044349
+M044349
+044413
+M044413
+044414
+M044414
+044415
+M044415
+044416
+M044416
+044417
+M044417
+044418
+M044418
+044428
+M044428
+044429
+M044429
+044473
+M044473
+044474
+M044474
+044475
+M044475
+044476
+M044476
+044477
+M044477
+044478
+M044478
+044491
+M044491
+044492
+M044492
+044493
+M044493
+044494
+M044494
+044495
+M044495
+044544
+M044544
+044545
+M044545
+044577
+M044577
+044578
+M044578
+044579
+M044579
+044580
+M044580
+044581
+M044581
+044582
+M044582
+044583
+M044583
+044584
+M044584
+044598
+M044598
+044599
+M044599
+044600
+M044600
+044601
+M044601
+044602
+M044602
+044613
+M044613
+044614
+M044614
+044615
+M044615
+044616
+M044616
+044617
+M044617
+044618
+M044618
+044619
+M044619
+044620
+M044620
+044621
+M044621
+044622
+M044622
+044623
+M044623
+044624
+M044624
+044625
+M044625
+044626
+M044626
+044658
+M044658
+044659
+M044659
+044660
+M044660
+044661
+M044661
+044662
+M044662
+044663
+M044663
+044664
+M044664
+044764
+M044764
+044765
+M044765
+044766
+M044766
+044767
+M044767
+044768
+M044768
+044769
+M044769
+044770
+M044770
+044771
+M044771
+044772
+M044772
+044773
+M044773
+044774
+M044774
+044775
+M044775
+044776
+M044776
+044777
+M044777
+044778
+M044778
+044779
+M044779
+044780
+M044780
+044781
+M044781
+044782
+M044782
+044783
+M044783
+044784
+M044784
+044785
+M044785
+044786
+M044786
+044787
+M044787
+044788
+M044788
+044789
+M044789
+044790
+M044790
+044791
+M044791
+044792
+M044792
+044826
+M044826
+044827
+M044827
+044828
+M044828
+044829
+M044829
+044830
+M044830
+044831
+M044831
+044867
+M044867
+044868
+M044868
+044869
+M044869
+044870
+M044870
+044871
+M044871
+044872
+M044872
+044873
+M044873
+044903
+M044903
+044904
+M044904
+044905
+M044905
+044906
+M044906
+044907
+M044907
+044908
+M044908
+044934
+M044934
+044935
+M044935
+044936
+M044936
+044937
+M044937
+044938
+M044938
+044939
+M044939
+044940
+M044940
+044941
+M044941
+044942
+M044942
+044943
+M044943
+045008
+M045008
+045009
+M045009
+045010
+M045010
+045011
+M045011
+045012
+M045012
+045028
+M045028
+045029
+M045029
+045030
+M045030
+045031
+M045031
+045032
+M045032
+045122
+M045122
+045123
+M045123
+045124
+M045124
+045125
+M045125
+045126
+M045126
+045127
+M045127
+045128
+M045128
+045129
+M045129
+045130
+M045130
+045131
+M045131
+045132
+M045132
+045248
+M045248
+045249
+M045249
+045250
+M045250
+045251
+M045251
+045252
+M045252
+045253
+M045253
+045254
+M045254
+045307
+M045307
+045308
+M045308
+045309
+M045309
+045310
+M045310
+045311
+M045311
+045312
+M045312
+045313
+M045313
+045314
+M045314
+045315
+M045315
+045328
+M045328
+045329
+M045329
+045330
+M045330
+045331
+M045331
+045332
+M045332
+045333
+M045333
+045359
+M045359
+045360
+M045360
+045361
+M045361
+045362
+M045362
+045370
+M045370
+045371
+M045371
+045372
+M045372
+045373
+M045373
+045374
+M045374
+045375
+M045375
+045376
+M045376
+045377
+M045377
+045378
+M045378
+045379
+M045379
+045380
+M045380
+045381
+M045381
+045382
+M045382
+045383
+M045383
+045384
+M045384
+045385
+M045385
+045386
+M045386
+045387
+M045387
+045388
+M045388
+045389
+M045389
+045390
+M045390
+045454
+M045454
+045455
+M045455
+045456
+M045456
+045457
+M045457
+045458
+M045458
+045459
+M045459
+045460
+M045460
+045497
+M045497
+045498
+M045498
+045499
+M045499
+045500
+M045500
+045501
+M045501
+045502
+M045502
+045503
+M045503
+045534
+M045534
+045535
+M045535
+045536
+M045536
+045537
+M045537
+045538
+M045538
+045539
+M045539
+045540
+M045540
+045541
+M045541
+045542
+M045542
+045568
+M045568
+045569
+M045569
+045570
+M045570
+045571
+M045571
+045572
+M045572
+045573
+M045573
+045574
+M045574
+045575
+M045575
+045628
+M045628
+045629
+M045629
+045630
+M045630
+045631
+M045631
+045632
+M045632
+045633
+M045633
+045634
+M045634
+045635
+M045635
+045636
+M045636
+045637
+M045637
+045638
+M045638
+045639
+M045639
+045640
+M045640
+045641
+M045641
+045642
+M045642
+045643
+M045643
+045644
+M045644
+045651
+M045651
+045652
+M045652
+045653
+M045653
+045654
+M045654
+045655
+M045655
+045656
+M045656
+045657
+M045657
+045658
+M045658
+045659
+M045659
+045660
+M045660
+045661
+M045661
+045662
+M045662
+045663
+M045663
+045664
+M045664
+045665
+M045665
+045666
+M045666
+045667
+M045667
+045668
+M045668
+045669
+M045669
+045694
+M045694
+045695
+M045695
+045696
+M045696
+045697
+M045697
+045698
+M045698
+045722
+M045722
+045723
+M045723
+045724
+M045724
+045725
+M045725
+045726
+M045726
+045727
+M045727
+045728
+M045728
+045729
+M045729
+045730
+M045730
+045731
+M045731
+045732
+M045732
+045772
+M045772
+045773
+M045773
+045774
+M045774
+045810
+M045810
+045811
+M045811
+045812
+M045812
+045813
+M045813
+045814
+M045814
+045815
+M045815
+045816
+M045816
+045817
+M045817
+045818
+M045818
+045819
+M045819
+045820
+M045820
+045821
+M045821
+045827
+M045827
+045828
+M045828
+045829
+M045829
+045837
+M045837
+045838
+M045838
+045839
+M045839
+045840
+M045840
+045841
+M045841
+045842
+M045842
+045843
+M045843
+045844
+M045844
+045845
+M045845
+045869
+M045869
+045870
+M045870
+045871
+M045871
+045872
+M045872
+045873
+M045873
+045879
+M045879
+045880
+M045880
+045881
+M045881
+045887
+M045887
+045888
+M045888
+045889
+M045889
+045890
+M045890
+045891
+M045891
+045892
+M045892
+045893
+M045893
+045894
+M045894
+045895
+M045895
+045896
+M045896
+045897
+M045897
+045898
+M045898
+045904
+M045904
+045905
+M045905
+045906
+M045906
+045907
+M045907
+045908
+M045908
+045924
+M045924
+045925
+M045925
+045926
+M045926
+045927
+M045927
+045928
+M045928
+045929
+M045929
+045930
+M045930
+045931
+M045931
+045932
+M045932
+045933
+M045933
+045934
+M045934
+045935
+M045935
+045975
+M045975
+045976
+M045976
+045977
+M045977
+045978
+M045978
+045979
+M045979
+045980
+M045980
+045981
+M045981
+045982
+M045982
+045983
+M045983
+045984
+M045984
+045985
+M045985
+045986
+M045986
+045987
+M045987
+045988
+M045988
+045989
+M045989
+045990
+M045990
+045991
+M045991
+045992
+M045992
+045993
+M045993
+045994
+M045994
+045995
+M045995
+045996
+M045996
+045997
+M045997
+045998
+M045998
+045999
+M045999
+046000
+M046000
+046001
+M046001
+046002
+M046002
+046003
+M046003
+046004
+M046004
+046005
+M046005
+046006
+M046006
+046007
+M046007
+046008
+M046008
+046009
+M046009
+046010
+M046010
+046011
+M046011
+046012
+M046012
+046013
+M046013
+046014
+M046014
+046015
+M046015
+046030
+M046030
+046031
+M046031
+046032
+M046032
+046033
+M046033
+046034
+M046034
+046042
+M046042
+046043
+M046043
+046044
+M046044
+046045
+M046045
+046074
+M046074
+046075
+M046075
+046076
+M046076
+046077
+M046077
+046078
+M046078
+046079
+M046079
+046080
+M046080
+046081
+M046081
+046082
+M046082
+046083
+M046083
+046084
+M046084
+046085
+M046085
+046086
+M046086
+046087
+M046087
+046088
+M046088
+046089
+M046089
+046090
+M046090
+046091
+M046091
+046092
+M046092
+046093
+M046093
+046094
+M046094
+046095
+M046095
+046096
+M046096
+046097
+M046097
+046098
+M046098
+046171
+M046171
+046172
+M046172
+046209
+M046209
+046210
+M046210
+046211
+M046211
+046212
+M046212
+046213
+M046213
+046214
+M046214
+046215
+M046215
+046216
+M046216
+046250
+M046250
+046251
+M046251
+046252
+M046252
+046253
+M046253
+046254
+M046254
+046255
+M046255
+046281
+M046281
+046282
+M046282
+046283
+M046283
+046284
+M046284
+046285
+M046285
+046362
+M046362
+046363
+M046363
+046364
+M046364
+046365
+M046365
+046366
+M046366
+046381
+M046381
+046382
+M046382
+046383
+M046383
+046384
+M046384
+046385
+M046385
+046386
+M046386
+046387
+M046387
+046388
+M046388
+046389
+M046389
+046390
+M046390
+046391
+M046391
+046392
+M046392
+046393
+M046393
+046394
+M046394
+046395
+M046395
+046396
+M046396
+046397
+M046397
+046398
+M046398
+046399
+M046399
+046400
+M046400
+046401
+M046401
+046402
+M046402
+046403
+M046403
+046404
+M046404
+046405
+M046405
+046406
+M046406
+046407
+M046407
+046447
+M046447
+046448
+M046448
+046449
+M046449
+046450
+M046450
+046451
+M046451
+046452
+M046452
+046453
+M046453
+046462
+M046462
+046463
+M046463
+046464
+M046464
+046465
+M046465
+046466
+M046466
+046467
+M046467
+046468
+M046468
+046469
+M046469
+046470
+M046470
+046511
+M046511
+046512
+M046512
+046513
+M046513
+046514
+M046514
+046515
+M046515
+046516
+M046516
+046517
+M046517
+046518
+M046518
+046519
+M046519
+046520
+M046520
+046521
+M046521
+046522
+M046522
+046523
+M046523
+046524
+M046524
+046525
+M046525
+046526
+M046526
+046527
+M046527
+046528
+M046528
+046529
+M046529
+046530
+M046530
+046531
+M046531
+046532
+M046532
+046533
+M046533
+046534
+M046534
+046535
+M046535
+046536
+M046536
+046573
+M046573
+046574
+M046574
+046638
+M046638
+046639
+M046639
+046640
+M046640
+046641
+M046641
+046642
+M046642
+046772
+M046772
+046773
+M046773
+046774
+M046774
+046775
+M046775
+046776
+M046776
+046777
+M046777
+046830
+M046830
+046831
+M046831
+046832
+M046832
+046833
+M046833
+046834
+M046834
+046835
+M046835
+046836
+M046836
+046837
+M046837
+046838
+M046838
+046839
+M046839
+046840
+M046840
+046841
+M046841
+046842
+M046842
+046853
+M046853
+046854
+M046854
+046855
+M046855
+046856
+M046856
+046857
+M046857
+046858
+M046858
+046859
+M046859
+046860
+M046860
+046861
+M046861
+046862
+M046862
+046863
+M046863
+046864
+M046864
+046865
+M046865
+046883
+M046883
+046884
+M046884
+046885
+M046885
+046886
+M046886
+046887
+M046887
+046888
+M046888
+046889
+M046889
+046890
+M046890
+046891
+M046891
+046892
+M046892
+046893
+M046893
+046894
+M046894
+046895
+M046895
+046896
+M046896
+046897
+M046897
+046898
+M046898
+046899
+M046899
+046900
+M046900
+046901
+M046901
+046902
+M046902
+046903
+M046903
+046904
+M046904
+046905
+M046905
+046906
+M046906
+046907
+M046907
+046908
+M046908
+046909
+M046909
+046910
+M046910
+046911
+M046911
+046912
+M046912
+046913
+M046913
+046914
+M046914
+046915
+M046915
+046916
+M046916
+046917
+M046917
+046918
+M046918
+046919
+M046919
+046920
+M046920
+046921
+M046921
+046922
+M046922
+046923
+M046923
+046924
+M046924
+046925
+M046925
+046926
+M046926
+046927
+M046927
+046928
+M046928
+046955
+M046955
+046956
+M046956
+046957
+M046957
+046958
+M046958
+046959
+M046959
+046960
+M046960
+046961
+M046961
+046962
+M046962
+046963
+M046963
+046964
+M046964
+046965
+M046965
+046966
+M046966
+046967
+M046967
+046968
+M046968
+046969
+M046969
+046970
+M046970
+046971
+M046971
+046972
+M046972
+046973
+M046973
+046974
+M046974
+046975
+M046975
+046976
+M046976
+046977
+M046977
+046978
+M046978
+046982
+M046982
+046983
+M046983
+046984
+M046984
+046985
+M046985
+046986
+M046986
+046987
+M046987
+046988
+M046988
+046989
+M046989
+046993
+M046993
+046994
+M046994
+046995
+M046995
+046996
+M046996
+046997
+M046997
+046998
+M046998
+047016
+M047016
+047017
+M047017
+047018
+M047018
+047019
+M047019
+047020
+M047020
+047021
+M047021
+047022
+M047022
+047023
+M047023
+047024
+M047024
+047025
+M047025
+047026
+M047026
+047027
+M047027
+047028
+M047028
+047029
+M047029
+047030
+M047030
+047031
+M047031
+047032
+M047032
+047033
+M047033
+047037
+M047037
+047038
+M047038
+047039
+M047039
+047040
+M047040
+047041
+M047041
+047042
+M047042
+047043
+M047043
+047044
+M047044
+047045
+M047045
+047046
+M047046
+047047
+M047047
+047119
+M047119
+047120
+M047120
+047121
+M047121
+047122
+M047122
+047137
+M047137
+047138
+M047138
+047139
+M047139
+047140
+M047140
+047141
+M047141
+047142
+M047142
+047143
+M047143
+047144
+M047144
+047145
+M047145
+047146
+M047146
+047147
+M047147
+047190
+M047190
+047191
+M047191
+047192
+M047192
+047193
+M047193
+047194
+M047194
+047195
+M047195
+047196
+M047196
+047197
+M047197
+047198
+M047198
+047199
+M047199
+047200
+M047200
+047201
+M047201
+047202
+M047202
+047203
+M047203
+047204
+M047204
+047205
+M047205
+047206
+M047206
+047207
+M047207
+047208
+M047208
+047213
+M047213
+047214
+M047214
+047215
+M047215
+047216
+M047216
+047217
+M047217
+047218
+M047218
+047219
+M047219
+047220
+M047220
+047221
+M047221
+047222
+M047222
+047223
+M047223
+047224
+M047224
+047225
+M047225
+047226
+M047226
+047227
+M047227
+047228
+M047228
+047229
+M047229
+047230
+M047230
+047231
+M047231
+047232
+M047232
+047233
+M047233
+047234
+M047234
+047235
+M047235
+047236
+M047236
+047237
+M047237
+047238
+M047238
+047239
+M047239
+047240
+M047240
+047241
+M047241
+047242
+M047242
+047243
+M047243
+047244
+M047244
+047245
+M047245
+047246
+M047246
+047247
+M047247
+047248
+M047248
+047249
+M047249
+047250
+M047250
+047251
+M047251
+047252
+M047252
+047302
+M047302
+047303
+M047303
+047304
+M047304
+047305
+M047305
+047306
+M047306
+047307
+M047307
+047308
+M047308
+047309
+M047309
+047310
+M047310
+047311
+M047311
+047312
+M047312
+047313
+M047313
+047314
+M047314
+047315
+M047315
+047316
+M047316
+047317
+M047317
+047318
+M047318
+047319
+M047319
+047320
+M047320
+047321
+M047321
+047343
+M047343
+047344
+M047344
+047345
+M047345
+047346
+M047346
+047347
+M047347
+047348
+M047348
+047349
+M047349
+047350
+M047350
+047351
+M047351
+047352
+M047352
+047353
+M047353
+047354
+M047354
+047401
+M047401
+047402
+M047402
+047403
+M047403
+047404
+M047404
+047405
+M047405
+047406
+M047406
+047407
+M047407
+047408
+M047408
+047409
+M047409
+047439
+M047439
+047440
+M047440
+047441
+M047441
+047442
+M047442
+047443
+M047443
+047444
+M047444
+047445
+M047445
+047446
+M047446
+047447
+M047447
+047448
+M047448
+047449
+M047449
+047450
+M047450
+047451
+M047451
+047452
+M047452
+047453
+M047453
+047454
+M047454
+047455
+M047455
+047498
+M047498
+047499
+M047499
+047500
+M047500
+047501
+M047501
+047502
+M047502
+047503
+M047503
+047504
+M047504
+047505
+M047505
+047506
+M047506
+047507
+M047507
+047508
+M047508
+047509
+M047509
+047510
+M047510
+047511
+M047511
+047512
+M047512
+047513
+M047513
+047514
+M047514
+047515
+M047515
+047516
+M047516
+047517
+M047517
+047518
+M047518
+047519
+M047519
+047520
+M047520
+047521
+M047521
+047522
+M047522
+047523
+M047523
+047524
+M047524
+047525
+M047525
+047526
+M047526
+047527
+M047527
+047536
+M047536
+047537
+M047537
+047538
+M047538
+047550
+M047550
+047551
+M047551
+047552
+M047552
+047553
+M047553
+047554
+M047554
+047558
+M047558
+047559
+M047559
+047560
+M047560
+047642
+M047642
+047643
+M047643
+047644
+M047644
+047645
+M047645
+047646
+M047646
+047647
+M047647
+047648
+M047648
+047649
+M047649
+047650
+M047650
+047651
+M047651
+047652
+M047652
+047653
+M047653
+047654
+M047654
+047655
+M047655
+047656
+M047656
+047657
+M047657
+047658
+M047658
+047659
+M047659
+047660
+M047660
+047661
+M047661
+047662
+M047662
+047663
+M047663
+047664
+M047664
+047665
+M047665
+047666
+M047666
+047667
+M047667
+047668
+M047668
+047669
+M047669
+047670
+M047670
+047671
+M047671
+047672
+M047672
+047673
+M047673
+047674
+M047674
+047675
+M047675
+047676
+M047676
+047677
+M047677
+047678
+M047678
+047679
+M047679
+047680
+M047680
+047681
+M047681
+047682
+M047682
+047683
+M047683
+047684
+M047684
+047685
+M047685
+047686
+M047686
+047687
+M047687
+047688
+M047688
+047689
+M047689
+047690
+M047690
+047691
+M047691
+047692
+M047692
+047693
+M047693
+047694
+M047694
+047695
+M047695
+047696
+M047696
+047697
+M047697
+047698
+M047698
+047699
+M047699
+047700
+M047700
+047701
+M047701
+047702
+M047702
+047703
+M047703
+047704
+M047704
+047705
+M047705
+047706
+M047706
+047707
+M047707
+047708
+M047708
+047709
+M047709
+047710
+M047710
+047711
+M047711
+047712
+M047712
+047713
+M047713
+047714
+M047714
+047715
+M047715
+047716
+M047716
+047717
+M047717
+047718
+M047718
+047719
+M047719
+047720
+M047720
+047721
+M047721
+047722
+M047722
+047723
+M047723
+047724
+M047724
+047725
+M047725
+047726
+M047726
+047727
+M047727
+047728
+M047728
+047729
+M047729
+047868
+M047868
+047869
+M047869
+047870
+M047870
+047871
+M047871
+047872
+M047872
+047873
+M047873
+047874
+M047874
+047875
+M047875
+047876
+M047876
+047877
+M047877
+047878
+M047878
+047922
+M047922
+047923
+M047923
+047924
+M047924
+047925
+M047925
+047926
+M047926
+047927
+M047927
+047928
+M047928
+047929
+M047929
+047930
+M047930
+047953
+M047953
+047954
+M047954
+047955
+M047955
+047956
+M047956
+047957
+M047957
+047958
+M047958
+048031
+M048031
+048032
+M048032
+048033
+M048033
+048111
+M048111
+048112
+M048112
+048113
+M048113
+048114
+M048114
+048115
+M048115
+048116
+M048116
+048117
+M048117
+048118
+M048118
+048119
+M048119
+048120
+M048120
+048121
+M048121
+048122
+M048122
+048123
+M048123
+048124
+M048124
+048125
+M048125
+048126
+M048126
+048127
+M048127
+048128
+M048128
+048129
+M048129
+048130
+M048130
+048131
+M048131
+048132
+M048132
+048133
+M048133
+048134
+M048134
+048135
+M048135
+048136
+M048136
+048137
+M048137
+048138
+M048138
+048283
+M048283
+048284
+M048284
+048285
+M048285
+048286
+M048286
+048320
+M048320
+048321
+M048321
+048322
+M048322
+048323
+M048323
+048324
+M048324
+048325
+M048325
+048326
+M048326
+048327
+M048327
+048328
+M048328
+048329
+M048329
+048330
+M048330
+048331
+M048331
+048332
+M048332
+048333
+M048333
+048334
+M048334
+048335
+M048335
+048336
+M048336
+048337
+M048337
+048338
+M048338
+048339
+M048339
+048340
+M048340
+048341
+M048341
+048342
+M048342
+048343
+M048343
+048344
+M048344
+048345
+M048345
+048346
+M048346
+048347
+M048347
+048348
+M048348
+048349
+M048349
+048350
+M048350
+048351
+M048351
+048352
+M048352
+048380
+M048380
+048381
+M048381
+048382
+M048382
+048383
+M048383
+048384
+M048384
+048474
+M048474
+048475
+M048475
+048502
+M048502
+048503
+M048503
+048504
+M048504
+048505
+M048505
+048506
+M048506
+048507
+M048507
+048645
+M048645
+048646
+M048646
+048647
+M048647
+048648
+M048648
+048649
+M048649
+048650
+M048650
+048651
+M048651
+048652
+M048652
+048653
+M048653
+048654
+M048654
+048655
+M048655
+048656
+M048656
+048657
+M048657
+048658
+M048658
+048659
+M048659
+048660
+M048660
+048661
+M048661
+048662
+M048662
+048663
+M048663
+048664
+M048664
+048665
+M048665
+048666
+M048666
+048667
+M048667
+048668
+M048668
+048669
+M048669
+048670
+M048670
+048671
+M048671
+048698
+M048698
+048699
+M048699
+048700
+M048700
+048701
+M048701
+048702
+M048702
+048703
+M048703
+048704
+M048704
+048705
+M048705
+048706
+M048706
+048707
+M048707
+048708
+M048708
+048709
+M048709
+048710
+M048710
+048711
+M048711
+048712
+M048712
+048713
+M048713
+048714
+M048714
+048715
+M048715
+048716
+M048716
+048717
+M048717
+048718
+M048718
+048719
+M048719
+048720
+M048720
+048721
+M048721
+048722
+M048722
+048732
+M048732
+048733
+M048733
+048734
+M048734
+048735
+M048735
+048736
+M048736
+048737
+M048737
+048882
+M048882
+048883
+M048883
+048884
+M048884
+048885
+M048885
+048886
+M048886
+048888
+M048888
+048889
+M048889
+048890
+M048890
+048891
+M048891
+048892
+M048892
+048893
+M048893
+048894
+M048894
+048897
+M048897
+048898
+M048898
+048899
+M048899
+048900
+M048900
+048901
+M048901
+048902
+M048902
+048903
+M048903
+048908
+M048908
+048909
+M048909
+048910
+M048910
+048911
+M048911
+048912
+M048912
+048963
+M048963
+048964
+M048964
+048965
+M048965
+048966
+M048966
+048967
+M048967
+048998
+M048998
+048999
+M048999
+049000
+M049000
+049001
+M049001
+049002
+M049002
+049003
+M049003
+049004
+M049004
+049179
+M049179
+049180
+M049180
+049181
+M049181
+049182
+M049182
+049183
+M049183
+049184
+M049184
+049185
+M049185
+049186
+M049186
+049196
+M049196
+049197
+M049197
+049198
+M049198
+049199
+M049199
+049200
+M049200
+049201
+M049201
+049207
+M049207
+049208
+M049208
+049209
+M049209
+049210
+M049210
+049211
+M049211
+049212
+M049212
+049213
+M049213
+049214
+M049214
+049215
+M049215
+049328
+M049328
+049329
+M049329
+049330
+M049330
+049331
+M049331
+049332
+M049332
+049333
+M049333
+049334
+M049334
+049343
+M049343
+049344
+M049344
+049345
+M049345
+049346
+M049346
+049347
+M049347
+049348
+M049348
+049349
+M049349
+049350
+M049350
\ No newline at end of file
diff --git a/babel_272/t2m_babel_mean_std/Mean.npy b/babel_272/t2m_babel_mean_std/Mean.npy
new file mode 100644
index 0000000000000000000000000000000000000000..5f5229744ca84e0fd5b1b8b931e61bd9d8948a98
--- /dev/null
+++ b/babel_272/t2m_babel_mean_std/Mean.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d0f782aecd1c0479c517aee68959a26f55ddf1f34bb2344b4d9c365c73f3ed80
+size 2304
diff --git a/babel_272/t2m_babel_mean_std/Std.npy b/babel_272/t2m_babel_mean_std/Std.npy
new file mode 100644
index 0000000000000000000000000000000000000000..1d7c7b1b7490d3c2dd82038c0b8623df189d0d4d
--- /dev/null
+++ b/babel_272/t2m_babel_mean_std/Std.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:de477d76de0b03b71779dea84964ccf59c1f53ad49ebef7d99202c4ff19a2ff5
+size 2304
diff --git a/babel_272/texts.zip b/babel_272/texts.zip
new file mode 100644
index 0000000000000000000000000000000000000000..d20b9e8959245e78e6d19edb2e4ccd72fadcad3a
--- /dev/null
+++ b/babel_272/texts.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:39b0a560144db9d4a261462d21f0eeedefc3f0bd1bb664cb3ec819c17ebead52
+size 38968869
diff --git a/babel_272_stream/.gitattributes b/babel_272_stream/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..1ef325f1b111266a6b26e0196871bd78baa8c2f3
--- /dev/null
+++ b/babel_272_stream/.gitattributes
@@ -0,0 +1,59 @@
+*.7z filter=lfs diff=lfs merge=lfs -text
+*.arrow filter=lfs diff=lfs merge=lfs -text
+*.bin filter=lfs diff=lfs merge=lfs -text
+*.bz2 filter=lfs diff=lfs merge=lfs -text
+*.ckpt filter=lfs diff=lfs merge=lfs -text
+*.ftz filter=lfs diff=lfs merge=lfs -text
+*.gz filter=lfs diff=lfs merge=lfs -text
+*.h5 filter=lfs diff=lfs merge=lfs -text
+*.joblib filter=lfs diff=lfs merge=lfs -text
+*.lfs.* filter=lfs diff=lfs merge=lfs -text
+*.lz4 filter=lfs diff=lfs merge=lfs -text
+*.mds filter=lfs diff=lfs merge=lfs -text
+*.mlmodel filter=lfs diff=lfs merge=lfs -text
+*.model filter=lfs diff=lfs merge=lfs -text
+*.msgpack filter=lfs diff=lfs merge=lfs -text
+*.npy filter=lfs diff=lfs merge=lfs -text
+*.npz filter=lfs diff=lfs merge=lfs -text
+*.onnx filter=lfs diff=lfs merge=lfs -text
+*.ot filter=lfs diff=lfs merge=lfs -text
+*.parquet filter=lfs diff=lfs merge=lfs -text
+*.pb filter=lfs diff=lfs merge=lfs -text
+*.pickle filter=lfs diff=lfs merge=lfs -text
+*.pkl filter=lfs diff=lfs merge=lfs -text
+*.pt filter=lfs diff=lfs merge=lfs -text
+*.pth filter=lfs diff=lfs merge=lfs -text
+*.rar filter=lfs diff=lfs merge=lfs -text
+*.safetensors filter=lfs diff=lfs merge=lfs -text
+saved_model/**/* filter=lfs diff=lfs merge=lfs -text
+*.tar.* filter=lfs diff=lfs merge=lfs -text
+*.tar filter=lfs diff=lfs merge=lfs -text
+*.tflite filter=lfs diff=lfs merge=lfs -text
+*.tgz filter=lfs diff=lfs merge=lfs -text
+*.wasm filter=lfs diff=lfs merge=lfs -text
+*.xz filter=lfs diff=lfs merge=lfs -text
+*.zip filter=lfs diff=lfs merge=lfs -text
+*.zst filter=lfs diff=lfs merge=lfs -text
+*tfevents* filter=lfs diff=lfs merge=lfs -text
+# Audio files - uncompressed
+*.pcm filter=lfs diff=lfs merge=lfs -text
+*.sam filter=lfs diff=lfs merge=lfs -text
+*.raw filter=lfs diff=lfs merge=lfs -text
+# Audio files - compressed
+*.aac filter=lfs diff=lfs merge=lfs -text
+*.flac filter=lfs diff=lfs merge=lfs -text
+*.mp3 filter=lfs diff=lfs merge=lfs -text
+*.ogg filter=lfs diff=lfs merge=lfs -text
+*.wav filter=lfs diff=lfs merge=lfs -text
+# Image files - uncompressed
+*.bmp filter=lfs diff=lfs merge=lfs -text
+*.gif filter=lfs diff=lfs merge=lfs -text
+*.png filter=lfs diff=lfs merge=lfs -text
+*.tiff filter=lfs diff=lfs merge=lfs -text
+# Image files - compressed
+*.jpg filter=lfs diff=lfs merge=lfs -text
+*.jpeg filter=lfs diff=lfs merge=lfs -text
+*.webp filter=lfs diff=lfs merge=lfs -text
+# Video files - compressed
+*.mp4 filter=lfs diff=lfs merge=lfs -text
+*.webm filter=lfs diff=lfs merge=lfs -text
diff --git a/babel_272_stream/README.md b/babel_272_stream/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..088ccdb349bec6ad7591c66395857ce934c61307
--- /dev/null
+++ b/babel_272_stream/README.md
@@ -0,0 +1,62 @@
+---
+license: apache-2.0
+---
+## 🚀 Dataset Usage
+To facilitate researchers, we provide the processed streaming 272-dim Motion Representation of [BABEL](https://babel.is.tue.mpg.de/) dataset in this Hugging Face repo.
+
+NOTE: We process the original BABEL dataset to support training of streaming motion generation.
+e.g. If there is a motion sequence A, annotated as (A1, A2, A3, A4) in BABEL dataset, each subsequence has text description: (A1_t, A2_t, A3_t, A4_t).
+
+Then, our BABEL-stream is constructed as:
+
+seq1: (A1, A2) --- seq1_text: (A1_t*A2_t#A1_length)
+
+seq2: (A2, A3) --- seq2_text: (A2_t*A3_t#A2_length)
+
+seq3: (A3, A4) --- seq3_text: (A3_t*A4_t#A3_length)
+
+Here, * and # is separation symbol, A1_length means the number of frames of subsequence A1.
+
+Motions are resampled into 30 FPS.
+
+The dataset is organized as:
+```
+./
+ ├── train_stream
+ ├── seq1.npy
+ ...
+ ├── train_stream_text
+ ├── seq1.txt
+ ...
+ ├── val_stream
+ ├── seq1.npy
+ ...
+ ├── val_stream_text
+ ├── seq1.txt
+ ...
+```
+
+❗️❗️❗️ The processed data is solely for academic purposes. Make sure you read through the [BABEL License](https://babel.is.tue.mpg.de/license.html).
+
+## 📖 Paper & Project Page & Code
+* [Arxiv Paper](https://arxiv.org/abs/2503.15451)
+* [Project Page](https://zju3dv.github.io/MotionStreamer/)
+* [Code](https://github.com/zju3dv/MotionStreamer)
+
+## 🏃 Processing script
+For more details of how to obtain the 272-dim motion representation, as well as other useful tools (e.g., Visualization and Conversion to BVH format), please refer to our [GitHub repo](https://github.com/Li-xingXiao/272-dim-Motion-Representation).
+
+## 🌹 Acknowledgement
+This repository builds upon the following awesome datasets and projects:
+- [BABEL](https://babel.is.tue.mpg.de/)
+
+## 🤝🏼 Citation
+If our project is helpful for your research, please consider citing :
+```
+@article{xiao2025motionstreamer,
+ title={MotionStreamer: Streaming Motion Generation via Diffusion-based Autoregressive Model in Causal Latent Space},
+ author={Xiao, Lixing and Lu, Shunlin and Pi, Huaijin and Fan, Ke and Pan, Liang and Zhou, Yueer and Feng, Ziyong and Zhou, Xiaowei and Peng, Sida and Wang, Jingbo},
+ journal={arXiv preprint arXiv:2503.15451},
+ year={2025}
+ }
+```
\ No newline at end of file
diff --git a/babel_272_stream/train_stream.zip b/babel_272_stream/train_stream.zip
new file mode 100644
index 0000000000000000000000000000000000000000..65fa00ac0c809563d3a8b9e22314f7f84742bb7f
--- /dev/null
+++ b/babel_272_stream/train_stream.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:35db924d754e321f673a72c22b80d5d725f55d74151fc34351f554ef6bf33a2e
+size 6901914721
diff --git a/babel_272_stream/train_stream_text.zip b/babel_272_stream/train_stream_text.zip
new file mode 100644
index 0000000000000000000000000000000000000000..a756a4af4d61979632e698beb159f9b447a8bacb
--- /dev/null
+++ b/babel_272_stream/train_stream_text.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d46561fcaf62738b1d08cf54a851ffecb3fb7a154f9663b199dfa83f0d677046
+size 4746908
diff --git a/babel_272_stream/val_stream.zip b/babel_272_stream/val_stream.zip
new file mode 100644
index 0000000000000000000000000000000000000000..025ec509ebbe84fe6ea611e1f0531a2e10b2a124
--- /dev/null
+++ b/babel_272_stream/val_stream.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0564c64ce642330222b3ed83d031f5f3765c6979a82f17a2259e07d80d0ff78a
+size 2580199524
diff --git a/babel_272_stream/val_stream_text.zip b/babel_272_stream/val_stream_text.zip
new file mode 100644
index 0000000000000000000000000000000000000000..b74aaa6f241c4a0c8b59f92a11670b1e454ce0ce
--- /dev/null
+++ b/babel_272_stream/val_stream_text.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ba646f2836f03a7fa1a5470aa8c098d1b0e446872d5bf53b8b42283e5c1f368b
+size 1685986
diff --git a/body_models/human_model_files/mano/MANO_LEFT.pkl b/body_models/human_model_files/mano/MANO_LEFT.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..32cdc533e2c01ed4995db2dc1302520d7d374c5a
--- /dev/null
+++ b/body_models/human_model_files/mano/MANO_LEFT.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c4022f7083f2ca7c78b2b3d595abbab52debd32b09d372b16923a801f0ea6a30
+size 3821391
diff --git a/body_models/human_model_files/mano/MANO_RIGHT.pkl b/body_models/human_model_files/mano/MANO_RIGHT.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..8e7ac7faf64ad51096ec1da626ea13757ed7f665
--- /dev/null
+++ b/body_models/human_model_files/mano/MANO_RIGHT.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:45d60aa3b27ef9107a7afd4e00808f307fd91111e1cfa35afd5c4a62de264767
+size 3821356
diff --git a/body_models/human_model_files/smpl/J_regressor_extra.npy b/body_models/human_model_files/smpl/J_regressor_extra.npy
new file mode 100644
index 0000000000000000000000000000000000000000..d6cf8c0f6747d3c623a0d300c5176843ae99031d
--- /dev/null
+++ b/body_models/human_model_files/smpl/J_regressor_extra.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cc968ea4f9855571e82f90203280836b01f13ee42a8e1b89d8d580b801242a89
+size 496160
diff --git a/body_models/human_model_files/smpl/SMPL_FEMALE.pkl b/body_models/human_model_files/smpl/SMPL_FEMALE.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..92a201f4839bd95c1c1986437c7c6a02d7d1ae99
--- /dev/null
+++ b/body_models/human_model_files/smpl/SMPL_FEMALE.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a583c1b98e4afc19042641f1bae5cd8a1f712a6724886291a7627ec07acd408d
+size 39056454
diff --git a/body_models/human_model_files/smpl/SMPL_MALE.pkl b/body_models/human_model_files/smpl/SMPL_MALE.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..43dfecc57d9b7aa99cd2398df818ba252be7f605
--- /dev/null
+++ b/body_models/human_model_files/smpl/SMPL_MALE.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0e8c0bbbbc635dcb166ed29c303fb4bef16ea5f623e5a89263495a9e403575bd
+size 39056404
diff --git a/body_models/human_model_files/smpl/SMPL_NEUTRAL.pkl b/body_models/human_model_files/smpl/SMPL_NEUTRAL.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..26574fd104c4b69467f3c7c3516a8508d8a1a36e
--- /dev/null
+++ b/body_models/human_model_files/smpl/SMPL_NEUTRAL.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:98e65c74ad9b998783132f00880d1025a8d64b158e040e6ef13a557e5098bc42
+size 39001280
diff --git a/body_models/human_model_files/smpl/VPOSER_CKPT/TR00_004_00_WO_accad.ini b/body_models/human_model_files/smpl/VPOSER_CKPT/TR00_004_00_WO_accad.ini
new file mode 100644
index 0000000000000000000000000000000000000000..e6694eefdcbf0588daf474c10d9f93487d39938d
--- /dev/null
+++ b/body_models/human_model_files/smpl/VPOSER_CKPT/TR00_004_00_WO_accad.ini
@@ -0,0 +1,29 @@
+[All]
+adam_beta1 : 0.9
+base_lr : 0.005
+batch_size : 512
+best_model_fname : None
+cuda_id : 0
+data_shape : [1, 21, 3]
+dataset_dir : None
+display_model_gender : male
+expr_code : 004_00_WO_accad
+fp_precision : 32
+ip_avoid : False
+kl_coef : 0.005
+latentD : 32
+log_every_epoch : 2
+model_type : smpl
+n_workers : 10
+num_bodies_to_display : 10
+num_epochs : 100
+num_neurons : 512
+reg_coef : 0.0001
+remove_Zrot : True
+seed : 4815
+sm_coef : 0.01
+test_only : False
+try_num : 0
+use_cont_repr : True
+verbosity : 0
+work_dir : None
diff --git a/body_models/human_model_files/smpl/VPOSER_CKPT/snapshots/._TR00_E096.pt b/body_models/human_model_files/smpl/VPOSER_CKPT/snapshots/._TR00_E096.pt
new file mode 100644
index 0000000000000000000000000000000000000000..3bda19c8bfbf67322c9523195ce6658df3d6fe43
--- /dev/null
+++ b/body_models/human_model_files/smpl/VPOSER_CKPT/snapshots/._TR00_E096.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4e2615cd1d2e78cdfac7169c6182a7352d02992336dad7329d3d97f6947fb515
+size 4096
diff --git a/body_models/human_model_files/smpl/VPOSER_CKPT/snapshots/TR00_E096.pt b/body_models/human_model_files/smpl/VPOSER_CKPT/snapshots/TR00_E096.pt
new file mode 100644
index 0000000000000000000000000000000000000000..ec00aac415784a56246b6879249883c7084f9559
--- /dev/null
+++ b/body_models/human_model_files/smpl/VPOSER_CKPT/snapshots/TR00_E096.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0e4ad40f922606989939d3fae6eadf82d1a8e98112dffb6e39d89d6471270d5c
+size 2702962
diff --git a/body_models/human_model_files/smpl/VPOSER_CKPT/vposer_smpl.py b/body_models/human_model_files/smpl/VPOSER_CKPT/vposer_smpl.py
new file mode 100644
index 0000000000000000000000000000000000000000..9b07d6286690bb67d0e4c0c0b46fcfcb84fb20e1
--- /dev/null
+++ b/body_models/human_model_files/smpl/VPOSER_CKPT/vposer_smpl.py
@@ -0,0 +1,164 @@
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2019 Max-Planck-Gesellschaft zur Förderung der Wissenschaften e.V. (MPG),
+# acting on behalf of its Max Planck Institute for Intelligent Systems and the
+# Max Planck Institute for Biological Cybernetics. All rights reserved.
+#
+# Max-Planck-Gesellschaft zur Förderung der Wissenschaften e.V. (MPG) is holder of all proprietary rights
+# on this computer program. You can only use this computer program if you have closed a license agreement
+# with MPG or you get the right to use the computer program from someone who is authorized to grant you that right.
+# Any use of the computer program without a valid license is prohibited and liable to prosecution.
+# Contact: ps-license@tuebingen.mpg.de
+#
+#
+# If you use this code in a research publication please consider citing the following:
+#
+# Expressive Body Capture: 3D Hands, Face, and Body from a Single Image
+# AMASS: Archive of Motion Capture as Surface Shapes
+#
+#
+# Code Developed by:
+# Nima Ghorbani
+# Vassilis Choutas for ContinousRotReprDecoder
+#
+# 2018.01.02
+
+'''
+A human body pose prior built with Auto-Encoding Variational Bayes
+'''
+
+__all__ = ['VPoser']
+
+import os, sys, shutil
+
+import torch
+
+from torch import nn
+from torch.nn import functional as F
+
+import numpy as np
+
+import torchgeometry as tgm
+
+class ContinousRotReprDecoder(nn.Module):
+ def __init__(self):
+ super(ContinousRotReprDecoder, self).__init__()
+
+ def forward(self, module_input):
+ reshaped_input = module_input.view(-1, 3, 2)
+
+ b1 = F.normalize(reshaped_input[:, :, 0], dim=1)
+
+ dot_prod = torch.sum(b1 * reshaped_input[:, :, 1], dim=1, keepdim=True)
+ b2 = F.normalize(reshaped_input[:, :, 1] - dot_prod * b1, dim=-1)
+ b3 = torch.cross(b1, b2, dim=1)
+
+ return torch.stack([b1, b2, b3], dim=-1)
+
+
+class VPoser(nn.Module):
+ def __init__(self, num_neurons, latentD, data_shape, use_cont_repr=True):
+ super(VPoser, self).__init__()
+
+ self.latentD = latentD
+ self.use_cont_repr = use_cont_repr
+
+ n_features = np.prod(data_shape)
+ self.num_joints = data_shape[1]
+
+ self.bodyprior_enc_bn1 = nn.BatchNorm1d(n_features)
+ self.bodyprior_enc_fc1 = nn.Linear(n_features, num_neurons)
+ self.bodyprior_enc_bn2 = nn.BatchNorm1d(num_neurons)
+ self.bodyprior_enc_fc2 = nn.Linear(num_neurons, num_neurons)
+ self.bodyprior_enc_mu = nn.Linear(num_neurons, latentD)
+ self.bodyprior_enc_logvar = nn.Linear(num_neurons, latentD)
+ self.dropout = nn.Dropout(p=.1, inplace=False)
+
+ self.bodyprior_dec_fc1 = nn.Linear(latentD, num_neurons)
+ self.bodyprior_dec_fc2 = nn.Linear(num_neurons, num_neurons)
+
+ if self.use_cont_repr:
+ self.rot_decoder = ContinousRotReprDecoder()
+
+ self.bodyprior_dec_out = nn.Linear(num_neurons, self.num_joints* 6)
+
+ def encode(self, Pin):
+ '''
+
+ :param Pin: Nx(numjoints*3)
+ :param rep_type: 'matrot'/'aa' for matrix rotations or axis-angle
+ :return:
+ '''
+ Xout = Pin.view(Pin.size(0), -1) # flatten input
+ Xout = self.bodyprior_enc_bn1(Xout)
+
+ Xout = F.leaky_relu(self.bodyprior_enc_fc1(Xout), negative_slope=.2)
+ Xout = self.bodyprior_enc_bn2(Xout)
+ Xout = self.dropout(Xout)
+ Xout = F.leaky_relu(self.bodyprior_enc_fc2(Xout), negative_slope=.2)
+ return torch.distributions.normal.Normal(self.bodyprior_enc_mu(Xout), F.softplus(self.bodyprior_enc_logvar(Xout)))
+
+ def decode(self, Zin, output_type='matrot'):
+ assert output_type in ['matrot', 'aa']
+
+ Xout = F.leaky_relu(self.bodyprior_dec_fc1(Zin), negative_slope=.2)
+ Xout = self.dropout(Xout)
+ Xout = F.leaky_relu(self.bodyprior_dec_fc2(Xout), negative_slope=.2)
+ Xout = self.bodyprior_dec_out(Xout)
+ if self.use_cont_repr:
+ Xout = self.rot_decoder(Xout)
+ else:
+ Xout = torch.tanh(Xout)
+
+ Xout = Xout.view([-1, 1, self.num_joints, 9])
+ if output_type == 'aa': return VPoser.matrot2aa(Xout)
+ return Xout
+
+ def forward(self, Pin, input_type='matrot', output_type='matrot'):
+ '''
+
+ :param Pin: aa: Nx1xnum_jointsx3 / matrot: Nx1xnum_jointsx9
+ :param input_type: matrot / aa for matrix rotations or axis angles
+ :param output_type: matrot / aa
+ :return:
+ '''
+ assert output_type in ['matrot', 'aa']
+ # if input_type == 'aa': Pin = VPoser.aa2matrot(Pin)
+ q_z = self.encode(Pin)
+ q_z_sample = q_z.rsample()
+ Prec = self.decode(q_z_sample)
+ if output_type == 'aa': Prec = VPoser.matrot2aa(Prec)
+
+ #return Prec, q_z.mean, q_z.sigma
+ return {'pose':Prec, 'mean':q_z.mean, 'std':q_z.scale}
+
+ def sample_poses(self, num_poses, output_type='aa', seed=None):
+ np.random.seed(seed)
+ dtype = self.bodyprior_dec_fc1.weight.dtype
+ device = self.bodyprior_dec_fc1.weight.device
+ self.eval()
+ with torch.no_grad():
+ Zgen = torch.tensor(np.random.normal(0., 1., size=(num_poses, self.latentD)), dtype=dtype).to(device)
+ return self.decode(Zgen, output_type=output_type)
+
+ @staticmethod
+ def matrot2aa(pose_matrot):
+ '''
+ :param pose_matrot: Nx1xnum_jointsx9
+ :return: Nx1xnum_jointsx3
+ '''
+ batch_size = pose_matrot.size(0)
+ homogen_matrot = F.pad(pose_matrot.view(-1, 3, 3), [0,1])
+ pose = tgm.rotation_matrix_to_angle_axis(homogen_matrot).view(batch_size, 1, -1, 3).contiguous()
+ return pose
+
+ @staticmethod
+ def aa2matrot(pose):
+ '''
+ :param Nx1xnum_jointsx3
+ :return: pose_matrot: Nx1xnum_jointsx9
+ '''
+ batch_size = pose.size(0)
+ pose_body_matrot = tgm.angle_axis_to_rotation_matrix(pose.reshape(-1, 3))[:, :3, :3].contiguous().view(batch_size, 1, -1, 9)
+ return pose_body_matrot
+
diff --git a/body_models/human_model_files/smplx/MANO_SMPLX_vertex_ids.pkl b/body_models/human_model_files/smplx/MANO_SMPLX_vertex_ids.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..dabec1377a0da4c511a519a00f51f1a3a23f33af
--- /dev/null
+++ b/body_models/human_model_files/smplx/MANO_SMPLX_vertex_ids.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e5abe70b6574de25470475091e8008314a5b90127eb48c3e63bfa0adf8c04dcf
+size 13535
diff --git a/body_models/human_model_files/smplx/SMPL-X__FLAME_vertex_ids.npy b/body_models/human_model_files/smplx/SMPL-X__FLAME_vertex_ids.npy
new file mode 100644
index 0000000000000000000000000000000000000000..c940d3aa6cb4cbbcc348fd518b15d8777dc350fd
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPL-X__FLAME_vertex_ids.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7e70cdc3659aae699b9732e8dd4af49106310c69b90dc83d9f73e96dbf871e49
+size 40312
diff --git a/body_models/human_model_files/smplx/SMPLX_FEMALE.npz b/body_models/human_model_files/smplx/SMPLX_FEMALE.npz
new file mode 100644
index 0000000000000000000000000000000000000000..f97be40778b6ac922a0706d42c099fd8f8d942fa
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_FEMALE.npz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:05e37bd22dff93362c92cea9c791c62a2d4d7e8d44b234f3e41be0020fa1c256
+size 108532279
diff --git a/body_models/human_model_files/smplx/SMPLX_FEMALE.pkl b/body_models/human_model_files/smplx/SMPLX_FEMALE.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..44a1a7645392010fbee7b206ab4400241fc7b488
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_FEMALE.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b870ce1fd05b46dd81e2de6269b2955667c931c8594999eb22eeb489b00e2c1f
+size 146809856
diff --git a/body_models/human_model_files/smplx/SMPLX_MALE.npz b/body_models/human_model_files/smplx/SMPLX_MALE.npz
new file mode 100644
index 0000000000000000000000000000000000000000..436ea68e6bdd388ca7d536a7b3d79c714d190e89
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_MALE.npz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79360d466228bec1b9f9d922ea48df718a0a09bccddace18cfec98b0edd68b73
+size 108491578
diff --git a/body_models/human_model_files/smplx/SMPLX_MALE.pkl b/body_models/human_model_files/smplx/SMPLX_MALE.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..e07266dd7a640e7cba17f21bb40c66034f0f1b65
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_MALE.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d4f94c40261ac4762bb9b09142d11bf47e1cc3d6b49b6bbcc4a2731451bf5632
+size 543102085
diff --git a/body_models/human_model_files/smplx/SMPLX_NEUTRAL.npz b/body_models/human_model_files/smplx/SMPLX_NEUTRAL.npz
new file mode 100644
index 0000000000000000000000000000000000000000..34c8d8f151af5a02c8c8b024e3783e2e51554e19
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_NEUTRAL.npz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:15eb61ac2f91dcd6e340913e281b2b8a0a910ebe0955af9251b9bb99fd11d02b
+size 108490191
diff --git a/body_models/human_model_files/smplx/SMPLX_NEUTRAL.pkl b/body_models/human_model_files/smplx/SMPLX_NEUTRAL.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..6bf7f3e5361aabd2086026b1db6883eef0abed5a
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_NEUTRAL.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5b0279321ea9bd3cec5541c03b1f1c9ab9d197896943035c3abeef47f699bc5e
+size 542798306
diff --git a/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW.npy b/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW.npy
new file mode 100644
index 0000000000000000000000000000000000000000..a59a6de8926b39175c4d9bae8478d7cf8e564eca
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:248e277858008fea271d1ea3874eed2310dfd57fa160ea07c467cf6a061e0ecd
+size 167260951
diff --git a/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW.npz b/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW.npz
new file mode 100644
index 0000000000000000000000000000000000000000..59183bf3d42a5b3c3f973b249c11a06892a93bff
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW.npz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ecb628fadd2b40f42cd39378d1e429cd30acc0bab6104676898d4374b804163d
+size 167261087
diff --git a/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW_WiFlame.npy b/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW_WiFlame.npy
new file mode 100644
index 0000000000000000000000000000000000000000..fb92f91bb815cf1ebad83d942ce5812ef7cf85c4
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_NEUTRAL_NEW_WiFlame.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9047e853fc08caa5cef648aa691bf80cf423ca5f0693d825c029a6a7b0bedc51
+size 215482118
diff --git a/body_models/human_model_files/smplx/SMPLX_NEUTRAL_WiFlame.npy b/body_models/human_model_files/smplx/SMPLX_NEUTRAL_WiFlame.npy
new file mode 100644
index 0000000000000000000000000000000000000000..eda9125a67aad196999be71a717b9d6eed3e21f3
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_NEUTRAL_WiFlame.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4de3b53501fb7b3acdb64533eac9088b4cf39710fa8dfe39dfb67d193968ff31
+size 215482118
diff --git a/body_models/human_model_files/smplx/SMPLX_to_J14.pkl b/body_models/human_model_files/smplx/SMPLX_to_J14.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..db8aa5c74b860a2b9555383d5ca2a09523851fe4
--- /dev/null
+++ b/body_models/human_model_files/smplx/SMPLX_to_J14.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5df844ddea85b0a400a2e8dbe63d09d19f2b1b7ec0e0e952daeae08f83d82d61
+size 4692193
diff --git a/body_models/human_model_files/smplx/smplx_kid_template.npy b/body_models/human_model_files/smplx/smplx_kid_template.npy
new file mode 100644
index 0000000000000000000000000000000000000000..8ce7bc403545dfb29f361787cb7bca1df8316d6e
--- /dev/null
+++ b/body_models/human_model_files/smplx/smplx_kid_template.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bdce4f5886b9ddcb6da3ee0f70ae636b1aa1292f2b379c4c3149fce8abc0a604
+size 251528
diff --git a/body_models/human_model_files/smplx/smplx_parts_segm.pkl b/body_models/human_model_files/smplx/smplx_parts_segm.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..77ce98631741ba3887d689077baf35422d39299d
--- /dev/null
+++ b/body_models/human_model_files/smplx/smplx_parts_segm.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bb69c10801205c9cfb5353fdeb1b9cc5ade53d14c265c3339421cdde8b9c91e7
+size 1323168
diff --git a/body_models/human_model_files/smplx/smplx_vert_segmentation.json b/body_models/human_model_files/smplx/smplx_vert_segmentation.json
new file mode 100644
index 0000000000000000000000000000000000000000..cb3adb8e6668a67f77e9d163807392ff991e7821
--- /dev/null
+++ b/body_models/human_model_files/smplx/smplx_vert_segmentation.json
@@ -0,0 +1,12027 @@
+{
+ "rightHand": [
+ 7333,
+ 7334,
+ 7331,
+ 7332,
+ 7338,
+ 7335,
+ 7336,
+ 7337,
+ 7340,
+ 7339,
+ 7342,
+ 7343,
+ 7341,
+ 7346,
+ 7344,
+ 7345,
+ 7347,
+ 7348,
+ 7349,
+ 7350,
+ 7351,
+ 7352,
+ 7353,
+ 7354,
+ 7357,
+ 7358,
+ 7355,
+ 7356,
+ 7361,
+ 7362,
+ 7359,
+ 7360,
+ 7365,
+ 7366,
+ 7363,
+ 7364,
+ 7370,
+ 7367,
+ 7368,
+ 7369,
+ 7373,
+ 7371,
+ 7372,
+ 7374,
+ 7376,
+ 7375,
+ 7383,
+ 7384,
+ 7381,
+ 7382,
+ 7385,
+ 7386,
+ 7392,
+ 7391,
+ 7395,
+ 7396,
+ 7393,
+ 7394,
+ 7399,
+ 7400,
+ 7397,
+ 7398,
+ 7403,
+ 7404,
+ 7401,
+ 7402,
+ 7407,
+ 7408,
+ 7405,
+ 7406,
+ 7409,
+ 7410,
+ 7413,
+ 7414,
+ 7411,
+ 7412,
+ 7415,
+ 7416,
+ 7419,
+ 7420,
+ 7421,
+ 7423,
+ 7422,
+ 7424,
+ 7425,
+ 7426,
+ 7429,
+ 7430,
+ 7427,
+ 7428,
+ 7433,
+ 7434,
+ 7431,
+ 7432,
+ 7435,
+ 7436,
+ 7438,
+ 7437,
+ 7439,
+ 7442,
+ 7443,
+ 7440,
+ 7441,
+ 7444,
+ 7445,
+ 7446,
+ 7447,
+ 7449,
+ 7448,
+ 7450,
+ 7451,
+ 7456,
+ 7459,
+ 7465,
+ 7466,
+ 7463,
+ 7464,
+ 7469,
+ 7467,
+ 7468,
+ 7470,
+ 7471,
+ 7472,
+ 7479,
+ 7480,
+ 7481,
+ 7482,
+ 7485,
+ 7483,
+ 7484,
+ 7487,
+ 7488,
+ 7486,
+ 7491,
+ 7492,
+ 7489,
+ 7490,
+ 7493,
+ 7494,
+ 7499,
+ 7500,
+ 7501,
+ 7504,
+ 7505,
+ 7512,
+ 7513,
+ 7514,
+ 7520,
+ 7521,
+ 7522,
+ 7523,
+ 7524,
+ 7525,
+ 7526,
+ 7528,
+ 7529,
+ 7527,
+ 7530,
+ 7532,
+ 7533,
+ 7534,
+ 7535,
+ 7540,
+ 7541,
+ 7539,
+ 7542,
+ 7544,
+ 7543,
+ 7546,
+ 7547,
+ 7545,
+ 7548,
+ 7549,
+ 7550,
+ 7551,
+ 7552,
+ 7553,
+ 7556,
+ 7558,
+ 7560,
+ 7561,
+ 7562,
+ 7563,
+ 7564,
+ 7571,
+ 7572,
+ 7573,
+ 7574,
+ 7575,
+ 7576,
+ 7577,
+ 7578,
+ 7579,
+ 7581,
+ 7585,
+ 7586,
+ 7588,
+ 7587,
+ 7590,
+ 7589,
+ 7596,
+ 7597,
+ 7598,
+ 7599,
+ 7602,
+ 7603,
+ 7600,
+ 7601,
+ 7604,
+ 7605,
+ 7607,
+ 7606,
+ 7608,
+ 7609,
+ 7610,
+ 7613,
+ 7612,
+ 7614,
+ 7615,
+ 7616,
+ 7617,
+ 7618,
+ 7619,
+ 7620,
+ 7621,
+ 7624,
+ 7625,
+ 7626,
+ 7627,
+ 7628,
+ 7629,
+ 7634,
+ 7635,
+ 7638,
+ 7637,
+ 7639,
+ 7640,
+ 7643,
+ 7947,
+ 7948,
+ 7957,
+ 7958,
+ 8047,
+ 8049,
+ 8048,
+ 8050,
+ 8051,
+ 8052,
+ 8053,
+ 8054,
+ 8055,
+ 8056,
+ 8057,
+ 8058,
+ 8059,
+ 8060,
+ 8061,
+ 8062,
+ 8063,
+ 8064,
+ 8065,
+ 8066,
+ 8067,
+ 8070,
+ 8071,
+ 8068,
+ 8069,
+ 8073,
+ 8072,
+ 8075,
+ 8074,
+ 8076,
+ 8077,
+ 8078,
+ 8080,
+ 8079,
+ 8081,
+ 8082,
+ 8083,
+ 8084,
+ 8085,
+ 8086,
+ 8088,
+ 8087,
+ 8089,
+ 8091,
+ 8090,
+ 8092,
+ 8093,
+ 8094,
+ 8095,
+ 8096,
+ 8097,
+ 8099,
+ 8098,
+ 8100,
+ 8101,
+ 8103,
+ 8102,
+ 8104,
+ 8105,
+ 8106,
+ 8107,
+ 8108,
+ 8109,
+ 8110,
+ 8111,
+ 8113,
+ 8112,
+ 8114,
+ 8115,
+ 8116,
+ 8119,
+ 8117,
+ 8118,
+ 8120,
+ 8121,
+ 8122,
+ 8123,
+ 8124,
+ 8125,
+ 8126,
+ 8127,
+ 8128
+ ],
+ "rightUpLeg": [
+ 6225,
+ 6226,
+ 6228,
+ 6229,
+ 6241,
+ 6238,
+ 6239,
+ 6240,
+ 6242,
+ 6243,
+ 6244,
+ 6245,
+ 6261,
+ 6262,
+ 6263,
+ 6264,
+ 6265,
+ 6266,
+ 6267,
+ 6268,
+ 6271,
+ 6272,
+ 6269,
+ 6270,
+ 6288,
+ 6289,
+ 6290,
+ 6291,
+ 6294,
+ 6292,
+ 6293,
+ 6295,
+ 6296,
+ 6297,
+ 6298,
+ 6299,
+ 6300,
+ 6301,
+ 6302,
+ 6303,
+ 6304,
+ 6305,
+ 6306,
+ 6324,
+ 6325,
+ 6326,
+ 6327,
+ 6335,
+ 6339,
+ 6336,
+ 6337,
+ 6338,
+ 6340,
+ 6341,
+ 6342,
+ 6343,
+ 6344,
+ 6345,
+ 6346,
+ 6347,
+ 6348,
+ 6349,
+ 6350,
+ 6351,
+ 6352,
+ 6353,
+ 6354,
+ 6355,
+ 6356,
+ 6357,
+ 6358,
+ 6359,
+ 6360,
+ 6361,
+ 6362,
+ 6363,
+ 6365,
+ 6364,
+ 6366,
+ 6367,
+ 6368,
+ 6369,
+ 6370,
+ 6371,
+ 6372,
+ 6373,
+ 6374,
+ 6375,
+ 6376,
+ 6377,
+ 6378,
+ 6379,
+ 6380,
+ 6381,
+ 6382,
+ 6383,
+ 6384,
+ 6385,
+ 6386,
+ 6387,
+ 6388,
+ 6389,
+ 6390,
+ 6391,
+ 6392,
+ 6393,
+ 6394,
+ 6395,
+ 6396,
+ 6397,
+ 6398,
+ 6399,
+ 6400,
+ 6401,
+ 6402,
+ 6403,
+ 6407,
+ 6404,
+ 6405,
+ 6406,
+ 6408,
+ 6409,
+ 6410,
+ 6411,
+ 6412,
+ 6413,
+ 6414,
+ 6415,
+ 6416,
+ 6417,
+ 6418,
+ 6419,
+ 6423,
+ 6420,
+ 6421,
+ 6422,
+ 6424,
+ 6425,
+ 6426,
+ 6427,
+ 6428,
+ 6429,
+ 6430,
+ 6431,
+ 6432,
+ 6433,
+ 6437,
+ 6434,
+ 6435,
+ 6436,
+ 6528,
+ 6529,
+ 6530,
+ 6531,
+ 6533,
+ 6532,
+ 6534,
+ 6535,
+ 6536,
+ 6537,
+ 6538,
+ 6539,
+ 6550,
+ 6551,
+ 6552,
+ 6553,
+ 6556,
+ 6557,
+ 6554,
+ 6555,
+ 6558,
+ 6559,
+ 6560,
+ 6561,
+ 6565,
+ 6562,
+ 6563,
+ 6564,
+ 6575,
+ 6576,
+ 6577,
+ 6578,
+ 6611,
+ 6609,
+ 6610,
+ 6612,
+ 6613,
+ 6614,
+ 6615,
+ 6616,
+ 6617,
+ 6618,
+ 6650,
+ 6651,
+ 6662,
+ 6663,
+ 6664,
+ 6665,
+ 6706,
+ 6707,
+ 6734,
+ 6739,
+ 6740,
+ 6741,
+ 6742,
+ 6743,
+ 6744,
+ 6745,
+ 6746,
+ 6829,
+ 6830,
+ 6831,
+ 6833,
+ 6834,
+ 6835,
+ 6836,
+ 6837,
+ 6838,
+ 6839,
+ 6840,
+ 6841,
+ 6853,
+ 6854,
+ 6855,
+ 6856,
+ 6857,
+ 6875,
+ 6876,
+ 6877,
+ 6878,
+ 6888,
+ 6889,
+ 6890,
+ 6891,
+ 6892,
+ 6893,
+ 6894,
+ 6895,
+ 6896,
+ 6897,
+ 6898,
+ 6909,
+ 6910,
+ 8394,
+ 8395,
+ 8396,
+ 8397,
+ 8400,
+ 8401,
+ 8402,
+ 8403,
+ 8404,
+ 8721,
+ 8725
+ ],
+ "leftArm": [
+ 3256,
+ 3259,
+ 3258,
+ 3257,
+ 3267,
+ 3266,
+ 3312,
+ 3311,
+ 3347,
+ 3346,
+ 3349,
+ 3348,
+ 3401,
+ 3404,
+ 3403,
+ 3402,
+ 3407,
+ 3406,
+ 3405,
+ 3408,
+ 3409,
+ 3412,
+ 3411,
+ 3410,
+ 3419,
+ 3418,
+ 3417,
+ 3416,
+ 3421,
+ 3420,
+ 3422,
+ 3425,
+ 3424,
+ 3423,
+ 3868,
+ 3871,
+ 3870,
+ 3869,
+ 3898,
+ 3901,
+ 3900,
+ 3899,
+ 3912,
+ 3921,
+ 3920,
+ 3948,
+ 3947,
+ 3952,
+ 3951,
+ 3976,
+ 3975,
+ 3974,
+ 3973,
+ 3989,
+ 3988,
+ 3987,
+ 3990,
+ 4007,
+ 4010,
+ 4009,
+ 4008,
+ 4011,
+ 4014,
+ 4013,
+ 4012,
+ 4015,
+ 4017,
+ 4016,
+ 4018,
+ 4021,
+ 4020,
+ 4019,
+ 4022,
+ 4025,
+ 4024,
+ 4023,
+ 4026,
+ 4029,
+ 4028,
+ 4027,
+ 4031,
+ 4030,
+ 4035,
+ 4034,
+ 4036,
+ 4039,
+ 4038,
+ 4037,
+ 4040,
+ 4044,
+ 4043,
+ 4042,
+ 4046,
+ 4045,
+ 4047,
+ 4048,
+ 4061,
+ 4060,
+ 4067,
+ 4064,
+ 4063,
+ 4062,
+ 4072,
+ 4075,
+ 4074,
+ 4073,
+ 4079,
+ 4078,
+ 4077,
+ 4076,
+ 4135,
+ 4139,
+ 4138,
+ 4140,
+ 4141,
+ 4143,
+ 4142,
+ 4170,
+ 4171,
+ 4172,
+ 4173,
+ 4174,
+ 4249,
+ 4252,
+ 4251,
+ 4250,
+ 4261,
+ 4264,
+ 4263,
+ 4262,
+ 4268,
+ 4267,
+ 4266,
+ 4265,
+ 4269,
+ 4272,
+ 4271,
+ 4270,
+ 4275,
+ 4278,
+ 4277,
+ 4276,
+ 4281,
+ 4284,
+ 4283,
+ 4282,
+ 4285,
+ 4288,
+ 4287,
+ 4286,
+ 4290,
+ 4289,
+ 4296,
+ 4295,
+ 4301,
+ 4302,
+ 4303,
+ 4306,
+ 4305,
+ 4304,
+ 4307,
+ 4308,
+ 4310,
+ 4309,
+ 4311,
+ 4314,
+ 4313,
+ 4312,
+ 4316,
+ 4315,
+ 4318,
+ 4317,
+ 4322,
+ 4319,
+ 4334,
+ 4336,
+ 4335,
+ 4341,
+ 4344,
+ 4343,
+ 4342,
+ 4346,
+ 4345,
+ 4350,
+ 4349,
+ 4348,
+ 4347,
+ 4351,
+ 4353,
+ 4352,
+ 4354,
+ 4355,
+ 4358,
+ 4357,
+ 4356,
+ 4363,
+ 4369,
+ 4371,
+ 4370,
+ 4372,
+ 4373,
+ 4375,
+ 4378,
+ 4377,
+ 4385,
+ 4384,
+ 4383,
+ 4387,
+ 4386,
+ 4389,
+ 4398,
+ 4450,
+ 4449,
+ 4460,
+ 4465,
+ 4464,
+ 4471,
+ 4470,
+ 4475,
+ 4474,
+ 4476,
+ 4478,
+ 4484,
+ 4483,
+ 4485,
+ 4487,
+ 4488,
+ 4489,
+ 4492,
+ 4493,
+ 4495,
+ 4494,
+ 4496,
+ 4501,
+ 4500,
+ 4507,
+ 4506,
+ 4510,
+ 4518,
+ 4520,
+ 4519,
+ 4521,
+ 4522,
+ 4523,
+ 5398,
+ 5397,
+ 5399,
+ 5400,
+ 5471,
+ 5473,
+ 5472,
+ 5474,
+ 5475,
+ 5476,
+ 5477,
+ 5478,
+ 5479,
+ 5542,
+ 5543,
+ 5576,
+ 5573,
+ 5572,
+ 5577,
+ 5578,
+ 5580,
+ 5579,
+ 5581,
+ 5582,
+ 5583,
+ 5584,
+ 5587,
+ 5586,
+ 5585,
+ 5588,
+ 5589,
+ 5590,
+ 5591,
+ 5592,
+ 5593,
+ 5594,
+ 5595,
+ 5597,
+ 5607,
+ 5628
+ ],
+ "head": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32,
+ 33,
+ 34,
+ 35,
+ 36,
+ 37,
+ 38,
+ 39,
+ 40,
+ 41,
+ 42,
+ 43,
+ 44,
+ 45,
+ 46,
+ 47,
+ 48,
+ 49,
+ 50,
+ 51,
+ 52,
+ 53,
+ 54,
+ 55,
+ 56,
+ 57,
+ 58,
+ 59,
+ 60,
+ 61,
+ 62,
+ 63,
+ 64,
+ 65,
+ 66,
+ 67,
+ 68,
+ 69,
+ 70,
+ 71,
+ 72,
+ 73,
+ 74,
+ 75,
+ 76,
+ 77,
+ 78,
+ 79,
+ 80,
+ 81,
+ 82,
+ 83,
+ 84,
+ 85,
+ 86,
+ 87,
+ 88,
+ 89,
+ 90,
+ 91,
+ 92,
+ 93,
+ 94,
+ 95,
+ 96,
+ 97,
+ 98,
+ 99,
+ 100,
+ 101,
+ 102,
+ 103,
+ 104,
+ 105,
+ 106,
+ 107,
+ 108,
+ 109,
+ 110,
+ 111,
+ 112,
+ 113,
+ 114,
+ 115,
+ 116,
+ 117,
+ 118,
+ 119,
+ 120,
+ 121,
+ 122,
+ 123,
+ 124,
+ 125,
+ 126,
+ 127,
+ 128,
+ 129,
+ 130,
+ 131,
+ 132,
+ 133,
+ 134,
+ 135,
+ 136,
+ 137,
+ 138,
+ 139,
+ 140,
+ 141,
+ 142,
+ 143,
+ 144,
+ 145,
+ 146,
+ 147,
+ 148,
+ 149,
+ 150,
+ 151,
+ 152,
+ 153,
+ 154,
+ 155,
+ 156,
+ 157,
+ 158,
+ 159,
+ 160,
+ 161,
+ 162,
+ 163,
+ 164,
+ 165,
+ 166,
+ 167,
+ 168,
+ 169,
+ 170,
+ 171,
+ 172,
+ 173,
+ 174,
+ 175,
+ 176,
+ 177,
+ 178,
+ 179,
+ 180,
+ 181,
+ 182,
+ 183,
+ 184,
+ 185,
+ 186,
+ 187,
+ 188,
+ 189,
+ 190,
+ 191,
+ 192,
+ 193,
+ 194,
+ 195,
+ 196,
+ 197,
+ 198,
+ 199,
+ 200,
+ 201,
+ 202,
+ 203,
+ 204,
+ 205,
+ 206,
+ 207,
+ 208,
+ 209,
+ 210,
+ 211,
+ 212,
+ 213,
+ 214,
+ 215,
+ 216,
+ 217,
+ 218,
+ 223,
+ 224,
+ 225,
+ 226,
+ 227,
+ 228,
+ 229,
+ 230,
+ 231,
+ 232,
+ 233,
+ 234,
+ 235,
+ 236,
+ 237,
+ 238,
+ 239,
+ 240,
+ 241,
+ 242,
+ 243,
+ 244,
+ 245,
+ 246,
+ 247,
+ 248,
+ 249,
+ 250,
+ 251,
+ 252,
+ 253,
+ 254,
+ 255,
+ 256,
+ 257,
+ 258,
+ 259,
+ 260,
+ 261,
+ 262,
+ 263,
+ 264,
+ 265,
+ 266,
+ 267,
+ 268,
+ 269,
+ 270,
+ 271,
+ 272,
+ 273,
+ 274,
+ 275,
+ 276,
+ 277,
+ 278,
+ 279,
+ 280,
+ 281,
+ 282,
+ 283,
+ 284,
+ 285,
+ 286,
+ 287,
+ 288,
+ 289,
+ 290,
+ 291,
+ 292,
+ 293,
+ 294,
+ 295,
+ 296,
+ 297,
+ 298,
+ 299,
+ 300,
+ 301,
+ 302,
+ 303,
+ 304,
+ 305,
+ 306,
+ 307,
+ 308,
+ 309,
+ 310,
+ 311,
+ 312,
+ 313,
+ 314,
+ 315,
+ 316,
+ 317,
+ 318,
+ 319,
+ 320,
+ 321,
+ 322,
+ 323,
+ 324,
+ 325,
+ 326,
+ 327,
+ 328,
+ 329,
+ 330,
+ 331,
+ 332,
+ 333,
+ 334,
+ 335,
+ 336,
+ 337,
+ 338,
+ 339,
+ 340,
+ 341,
+ 342,
+ 343,
+ 344,
+ 345,
+ 346,
+ 347,
+ 348,
+ 349,
+ 350,
+ 351,
+ 352,
+ 353,
+ 354,
+ 355,
+ 356,
+ 357,
+ 358,
+ 359,
+ 360,
+ 361,
+ 362,
+ 363,
+ 364,
+ 365,
+ 366,
+ 367,
+ 368,
+ 369,
+ 370,
+ 371,
+ 376,
+ 377,
+ 378,
+ 379,
+ 380,
+ 381,
+ 382,
+ 383,
+ 384,
+ 385,
+ 386,
+ 387,
+ 388,
+ 389,
+ 390,
+ 391,
+ 392,
+ 393,
+ 394,
+ 395,
+ 396,
+ 397,
+ 398,
+ 399,
+ 400,
+ 401,
+ 402,
+ 403,
+ 404,
+ 405,
+ 406,
+ 407,
+ 408,
+ 409,
+ 410,
+ 411,
+ 412,
+ 413,
+ 414,
+ 415,
+ 416,
+ 417,
+ 418,
+ 419,
+ 420,
+ 421,
+ 422,
+ 423,
+ 424,
+ 425,
+ 426,
+ 427,
+ 428,
+ 429,
+ 430,
+ 431,
+ 432,
+ 433,
+ 434,
+ 435,
+ 436,
+ 437,
+ 438,
+ 439,
+ 440,
+ 441,
+ 442,
+ 443,
+ 444,
+ 445,
+ 446,
+ 447,
+ 448,
+ 449,
+ 450,
+ 451,
+ 452,
+ 453,
+ 454,
+ 455,
+ 456,
+ 457,
+ 458,
+ 459,
+ 460,
+ 461,
+ 464,
+ 465,
+ 466,
+ 467,
+ 468,
+ 469,
+ 470,
+ 471,
+ 472,
+ 473,
+ 474,
+ 475,
+ 476,
+ 477,
+ 478,
+ 479,
+ 480,
+ 481,
+ 482,
+ 483,
+ 484,
+ 485,
+ 486,
+ 487,
+ 488,
+ 489,
+ 490,
+ 491,
+ 492,
+ 493,
+ 494,
+ 495,
+ 498,
+ 499,
+ 500,
+ 501,
+ 502,
+ 503,
+ 504,
+ 505,
+ 506,
+ 507,
+ 508,
+ 509,
+ 510,
+ 511,
+ 512,
+ 513,
+ 514,
+ 515,
+ 516,
+ 517,
+ 518,
+ 519,
+ 520,
+ 521,
+ 522,
+ 523,
+ 524,
+ 525,
+ 526,
+ 527,
+ 528,
+ 529,
+ 530,
+ 531,
+ 532,
+ 533,
+ 534,
+ 535,
+ 536,
+ 537,
+ 538,
+ 539,
+ 540,
+ 541,
+ 542,
+ 543,
+ 544,
+ 545,
+ 546,
+ 547,
+ 548,
+ 549,
+ 550,
+ 551,
+ 554,
+ 555,
+ 556,
+ 557,
+ 560,
+ 561,
+ 562,
+ 565,
+ 566,
+ 567,
+ 568,
+ 569,
+ 570,
+ 571,
+ 572,
+ 573,
+ 574,
+ 575,
+ 576,
+ 577,
+ 578,
+ 579,
+ 580,
+ 581,
+ 582,
+ 583,
+ 584,
+ 585,
+ 586,
+ 587,
+ 588,
+ 589,
+ 590,
+ 591,
+ 592,
+ 593,
+ 594,
+ 595,
+ 596,
+ 597,
+ 598,
+ 599,
+ 600,
+ 601,
+ 602,
+ 603,
+ 604,
+ 605,
+ 606,
+ 607,
+ 608,
+ 609,
+ 610,
+ 611,
+ 612,
+ 613,
+ 614,
+ 615,
+ 616,
+ 617,
+ 618,
+ 619,
+ 620,
+ 621,
+ 622,
+ 623,
+ 624,
+ 625,
+ 626,
+ 627,
+ 628,
+ 629,
+ 630,
+ 631,
+ 632,
+ 633,
+ 634,
+ 635,
+ 636,
+ 637,
+ 638,
+ 639,
+ 640,
+ 641,
+ 642,
+ 643,
+ 644,
+ 645,
+ 646,
+ 647,
+ 648,
+ 651,
+ 652,
+ 653,
+ 654,
+ 655,
+ 656,
+ 657,
+ 658,
+ 659,
+ 660,
+ 661,
+ 662,
+ 663,
+ 664,
+ 665,
+ 666,
+ 667,
+ 668,
+ 669,
+ 670,
+ 671,
+ 672,
+ 673,
+ 674,
+ 675,
+ 676,
+ 677,
+ 678,
+ 679,
+ 680,
+ 681,
+ 682,
+ 683,
+ 684,
+ 685,
+ 686,
+ 687,
+ 688,
+ 689,
+ 690,
+ 691,
+ 692,
+ 693,
+ 694,
+ 695,
+ 696,
+ 697,
+ 698,
+ 699,
+ 700,
+ 701,
+ 702,
+ 703,
+ 704,
+ 705,
+ 706,
+ 707,
+ 708,
+ 709,
+ 710,
+ 711,
+ 712,
+ 713,
+ 714,
+ 715,
+ 716,
+ 717,
+ 718,
+ 719,
+ 720,
+ 721,
+ 722,
+ 723,
+ 724,
+ 725,
+ 726,
+ 727,
+ 728,
+ 729,
+ 730,
+ 731,
+ 732,
+ 733,
+ 734,
+ 735,
+ 738,
+ 739,
+ 740,
+ 741,
+ 742,
+ 743,
+ 744,
+ 745,
+ 746,
+ 747,
+ 748,
+ 749,
+ 750,
+ 751,
+ 752,
+ 753,
+ 754,
+ 755,
+ 756,
+ 757,
+ 758,
+ 759,
+ 760,
+ 761,
+ 762,
+ 763,
+ 764,
+ 765,
+ 766,
+ 767,
+ 768,
+ 769,
+ 770,
+ 771,
+ 772,
+ 773,
+ 774,
+ 775,
+ 776,
+ 777,
+ 778,
+ 779,
+ 780,
+ 781,
+ 782,
+ 783,
+ 784,
+ 785,
+ 786,
+ 787,
+ 788,
+ 789,
+ 790,
+ 791,
+ 792,
+ 793,
+ 794,
+ 795,
+ 796,
+ 797,
+ 798,
+ 799,
+ 800,
+ 801,
+ 802,
+ 803,
+ 804,
+ 805,
+ 806,
+ 807,
+ 808,
+ 809,
+ 810,
+ 811,
+ 812,
+ 813,
+ 814,
+ 815,
+ 816,
+ 817,
+ 818,
+ 819,
+ 820,
+ 821,
+ 822,
+ 823,
+ 824,
+ 825,
+ 826,
+ 827,
+ 828,
+ 829,
+ 830,
+ 831,
+ 832,
+ 833,
+ 834,
+ 835,
+ 836,
+ 837,
+ 838,
+ 839,
+ 840,
+ 841,
+ 842,
+ 843,
+ 844,
+ 845,
+ 846,
+ 847,
+ 848,
+ 849,
+ 850,
+ 851,
+ 852,
+ 853,
+ 854,
+ 855,
+ 856,
+ 857,
+ 858,
+ 859,
+ 860,
+ 861,
+ 862,
+ 863,
+ 864,
+ 865,
+ 866,
+ 867,
+ 868,
+ 869,
+ 870,
+ 871,
+ 872,
+ 873,
+ 874,
+ 875,
+ 876,
+ 877,
+ 878,
+ 879,
+ 880,
+ 881,
+ 882,
+ 883,
+ 884,
+ 885,
+ 886,
+ 887,
+ 888,
+ 889,
+ 890,
+ 891,
+ 892,
+ 893,
+ 894,
+ 895,
+ 896,
+ 897,
+ 898,
+ 899,
+ 900,
+ 901,
+ 902,
+ 903,
+ 904,
+ 905,
+ 906,
+ 907,
+ 908,
+ 909,
+ 910,
+ 911,
+ 912,
+ 913,
+ 914,
+ 915,
+ 916,
+ 917,
+ 918,
+ 919,
+ 920,
+ 921,
+ 922,
+ 923,
+ 924,
+ 925,
+ 926,
+ 927,
+ 928,
+ 929,
+ 930,
+ 931,
+ 932,
+ 933,
+ 934,
+ 935,
+ 936,
+ 937,
+ 938,
+ 939,
+ 940,
+ 941,
+ 942,
+ 943,
+ 944,
+ 945,
+ 946,
+ 947,
+ 948,
+ 949,
+ 950,
+ 951,
+ 952,
+ 953,
+ 954,
+ 955,
+ 956,
+ 957,
+ 958,
+ 959,
+ 960,
+ 961,
+ 962,
+ 963,
+ 964,
+ 965,
+ 966,
+ 967,
+ 968,
+ 969,
+ 970,
+ 971,
+ 972,
+ 973,
+ 974,
+ 975,
+ 976,
+ 977,
+ 978,
+ 979,
+ 980,
+ 981,
+ 982,
+ 983,
+ 984,
+ 985,
+ 986,
+ 987,
+ 988,
+ 989,
+ 990,
+ 991,
+ 992,
+ 993,
+ 994,
+ 995,
+ 996,
+ 997,
+ 998,
+ 999,
+ 1000,
+ 1001,
+ 1002,
+ 1003,
+ 1004,
+ 1005,
+ 1006,
+ 1007,
+ 1008,
+ 1009,
+ 1010,
+ 1011,
+ 1012,
+ 1013,
+ 1014,
+ 1015,
+ 1016,
+ 1017,
+ 1018,
+ 1019,
+ 1020,
+ 1021,
+ 1022,
+ 1023,
+ 1024,
+ 1025,
+ 1026,
+ 1027,
+ 1028,
+ 1029,
+ 1030,
+ 1031,
+ 1032,
+ 1033,
+ 1034,
+ 1035,
+ 1036,
+ 1037,
+ 1038,
+ 1039,
+ 1040,
+ 1041,
+ 1042,
+ 1043,
+ 1044,
+ 1045,
+ 1046,
+ 1047,
+ 1048,
+ 1049,
+ 1050,
+ 1051,
+ 1052,
+ 1053,
+ 1054,
+ 1055,
+ 1056,
+ 1057,
+ 1058,
+ 1059,
+ 1060,
+ 1061,
+ 1062,
+ 1063,
+ 1064,
+ 1065,
+ 1066,
+ 1067,
+ 1068,
+ 1069,
+ 1070,
+ 1071,
+ 1072,
+ 1073,
+ 1074,
+ 1075,
+ 1076,
+ 1077,
+ 1078,
+ 1079,
+ 1080,
+ 1081,
+ 1082,
+ 1083,
+ 1084,
+ 1085,
+ 1086,
+ 1087,
+ 1088,
+ 1089,
+ 1090,
+ 1091,
+ 1092,
+ 1093,
+ 1094,
+ 1095,
+ 1096,
+ 1097,
+ 1098,
+ 1099,
+ 1100,
+ 1101,
+ 1102,
+ 1103,
+ 1104,
+ 1105,
+ 1106,
+ 1107,
+ 1108,
+ 1109,
+ 1110,
+ 1111,
+ 1112,
+ 1113,
+ 1114,
+ 1115,
+ 1116,
+ 1117,
+ 1118,
+ 1119,
+ 1120,
+ 1121,
+ 1122,
+ 1123,
+ 1124,
+ 1125,
+ 1126,
+ 1127,
+ 1128,
+ 1129,
+ 1130,
+ 1131,
+ 1132,
+ 1133,
+ 1134,
+ 1135,
+ 1136,
+ 1137,
+ 1138,
+ 1139,
+ 1140,
+ 1141,
+ 1142,
+ 1143,
+ 1144,
+ 1145,
+ 1146,
+ 1147,
+ 1148,
+ 1149,
+ 1150,
+ 1151,
+ 1152,
+ 1153,
+ 1154,
+ 1155,
+ 1156,
+ 1157,
+ 1158,
+ 1159,
+ 1160,
+ 1161,
+ 1162,
+ 1163,
+ 1164,
+ 1165,
+ 1166,
+ 1167,
+ 1168,
+ 1169,
+ 1170,
+ 1171,
+ 1172,
+ 1173,
+ 1174,
+ 1175,
+ 1176,
+ 1177,
+ 1178,
+ 1179,
+ 1180,
+ 1181,
+ 1182,
+ 1183,
+ 1184,
+ 1185,
+ 1186,
+ 1187,
+ 1188,
+ 1189,
+ 1190,
+ 1191,
+ 1192,
+ 1193,
+ 1194,
+ 1195,
+ 1196,
+ 1197,
+ 1198,
+ 1199,
+ 1200,
+ 1201,
+ 1202,
+ 1203,
+ 1204,
+ 1205,
+ 1206,
+ 1207,
+ 1208,
+ 1209,
+ 1214,
+ 1215,
+ 1216,
+ 1217,
+ 1218,
+ 1219,
+ 1220,
+ 1221,
+ 1222,
+ 1223,
+ 1224,
+ 1225,
+ 1226,
+ 1227,
+ 1228,
+ 1229,
+ 1230,
+ 1231,
+ 1232,
+ 1233,
+ 1234,
+ 1235,
+ 1236,
+ 1237,
+ 1238,
+ 1239,
+ 1240,
+ 1241,
+ 1242,
+ 1243,
+ 1244,
+ 1245,
+ 1246,
+ 1247,
+ 1248,
+ 1249,
+ 1250,
+ 1251,
+ 1252,
+ 1253,
+ 1254,
+ 1255,
+ 1256,
+ 1257,
+ 1258,
+ 1259,
+ 1260,
+ 1261,
+ 1262,
+ 1263,
+ 1264,
+ 1265,
+ 1266,
+ 1267,
+ 1268,
+ 1269,
+ 1270,
+ 1271,
+ 1272,
+ 1273,
+ 1274,
+ 1275,
+ 1276,
+ 1277,
+ 1278,
+ 1279,
+ 1280,
+ 1281,
+ 1282,
+ 1283,
+ 1284,
+ 1285,
+ 1286,
+ 1287,
+ 1288,
+ 1289,
+ 1290,
+ 1291,
+ 1292,
+ 1293,
+ 1294,
+ 1295,
+ 1296,
+ 1297,
+ 1298,
+ 1299,
+ 1300,
+ 1301,
+ 1302,
+ 1303,
+ 1304,
+ 1305,
+ 1306,
+ 1307,
+ 1308,
+ 1309,
+ 1310,
+ 1311,
+ 1312,
+ 1313,
+ 1314,
+ 1315,
+ 1316,
+ 1317,
+ 1318,
+ 1319,
+ 1320,
+ 1321,
+ 1322,
+ 1323,
+ 1324,
+ 1325,
+ 1327,
+ 1328,
+ 1329,
+ 1330,
+ 1331,
+ 1332,
+ 1333,
+ 1334,
+ 1335,
+ 1336,
+ 1337,
+ 1338,
+ 1339,
+ 1340,
+ 1341,
+ 1342,
+ 1343,
+ 1344,
+ 1345,
+ 1346,
+ 1347,
+ 1348,
+ 1349,
+ 1350,
+ 1351,
+ 1352,
+ 1353,
+ 1354,
+ 1355,
+ 1356,
+ 1357,
+ 1358,
+ 1361,
+ 1362,
+ 1363,
+ 1364,
+ 1365,
+ 1366,
+ 1367,
+ 1368,
+ 1369,
+ 1370,
+ 1371,
+ 1372,
+ 1373,
+ 1374,
+ 1375,
+ 1376,
+ 1377,
+ 1378,
+ 1379,
+ 1380,
+ 1381,
+ 1382,
+ 1383,
+ 1384,
+ 1385,
+ 1387,
+ 1388,
+ 1389,
+ 1390,
+ 1391,
+ 1392,
+ 1393,
+ 1394,
+ 1395,
+ 1396,
+ 1397,
+ 1398,
+ 1399,
+ 1400,
+ 1401,
+ 1402,
+ 1403,
+ 1404,
+ 1405,
+ 1406,
+ 1407,
+ 1408,
+ 1409,
+ 1410,
+ 1411,
+ 1412,
+ 1413,
+ 1414,
+ 1415,
+ 1416,
+ 1417,
+ 1418,
+ 1419,
+ 1420,
+ 1421,
+ 1422,
+ 1423,
+ 1424,
+ 1425,
+ 1426,
+ 1427,
+ 1428,
+ 1429,
+ 1430,
+ 1431,
+ 1432,
+ 1433,
+ 1434,
+ 1435,
+ 1436,
+ 1437,
+ 1438,
+ 1439,
+ 1440,
+ 1441,
+ 1442,
+ 1443,
+ 1444,
+ 1445,
+ 1446,
+ 1447,
+ 1448,
+ 1449,
+ 1450,
+ 1451,
+ 1452,
+ 1453,
+ 1454,
+ 1455,
+ 1456,
+ 1457,
+ 1458,
+ 1459,
+ 1460,
+ 1461,
+ 1462,
+ 1463,
+ 1464,
+ 1465,
+ 1466,
+ 1467,
+ 1468,
+ 1469,
+ 1470,
+ 1471,
+ 1472,
+ 1473,
+ 1474,
+ 1475,
+ 1476,
+ 1477,
+ 1478,
+ 1479,
+ 1480,
+ 1481,
+ 1482,
+ 1483,
+ 1484,
+ 1485,
+ 1486,
+ 1487,
+ 1488,
+ 1489,
+ 1490,
+ 1491,
+ 1492,
+ 1493,
+ 1494,
+ 1495,
+ 1496,
+ 1497,
+ 1498,
+ 1499,
+ 1500,
+ 1501,
+ 1502,
+ 1503,
+ 1504,
+ 1505,
+ 1506,
+ 1507,
+ 1508,
+ 1509,
+ 1510,
+ 1511,
+ 1512,
+ 1513,
+ 1514,
+ 1515,
+ 1516,
+ 1517,
+ 1518,
+ 1519,
+ 1520,
+ 1521,
+ 1522,
+ 1523,
+ 1524,
+ 1525,
+ 1526,
+ 1527,
+ 1528,
+ 1529,
+ 1530,
+ 1531,
+ 1532,
+ 1533,
+ 1534,
+ 1535,
+ 1536,
+ 1537,
+ 1538,
+ 1539,
+ 1540,
+ 1541,
+ 1542,
+ 1543,
+ 1544,
+ 1545,
+ 1546,
+ 1547,
+ 1548,
+ 1549,
+ 1550,
+ 1551,
+ 1552,
+ 1553,
+ 1554,
+ 1555,
+ 1556,
+ 1557,
+ 1558,
+ 1559,
+ 1560,
+ 1561,
+ 1562,
+ 1563,
+ 1564,
+ 1565,
+ 1566,
+ 1567,
+ 1568,
+ 1569,
+ 1570,
+ 1571,
+ 1572,
+ 1573,
+ 1574,
+ 1575,
+ 1576,
+ 1577,
+ 1578,
+ 1579,
+ 1580,
+ 1581,
+ 1582,
+ 1583,
+ 1584,
+ 1585,
+ 1586,
+ 1587,
+ 1588,
+ 1589,
+ 1590,
+ 1591,
+ 1592,
+ 1593,
+ 1594,
+ 1595,
+ 1596,
+ 1597,
+ 1598,
+ 1599,
+ 1600,
+ 1601,
+ 1602,
+ 1603,
+ 1604,
+ 1605,
+ 1606,
+ 1607,
+ 1608,
+ 1609,
+ 1610,
+ 1611,
+ 1612,
+ 1613,
+ 1614,
+ 1615,
+ 1616,
+ 1617,
+ 1618,
+ 1619,
+ 1620,
+ 1621,
+ 1622,
+ 1623,
+ 1624,
+ 1625,
+ 1626,
+ 1627,
+ 1628,
+ 1629,
+ 1630,
+ 1631,
+ 1632,
+ 1633,
+ 1634,
+ 1635,
+ 1636,
+ 1637,
+ 1638,
+ 1639,
+ 1640,
+ 1641,
+ 1642,
+ 1643,
+ 1644,
+ 1645,
+ 1646,
+ 1647,
+ 1648,
+ 1649,
+ 1650,
+ 1651,
+ 1652,
+ 1653,
+ 1654,
+ 1655,
+ 1656,
+ 1657,
+ 1658,
+ 1659,
+ 1660,
+ 1661,
+ 1662,
+ 1663,
+ 1664,
+ 1665,
+ 1666,
+ 1667,
+ 1668,
+ 1669,
+ 1670,
+ 1671,
+ 1672,
+ 1673,
+ 1674,
+ 1675,
+ 1676,
+ 1677,
+ 1678,
+ 1679,
+ 1680,
+ 1681,
+ 1682,
+ 1683,
+ 1684,
+ 1685,
+ 1686,
+ 1687,
+ 1688,
+ 1689,
+ 1690,
+ 1691,
+ 1692,
+ 1693,
+ 1694,
+ 1695,
+ 1696,
+ 1697,
+ 1698,
+ 1699,
+ 1700,
+ 1701,
+ 1702,
+ 1703,
+ 1704,
+ 1705,
+ 1706,
+ 1707,
+ 1708,
+ 1709,
+ 1710,
+ 1711,
+ 1712,
+ 1713,
+ 1714,
+ 1715,
+ 1716,
+ 1717,
+ 1718,
+ 1719,
+ 1720,
+ 1721,
+ 1722,
+ 1723,
+ 1724,
+ 1725,
+ 1728,
+ 1729,
+ 1730,
+ 1731,
+ 1732,
+ 1733,
+ 1734,
+ 1735,
+ 1736,
+ 1737,
+ 1738,
+ 1739,
+ 1740,
+ 1741,
+ 1742,
+ 1743,
+ 1744,
+ 1745,
+ 1746,
+ 1747,
+ 1748,
+ 1749,
+ 1750,
+ 1751,
+ 1752,
+ 1753,
+ 1754,
+ 1755,
+ 1756,
+ 1757,
+ 1758,
+ 1760,
+ 1761,
+ 1762,
+ 1763,
+ 1764,
+ 1765,
+ 1766,
+ 1767,
+ 1768,
+ 1769,
+ 1770,
+ 1771,
+ 1772,
+ 1773,
+ 1774,
+ 1775,
+ 1776,
+ 1777,
+ 1778,
+ 1779,
+ 1780,
+ 1781,
+ 1782,
+ 1783,
+ 1784,
+ 1785,
+ 1786,
+ 1787,
+ 1788,
+ 1789,
+ 1791,
+ 1792,
+ 1793,
+ 1794,
+ 1795,
+ 1796,
+ 1797,
+ 1798,
+ 1799,
+ 1800,
+ 1801,
+ 1802,
+ 1803,
+ 1804,
+ 1805,
+ 1806,
+ 1807,
+ 1808,
+ 1809,
+ 1810,
+ 1811,
+ 1812,
+ 1813,
+ 1814,
+ 1815,
+ 1816,
+ 1817,
+ 1818,
+ 1819,
+ 1820,
+ 1821,
+ 1822,
+ 1823,
+ 1824,
+ 1825,
+ 1826,
+ 1827,
+ 1828,
+ 1829,
+ 1830,
+ 1831,
+ 1832,
+ 1833,
+ 1834,
+ 1835,
+ 1836,
+ 1837,
+ 1838,
+ 1839,
+ 1840,
+ 1841,
+ 1842,
+ 1843,
+ 1844,
+ 1845,
+ 1846,
+ 1847,
+ 1848,
+ 1849,
+ 1850,
+ 1851,
+ 1852,
+ 1853,
+ 1854,
+ 1855,
+ 1856,
+ 1857,
+ 1858,
+ 1859,
+ 1860,
+ 1861,
+ 1862,
+ 1863,
+ 1864,
+ 1865,
+ 1866,
+ 1867,
+ 1868,
+ 1869,
+ 1870,
+ 1871,
+ 1872,
+ 1873,
+ 1874,
+ 1875,
+ 1876,
+ 1877,
+ 1878,
+ 1879,
+ 1880,
+ 1881,
+ 1882,
+ 1883,
+ 1884,
+ 1885,
+ 1887,
+ 1888,
+ 1889,
+ 1890,
+ 1891,
+ 1892,
+ 1893,
+ 1894,
+ 1895,
+ 1896,
+ 1897,
+ 1899,
+ 1900,
+ 1901,
+ 1902,
+ 1903,
+ 1904,
+ 1905,
+ 1906,
+ 1907,
+ 1908,
+ 1909,
+ 1910,
+ 1911,
+ 1912,
+ 1913,
+ 1914,
+ 1915,
+ 1916,
+ 1917,
+ 1918,
+ 1919,
+ 1920,
+ 1921,
+ 1922,
+ 1923,
+ 1924,
+ 1925,
+ 1926,
+ 1927,
+ 1928,
+ 1929,
+ 1930,
+ 1935,
+ 1936,
+ 1937,
+ 1938,
+ 1939,
+ 1942,
+ 1943,
+ 1944,
+ 1945,
+ 1946,
+ 1947,
+ 1950,
+ 1951,
+ 1952,
+ 1953,
+ 1954,
+ 1955,
+ 1956,
+ 1957,
+ 1958,
+ 1959,
+ 1960,
+ 1961,
+ 1962,
+ 1963,
+ 1964,
+ 1965,
+ 1966,
+ 1967,
+ 1968,
+ 1969,
+ 1970,
+ 1971,
+ 1972,
+ 1973,
+ 1974,
+ 1975,
+ 1976,
+ 1977,
+ 1978,
+ 1979,
+ 1980,
+ 1981,
+ 1982,
+ 1983,
+ 1984,
+ 1985,
+ 1986,
+ 1987,
+ 1988,
+ 1989,
+ 1990,
+ 1991,
+ 1992,
+ 1993,
+ 1994,
+ 1995,
+ 1996,
+ 1997,
+ 1998,
+ 1999,
+ 2000,
+ 2001,
+ 2002,
+ 2003,
+ 2004,
+ 2005,
+ 2006,
+ 2007,
+ 2008,
+ 2009,
+ 2010,
+ 2011,
+ 2012,
+ 2013,
+ 2014,
+ 2015,
+ 2016,
+ 2017,
+ 2018,
+ 2019,
+ 2020,
+ 2021,
+ 2022,
+ 2023,
+ 2024,
+ 2025,
+ 2026,
+ 2027,
+ 2028,
+ 2029,
+ 2030,
+ 2031,
+ 2032,
+ 2033,
+ 2034,
+ 2035,
+ 2037,
+ 2038,
+ 2039,
+ 2040,
+ 2041,
+ 2042,
+ 2043,
+ 2044,
+ 2045,
+ 2046,
+ 2047,
+ 2048,
+ 2049,
+ 2050,
+ 2051,
+ 2052,
+ 2053,
+ 2054,
+ 2055,
+ 2056,
+ 2057,
+ 2058,
+ 2059,
+ 2060,
+ 2061,
+ 2062,
+ 2063,
+ 2064,
+ 2065,
+ 2066,
+ 2067,
+ 2068,
+ 2069,
+ 2070,
+ 2071,
+ 2072,
+ 2073,
+ 2074,
+ 2075,
+ 2076,
+ 2077,
+ 2078,
+ 2079,
+ 2080,
+ 2081,
+ 2082,
+ 2083,
+ 2084,
+ 2085,
+ 2086,
+ 2087,
+ 2088,
+ 2089,
+ 2090,
+ 2091,
+ 2092,
+ 2093,
+ 2094,
+ 2095,
+ 2096,
+ 2097,
+ 2098,
+ 2099,
+ 2100,
+ 2101,
+ 2102,
+ 2103,
+ 2104,
+ 2105,
+ 2106,
+ 2107,
+ 2108,
+ 2109,
+ 2110,
+ 2111,
+ 2112,
+ 2113,
+ 2114,
+ 2115,
+ 2116,
+ 2117,
+ 2118,
+ 2119,
+ 2120,
+ 2121,
+ 2122,
+ 2123,
+ 2124,
+ 2125,
+ 2126,
+ 2127,
+ 2128,
+ 2129,
+ 2130,
+ 2131,
+ 2132,
+ 2133,
+ 2134,
+ 2135,
+ 2136,
+ 2137,
+ 2138,
+ 2139,
+ 2140,
+ 2141,
+ 2142,
+ 2143,
+ 2144,
+ 2145,
+ 2146,
+ 2147,
+ 2148,
+ 2152,
+ 2153,
+ 2154,
+ 2155,
+ 2156,
+ 2157,
+ 2158,
+ 2159,
+ 2160,
+ 2161,
+ 2162,
+ 2163,
+ 2164,
+ 2165,
+ 2166,
+ 2167,
+ 2168,
+ 2169,
+ 2170,
+ 2171,
+ 2172,
+ 2173,
+ 2174,
+ 2175,
+ 2176,
+ 2177,
+ 2178,
+ 2179,
+ 2180,
+ 2181,
+ 2182,
+ 2183,
+ 2184,
+ 2185,
+ 2186,
+ 2187,
+ 2188,
+ 2189,
+ 2190,
+ 2191,
+ 2192,
+ 2193,
+ 2194,
+ 2195,
+ 2196,
+ 2197,
+ 2198,
+ 2199,
+ 2200,
+ 2201,
+ 2202,
+ 2203,
+ 2204,
+ 2205,
+ 2206,
+ 2207,
+ 2208,
+ 2209,
+ 2210,
+ 2211,
+ 2212,
+ 2213,
+ 2214,
+ 2215,
+ 2216,
+ 2217,
+ 2220,
+ 2221,
+ 2222,
+ 2223,
+ 2224,
+ 2225,
+ 2226,
+ 2227,
+ 2228,
+ 2229,
+ 2230,
+ 2231,
+ 2232,
+ 2233,
+ 2234,
+ 2235,
+ 2236,
+ 2237,
+ 2238,
+ 2239,
+ 2240,
+ 2241,
+ 2242,
+ 2243,
+ 2244,
+ 2245,
+ 2246,
+ 2247,
+ 2248,
+ 2249,
+ 2250,
+ 2251,
+ 2252,
+ 2253,
+ 2254,
+ 2255,
+ 2256,
+ 2257,
+ 2258,
+ 2259,
+ 2260,
+ 2261,
+ 2262,
+ 2263,
+ 2264,
+ 2265,
+ 2266,
+ 2267,
+ 2268,
+ 2269,
+ 2270,
+ 2271,
+ 2272,
+ 2273,
+ 2274,
+ 2275,
+ 2276,
+ 2277,
+ 2278,
+ 2279,
+ 2280,
+ 2281,
+ 2282,
+ 2283,
+ 2284,
+ 2285,
+ 2286,
+ 2287,
+ 2288,
+ 2289,
+ 2290,
+ 2291,
+ 2292,
+ 2293,
+ 2294,
+ 2295,
+ 2296,
+ 2297,
+ 2298,
+ 2299,
+ 2300,
+ 2301,
+ 2302,
+ 2303,
+ 2304,
+ 2305,
+ 2306,
+ 2307,
+ 2308,
+ 2309,
+ 2310,
+ 2311,
+ 2312,
+ 2313,
+ 2314,
+ 2315,
+ 2316,
+ 2317,
+ 2318,
+ 2319,
+ 2320,
+ 2321,
+ 2322,
+ 2323,
+ 2324,
+ 2325,
+ 2326,
+ 2327,
+ 2328,
+ 2329,
+ 2330,
+ 2331,
+ 2332,
+ 2333,
+ 2334,
+ 2335,
+ 2336,
+ 2337,
+ 2338,
+ 2339,
+ 2340,
+ 2341,
+ 2342,
+ 2343,
+ 2344,
+ 2345,
+ 2346,
+ 2347,
+ 2348,
+ 2349,
+ 2350,
+ 2351,
+ 2352,
+ 2353,
+ 2354,
+ 2355,
+ 2356,
+ 2357,
+ 2358,
+ 2359,
+ 2360,
+ 2361,
+ 2362,
+ 2363,
+ 2364,
+ 2365,
+ 2366,
+ 2367,
+ 2368,
+ 2369,
+ 2370,
+ 2371,
+ 2372,
+ 2373,
+ 2374,
+ 2375,
+ 2376,
+ 2377,
+ 2378,
+ 2379,
+ 2380,
+ 2381,
+ 2382,
+ 2383,
+ 2384,
+ 2385,
+ 2386,
+ 2387,
+ 2388,
+ 2389,
+ 2390,
+ 2391,
+ 2392,
+ 2393,
+ 2394,
+ 2395,
+ 2396,
+ 2397,
+ 2398,
+ 2399,
+ 2400,
+ 2401,
+ 2402,
+ 2403,
+ 2404,
+ 2405,
+ 2406,
+ 2407,
+ 2408,
+ 2409,
+ 2410,
+ 2411,
+ 2412,
+ 2413,
+ 2414,
+ 2415,
+ 2416,
+ 2417,
+ 2418,
+ 2419,
+ 2420,
+ 2421,
+ 2422,
+ 2423,
+ 2424,
+ 2425,
+ 2426,
+ 2427,
+ 2428,
+ 2429,
+ 2430,
+ 2431,
+ 2432,
+ 2433,
+ 2434,
+ 2435,
+ 2436,
+ 2437,
+ 2438,
+ 2439,
+ 2440,
+ 2441,
+ 2442,
+ 2443,
+ 2444,
+ 2445,
+ 2446,
+ 2447,
+ 2448,
+ 2449,
+ 2450,
+ 2451,
+ 2452,
+ 2453,
+ 2454,
+ 2455,
+ 2456,
+ 2457,
+ 2458,
+ 2459,
+ 2460,
+ 2461,
+ 2462,
+ 2463,
+ 2464,
+ 2465,
+ 2466,
+ 2467,
+ 2468,
+ 2469,
+ 2470,
+ 2471,
+ 2472,
+ 2473,
+ 2474,
+ 2475,
+ 2476,
+ 2477,
+ 2478,
+ 2479,
+ 2480,
+ 2481,
+ 2482,
+ 2483,
+ 2485,
+ 2486,
+ 2487,
+ 2488,
+ 2489,
+ 2490,
+ 2491,
+ 2492,
+ 2493,
+ 2494,
+ 2495,
+ 2496,
+ 2497,
+ 2498,
+ 2499,
+ 2500,
+ 2501,
+ 2502,
+ 2503,
+ 2504,
+ 2505,
+ 2506,
+ 2507,
+ 2508,
+ 2509,
+ 2510,
+ 2511,
+ 2512,
+ 2513,
+ 2514,
+ 2515,
+ 2516,
+ 2517,
+ 2518,
+ 2519,
+ 2520,
+ 2521,
+ 2522,
+ 2523,
+ 2524,
+ 2525,
+ 2526,
+ 2527,
+ 2528,
+ 2529,
+ 2530,
+ 2532,
+ 2533,
+ 2534,
+ 2535,
+ 2536,
+ 2537,
+ 2538,
+ 2539,
+ 2540,
+ 2541,
+ 2542,
+ 2543,
+ 2544,
+ 2545,
+ 2546,
+ 2547,
+ 2548,
+ 2549,
+ 2550,
+ 2551,
+ 2552,
+ 2553,
+ 2554,
+ 2555,
+ 2556,
+ 2557,
+ 2558,
+ 2559,
+ 2560,
+ 2561,
+ 2562,
+ 2563,
+ 2564,
+ 2565,
+ 2566,
+ 2567,
+ 2568,
+ 2569,
+ 2570,
+ 2571,
+ 2572,
+ 2573,
+ 2574,
+ 2575,
+ 2576,
+ 2577,
+ 2578,
+ 2579,
+ 2580,
+ 2581,
+ 2582,
+ 2583,
+ 2584,
+ 2585,
+ 2586,
+ 2587,
+ 2588,
+ 2589,
+ 2590,
+ 2591,
+ 2592,
+ 2593,
+ 2594,
+ 2595,
+ 2596,
+ 2597,
+ 2598,
+ 2599,
+ 2600,
+ 2601,
+ 2602,
+ 2603,
+ 2604,
+ 2605,
+ 2606,
+ 2607,
+ 2608,
+ 2609,
+ 2610,
+ 2611,
+ 2612,
+ 2613,
+ 2614,
+ 2615,
+ 2616,
+ 2617,
+ 2618,
+ 2619,
+ 2620,
+ 2621,
+ 2622,
+ 2623,
+ 2624,
+ 2625,
+ 2626,
+ 2627,
+ 2628,
+ 2629,
+ 2630,
+ 2631,
+ 2632,
+ 2633,
+ 2634,
+ 2635,
+ 2636,
+ 2637,
+ 2638,
+ 2639,
+ 2640,
+ 2641,
+ 2642,
+ 2643,
+ 2644,
+ 2645,
+ 2646,
+ 2647,
+ 2648,
+ 2649,
+ 2650,
+ 2651,
+ 2652,
+ 2653,
+ 2654,
+ 2655,
+ 2656,
+ 2657,
+ 2658,
+ 2659,
+ 2660,
+ 2661,
+ 2662,
+ 2663,
+ 2664,
+ 2665,
+ 2666,
+ 2667,
+ 2668,
+ 2669,
+ 2670,
+ 2671,
+ 2672,
+ 2673,
+ 2674,
+ 2675,
+ 2676,
+ 2677,
+ 2678,
+ 2679,
+ 2680,
+ 2681,
+ 2682,
+ 2683,
+ 2684,
+ 2685,
+ 2686,
+ 2687,
+ 2688,
+ 2689,
+ 2690,
+ 2691,
+ 2692,
+ 2693,
+ 2694,
+ 2695,
+ 2696,
+ 2697,
+ 2698,
+ 2699,
+ 2700,
+ 2701,
+ 2702,
+ 2703,
+ 2704,
+ 2705,
+ 2706,
+ 2707,
+ 2708,
+ 2709,
+ 2710,
+ 2711,
+ 2712,
+ 2713,
+ 2714,
+ 2715,
+ 2716,
+ 2717,
+ 2718,
+ 2719,
+ 2720,
+ 2721,
+ 2722,
+ 2723,
+ 2724,
+ 2725,
+ 2726,
+ 2727,
+ 2728,
+ 2729,
+ 2730,
+ 2731,
+ 2732,
+ 2733,
+ 2734,
+ 2735,
+ 2736,
+ 2737,
+ 2738,
+ 2739,
+ 2740,
+ 2741,
+ 2742,
+ 2743,
+ 2744,
+ 2745,
+ 2746,
+ 2747,
+ 2748,
+ 2749,
+ 2750,
+ 2751,
+ 2752,
+ 2753,
+ 2754,
+ 2755,
+ 2756,
+ 2757,
+ 2758,
+ 2759,
+ 2760,
+ 2761,
+ 2762,
+ 2763,
+ 2764,
+ 2765,
+ 2766,
+ 2767,
+ 2768,
+ 2769,
+ 2770,
+ 2771,
+ 2772,
+ 2773,
+ 2774,
+ 2775,
+ 2776,
+ 2777,
+ 2778,
+ 2779,
+ 2780,
+ 2781,
+ 2782,
+ 2783,
+ 2784,
+ 2785,
+ 2786,
+ 2787,
+ 2788,
+ 2789,
+ 2790,
+ 2791,
+ 2792,
+ 2793,
+ 2794,
+ 2795,
+ 2796,
+ 2797,
+ 2798,
+ 2799,
+ 2800,
+ 2801,
+ 2802,
+ 2803,
+ 2804,
+ 2805,
+ 2806,
+ 2807,
+ 2808,
+ 2809,
+ 2810,
+ 2811,
+ 2812,
+ 2813,
+ 2814,
+ 2815,
+ 2816,
+ 2817,
+ 2818,
+ 2819,
+ 2820,
+ 2821,
+ 2822,
+ 2823,
+ 2824,
+ 2825,
+ 2826,
+ 2827,
+ 2828,
+ 2829,
+ 2830,
+ 2831,
+ 2832,
+ 2833,
+ 2834,
+ 2835,
+ 2836,
+ 2837,
+ 2838,
+ 2839,
+ 2840,
+ 2841,
+ 2842,
+ 2843,
+ 2844,
+ 2845,
+ 2846,
+ 2847,
+ 2848,
+ 2849,
+ 2850,
+ 2851,
+ 2852,
+ 2853,
+ 2854,
+ 2855,
+ 2856,
+ 2857,
+ 2858,
+ 2859,
+ 2860,
+ 2861,
+ 2862,
+ 2863,
+ 2864,
+ 2865,
+ 2866,
+ 2867,
+ 2868,
+ 2869,
+ 2871,
+ 2872,
+ 2873,
+ 2874,
+ 2875,
+ 2876,
+ 2877,
+ 2878,
+ 2879,
+ 2880,
+ 2881,
+ 2882,
+ 2883,
+ 2884,
+ 2885,
+ 2886,
+ 2887,
+ 2888,
+ 2889,
+ 2890,
+ 2891,
+ 2892,
+ 2894,
+ 2895,
+ 2896,
+ 2897,
+ 2898,
+ 2899,
+ 2900,
+ 2901,
+ 2902,
+ 2903,
+ 2904,
+ 2905,
+ 2906,
+ 2907,
+ 2908,
+ 2909,
+ 2910,
+ 2911,
+ 2912,
+ 2913,
+ 2914,
+ 2915,
+ 2916,
+ 2917,
+ 2918,
+ 2919,
+ 2920,
+ 2921,
+ 2922,
+ 2923,
+ 2924,
+ 2925,
+ 2926,
+ 2927,
+ 2928,
+ 2929,
+ 2930,
+ 2931,
+ 2932,
+ 2933,
+ 2934,
+ 2935,
+ 2936,
+ 2937,
+ 2938,
+ 2939,
+ 2940,
+ 2941,
+ 2942,
+ 2943,
+ 2944,
+ 2945,
+ 2946,
+ 2947,
+ 2948,
+ 2949,
+ 2950,
+ 2951,
+ 2952,
+ 2953,
+ 2954,
+ 2955,
+ 2956,
+ 2957,
+ 2958,
+ 2959,
+ 2960,
+ 2961,
+ 2962,
+ 2963,
+ 2965,
+ 2966,
+ 2967,
+ 2968,
+ 2969,
+ 2970,
+ 2971,
+ 2972,
+ 2973,
+ 2974,
+ 2975,
+ 2977,
+ 2978,
+ 2979,
+ 2980,
+ 2981,
+ 2982,
+ 2983,
+ 2984,
+ 2985,
+ 2986,
+ 2987,
+ 2988,
+ 2989,
+ 2990,
+ 2991,
+ 2992,
+ 2993,
+ 2994,
+ 2995,
+ 2996,
+ 2997,
+ 2998,
+ 2999,
+ 3000,
+ 3001,
+ 3002,
+ 3003,
+ 3004,
+ 3005,
+ 3006,
+ 3007,
+ 3008,
+ 3009,
+ 3010,
+ 3011,
+ 3014,
+ 3015,
+ 3016,
+ 3017,
+ 3018,
+ 3019,
+ 3020,
+ 3021,
+ 3022,
+ 3023,
+ 3024,
+ 3025,
+ 3026,
+ 3027,
+ 3028,
+ 3029,
+ 3030,
+ 3031,
+ 3032,
+ 3033,
+ 3034,
+ 3035,
+ 3036,
+ 3037,
+ 3038,
+ 3039,
+ 3040,
+ 3041,
+ 3042,
+ 3043,
+ 3044,
+ 3045,
+ 3046,
+ 3047,
+ 3048,
+ 3049,
+ 3050,
+ 3051,
+ 3052,
+ 3053,
+ 3054,
+ 3055,
+ 3056,
+ 3057,
+ 3058,
+ 3059,
+ 3060,
+ 3061,
+ 3062,
+ 3063,
+ 3064,
+ 3065,
+ 3066,
+ 3067,
+ 3068,
+ 3069,
+ 3070,
+ 3071,
+ 3072,
+ 3073,
+ 3074,
+ 3075,
+ 3076,
+ 3077,
+ 3078,
+ 3079,
+ 3080,
+ 3081,
+ 3082,
+ 3083,
+ 3084,
+ 3085,
+ 3086,
+ 3087,
+ 3088,
+ 3089,
+ 3090,
+ 3091,
+ 3092,
+ 3093,
+ 3094,
+ 3095,
+ 3096,
+ 3097,
+ 3098,
+ 3099,
+ 3100,
+ 3101,
+ 3102,
+ 3103,
+ 3104,
+ 3105,
+ 3106,
+ 3107,
+ 3108,
+ 3109,
+ 3110,
+ 3111,
+ 3112,
+ 3113,
+ 3114,
+ 3115,
+ 3116,
+ 3117,
+ 3118,
+ 3119,
+ 3120,
+ 3121,
+ 3122,
+ 3123,
+ 3124,
+ 3125,
+ 3126,
+ 3127,
+ 3128,
+ 3129,
+ 3130,
+ 3131,
+ 3132,
+ 3133,
+ 3134,
+ 3135,
+ 3136,
+ 3137,
+ 3138,
+ 3139,
+ 3140,
+ 3141,
+ 3142,
+ 3143,
+ 3144,
+ 3145,
+ 3146,
+ 3147,
+ 3148,
+ 3149,
+ 3150,
+ 3151,
+ 3152,
+ 3153,
+ 3154,
+ 3155,
+ 3156,
+ 3157,
+ 3158,
+ 3159,
+ 3160,
+ 3161,
+ 3162,
+ 3163,
+ 3164,
+ 3165,
+ 3166,
+ 3167,
+ 3168,
+ 3169,
+ 3170,
+ 3171,
+ 3172,
+ 3173,
+ 3174,
+ 3175,
+ 3176,
+ 3177,
+ 3178,
+ 3179,
+ 3180,
+ 3181,
+ 3182,
+ 3183,
+ 8731,
+ 8732,
+ 8733,
+ 8734,
+ 8735,
+ 8736,
+ 8737,
+ 8738,
+ 8739,
+ 8740,
+ 8741,
+ 8742,
+ 8743,
+ 8744,
+ 8745,
+ 8746,
+ 8747,
+ 8748,
+ 8749,
+ 8750,
+ 8751,
+ 8752,
+ 8753,
+ 8754,
+ 8755,
+ 8756,
+ 8757,
+ 8758,
+ 8759,
+ 8760,
+ 8761,
+ 8762,
+ 8763,
+ 8764,
+ 8765,
+ 8766,
+ 8767,
+ 8768,
+ 8769,
+ 8770,
+ 8771,
+ 8772,
+ 8773,
+ 8774,
+ 8775,
+ 8776,
+ 8777,
+ 8778,
+ 8779,
+ 8780,
+ 8781,
+ 8782,
+ 8783,
+ 8784,
+ 8785,
+ 8786,
+ 8787,
+ 8788,
+ 8789,
+ 8790,
+ 8791,
+ 8792,
+ 8793,
+ 8794,
+ 8795,
+ 8796,
+ 8797,
+ 8798,
+ 8799,
+ 8800,
+ 8801,
+ 8802,
+ 8803,
+ 8804,
+ 8805,
+ 8806,
+ 8807,
+ 8808,
+ 8809,
+ 8810,
+ 8815,
+ 8816,
+ 8817,
+ 8818,
+ 8819,
+ 8820,
+ 8821,
+ 8822,
+ 8823,
+ 8824,
+ 8825,
+ 8826,
+ 8827,
+ 8828,
+ 8829,
+ 8830,
+ 8831,
+ 8832,
+ 8833,
+ 8834,
+ 8835,
+ 8836,
+ 8837,
+ 8838,
+ 8926,
+ 8927,
+ 8928,
+ 8931,
+ 8932,
+ 8933,
+ 8939,
+ 8941,
+ 8942,
+ 8943,
+ 8944,
+ 8945,
+ 8946,
+ 8947,
+ 8948,
+ 8949,
+ 8950,
+ 8951,
+ 8952,
+ 8953,
+ 8954,
+ 8955,
+ 8956,
+ 8957,
+ 8958,
+ 8959,
+ 8960,
+ 8961,
+ 8962,
+ 8963,
+ 8964,
+ 8965,
+ 8966,
+ 8967,
+ 8968,
+ 8969,
+ 8970,
+ 8971,
+ 8972,
+ 8973,
+ 8974,
+ 8975,
+ 8976,
+ 8977,
+ 8978,
+ 8979,
+ 8980,
+ 8981,
+ 8982,
+ 8983,
+ 8984,
+ 8985,
+ 8986,
+ 8987,
+ 8989,
+ 8990,
+ 8991,
+ 8992,
+ 8993,
+ 8994,
+ 8995,
+ 8996,
+ 8997,
+ 8998,
+ 8999,
+ 9000,
+ 9001,
+ 9002,
+ 9003,
+ 9004,
+ 9005,
+ 9006,
+ 9007,
+ 9008,
+ 9009,
+ 9010,
+ 9011,
+ 9012,
+ 9013,
+ 9014,
+ 9015,
+ 9016,
+ 9017,
+ 9018,
+ 9019,
+ 9028,
+ 9029,
+ 9030,
+ 9031,
+ 9032,
+ 9033,
+ 9034,
+ 9035,
+ 9036,
+ 9037,
+ 9038,
+ 9039,
+ 9040,
+ 9041,
+ 9042,
+ 9043,
+ 9044,
+ 9045,
+ 9046,
+ 9047,
+ 9048,
+ 9049,
+ 9050,
+ 9051,
+ 9052,
+ 9053,
+ 9054,
+ 9055,
+ 9056,
+ 9057,
+ 9058,
+ 9059,
+ 9060,
+ 9061,
+ 9062,
+ 9063,
+ 9064,
+ 9065,
+ 9066,
+ 9067,
+ 9068,
+ 9069,
+ 9070,
+ 9071,
+ 9072,
+ 9073,
+ 9074,
+ 9075,
+ 9076,
+ 9077,
+ 9078,
+ 9079,
+ 9080,
+ 9081,
+ 9082,
+ 9083,
+ 9084,
+ 9085,
+ 9086,
+ 9087,
+ 9088,
+ 9089,
+ 9090,
+ 9091,
+ 9092,
+ 9093,
+ 9094,
+ 9095,
+ 9096,
+ 9097,
+ 9098,
+ 9099,
+ 9100,
+ 9101,
+ 9102,
+ 9103,
+ 9104,
+ 9105,
+ 9106,
+ 9107,
+ 9108,
+ 9109,
+ 9110,
+ 9111,
+ 9112,
+ 9113,
+ 9114,
+ 9115,
+ 9116,
+ 9117,
+ 9118,
+ 9119,
+ 9120,
+ 9121,
+ 9122,
+ 9123,
+ 9124,
+ 9125,
+ 9126,
+ 9127,
+ 9128,
+ 9129,
+ 9130,
+ 9131,
+ 9132,
+ 9133,
+ 9134,
+ 9135,
+ 9136,
+ 9137,
+ 9138,
+ 9139,
+ 9140,
+ 9141,
+ 9142,
+ 9143,
+ 9144,
+ 9145,
+ 9146,
+ 9147,
+ 9148,
+ 9149,
+ 9150,
+ 9151,
+ 9152,
+ 9153,
+ 9154,
+ 9155,
+ 9156,
+ 9157,
+ 9158,
+ 9159,
+ 9160,
+ 9162,
+ 9163,
+ 9164,
+ 9166,
+ 9167,
+ 9168,
+ 9169,
+ 9170,
+ 9171,
+ 9172,
+ 9173,
+ 9174,
+ 9175,
+ 9176,
+ 9177,
+ 9178,
+ 9179,
+ 9180,
+ 9181,
+ 9182,
+ 9183,
+ 9184,
+ 9185,
+ 9186,
+ 9187,
+ 9188,
+ 9189,
+ 9190,
+ 9191,
+ 9192,
+ 9193,
+ 9194,
+ 9195,
+ 9196,
+ 9197,
+ 9198,
+ 9199,
+ 9200,
+ 9201,
+ 9202,
+ 9203,
+ 9204,
+ 9205,
+ 9206,
+ 9207,
+ 9208,
+ 9209,
+ 9210,
+ 9211,
+ 9212,
+ 9213,
+ 9214,
+ 9215,
+ 9216,
+ 9217,
+ 9218,
+ 9219,
+ 9220,
+ 9221,
+ 9222,
+ 9223,
+ 9224,
+ 9225,
+ 9226,
+ 9227,
+ 9228,
+ 9229,
+ 9230,
+ 9231,
+ 9232,
+ 9233,
+ 9234,
+ 9235,
+ 9236,
+ 9237,
+ 9238,
+ 9239,
+ 9240,
+ 9241,
+ 9242,
+ 9243,
+ 9244,
+ 9245,
+ 9246,
+ 9247,
+ 9248,
+ 9249,
+ 9250,
+ 9251,
+ 9252,
+ 9253,
+ 9254,
+ 9255,
+ 9256,
+ 9257,
+ 9258,
+ 9259,
+ 9260,
+ 9261,
+ 9262,
+ 9263,
+ 9264,
+ 9265,
+ 9266,
+ 9267,
+ 9268,
+ 9269,
+ 9270,
+ 9271,
+ 9272,
+ 9273,
+ 9274,
+ 9275,
+ 9276,
+ 9277,
+ 9278,
+ 9279,
+ 9280,
+ 9281,
+ 9282,
+ 9283,
+ 9284,
+ 9285,
+ 9286,
+ 9287,
+ 9288,
+ 9289,
+ 9290,
+ 9291,
+ 9292,
+ 9293,
+ 9294,
+ 9295,
+ 9296,
+ 9297,
+ 9298,
+ 9299,
+ 9300,
+ 9301,
+ 9302,
+ 9303,
+ 9304,
+ 9305,
+ 9306,
+ 9307,
+ 9308,
+ 9309,
+ 9310,
+ 9311,
+ 9312,
+ 9313,
+ 9314,
+ 9315,
+ 9316,
+ 9317,
+ 9318,
+ 9319,
+ 9320,
+ 9321,
+ 9322,
+ 9323,
+ 9324,
+ 9325,
+ 9326,
+ 9327,
+ 9328,
+ 9329,
+ 9330,
+ 9331,
+ 9332,
+ 9333,
+ 9334,
+ 9335,
+ 9336,
+ 9337,
+ 9338,
+ 9339,
+ 9340,
+ 9341,
+ 9342,
+ 9343,
+ 9344,
+ 9345,
+ 9346,
+ 9347,
+ 9348,
+ 9349,
+ 9350,
+ 9351,
+ 9352,
+ 9353,
+ 9354,
+ 9355,
+ 9356,
+ 9357,
+ 9358,
+ 9359,
+ 9360,
+ 9361,
+ 9362,
+ 9363,
+ 9364,
+ 9365,
+ 9366,
+ 9367,
+ 9368,
+ 9369,
+ 9370,
+ 9371,
+ 9372,
+ 9373,
+ 9374,
+ 9375,
+ 9376,
+ 9377,
+ 9378,
+ 9379,
+ 9380,
+ 9381,
+ 9382
+ ],
+ "leftEye": [
+ 9383,
+ 9384,
+ 9385,
+ 9386,
+ 9387,
+ 9388,
+ 9389,
+ 9390,
+ 9391,
+ 9392,
+ 9393,
+ 9394,
+ 9395,
+ 9396,
+ 9397,
+ 9398,
+ 9399,
+ 9400,
+ 9401,
+ 9402,
+ 9403,
+ 9404,
+ 9405,
+ 9406,
+ 9407,
+ 9408,
+ 9409,
+ 9410,
+ 9411,
+ 9412,
+ 9413,
+ 9414,
+ 9415,
+ 9416,
+ 9417,
+ 9418,
+ 9419,
+ 9420,
+ 9421,
+ 9422,
+ 9423,
+ 9424,
+ 9425,
+ 9426,
+ 9427,
+ 9428,
+ 9429,
+ 9430,
+ 9431,
+ 9432,
+ 9433,
+ 9434,
+ 9435,
+ 9436,
+ 9437,
+ 9438,
+ 9439,
+ 9440,
+ 9441,
+ 9442,
+ 9443,
+ 9444,
+ 9445,
+ 9446,
+ 9447,
+ 9448,
+ 9449,
+ 9450,
+ 9451,
+ 9452,
+ 9453,
+ 9454,
+ 9455,
+ 9456,
+ 9457,
+ 9458,
+ 9459,
+ 9460,
+ 9461,
+ 9462,
+ 9463,
+ 9464,
+ 9465,
+ 9466,
+ 9467,
+ 9468,
+ 9469,
+ 9470,
+ 9471,
+ 9472,
+ 9473,
+ 9474,
+ 9475,
+ 9476,
+ 9477,
+ 9478,
+ 9479,
+ 9480,
+ 9481,
+ 9482,
+ 9483,
+ 9484,
+ 9485,
+ 9486,
+ 9487,
+ 9488,
+ 9489,
+ 9490,
+ 9491,
+ 9492,
+ 9493,
+ 9494,
+ 9495,
+ 9496,
+ 9497,
+ 9498,
+ 9499,
+ 9500,
+ 9501,
+ 9502,
+ 9503,
+ 9504,
+ 9505,
+ 9506,
+ 9507,
+ 9508,
+ 9509,
+ 9510,
+ 9511,
+ 9512,
+ 9513,
+ 9514,
+ 9515,
+ 9516,
+ 9517,
+ 9518,
+ 9519,
+ 9520,
+ 9521,
+ 9522,
+ 9523,
+ 9524,
+ 9525,
+ 9526,
+ 9527,
+ 9528,
+ 9529,
+ 9530,
+ 9531,
+ 9532,
+ 9533,
+ 9534,
+ 9535,
+ 9536,
+ 9537,
+ 9538,
+ 9539,
+ 9540,
+ 9541,
+ 9542,
+ 9543,
+ 9544,
+ 9545,
+ 9546,
+ 9547,
+ 9548,
+ 9549,
+ 9550,
+ 9551,
+ 9552,
+ 9553,
+ 9554,
+ 9555,
+ 9556,
+ 9557,
+ 9558,
+ 9559,
+ 9560,
+ 9561,
+ 9562,
+ 9563,
+ 9564,
+ 9565,
+ 9566,
+ 9567,
+ 9568,
+ 9569,
+ 9570,
+ 9571,
+ 9572,
+ 9573,
+ 9574,
+ 9575,
+ 9576,
+ 9577,
+ 9578,
+ 9579,
+ 9580,
+ 9581,
+ 9582,
+ 9583,
+ 9584,
+ 9585,
+ 9586,
+ 9587,
+ 9588,
+ 9589,
+ 9590,
+ 9591,
+ 9592,
+ 9593,
+ 9594,
+ 9595,
+ 9596,
+ 9597,
+ 9598,
+ 9599,
+ 9600,
+ 9601,
+ 9602,
+ 9603,
+ 9604,
+ 9605,
+ 9606,
+ 9607,
+ 9608,
+ 9609,
+ 9610,
+ 9611,
+ 9612,
+ 9613,
+ 9614,
+ 9615,
+ 9616,
+ 9617,
+ 9618,
+ 9619,
+ 9620,
+ 9621,
+ 9622,
+ 9623,
+ 9624,
+ 9625,
+ 9626,
+ 9627,
+ 9628,
+ 9629,
+ 9630,
+ 9631,
+ 9632,
+ 9633,
+ 9634,
+ 9635,
+ 9636,
+ 9637,
+ 9638,
+ 9639,
+ 9640,
+ 9641,
+ 9642,
+ 9643,
+ 9644,
+ 9645,
+ 9646,
+ 9647,
+ 9648,
+ 9649,
+ 9650,
+ 9651,
+ 9652,
+ 9653,
+ 9654,
+ 9655,
+ 9656,
+ 9657,
+ 9658,
+ 9659,
+ 9660,
+ 9661,
+ 9662,
+ 9663,
+ 9664,
+ 9665,
+ 9666,
+ 9667,
+ 9668,
+ 9669,
+ 9670,
+ 9671,
+ 9672,
+ 9673,
+ 9674,
+ 9675,
+ 9676,
+ 9677,
+ 9678,
+ 9679,
+ 9680,
+ 9681,
+ 9682,
+ 9683,
+ 9684,
+ 9685,
+ 9686,
+ 9687,
+ 9688,
+ 9689,
+ 9690,
+ 9691,
+ 9692,
+ 9693,
+ 9694,
+ 9695,
+ 9696,
+ 9697,
+ 9698,
+ 9699,
+ 9700,
+ 9701,
+ 9702,
+ 9703,
+ 9704,
+ 9705,
+ 9706,
+ 9707,
+ 9708,
+ 9709,
+ 9710,
+ 9711,
+ 9712,
+ 9713,
+ 9714,
+ 9715,
+ 9716,
+ 9717,
+ 9718,
+ 9719,
+ 9720,
+ 9721,
+ 9722,
+ 9723,
+ 9724,
+ 9725,
+ 9726,
+ 9727,
+ 9728,
+ 9729,
+ 9730,
+ 9731,
+ 9732,
+ 9733,
+ 9734,
+ 9735,
+ 9736,
+ 9737,
+ 9738,
+ 9739,
+ 9740,
+ 9741,
+ 9742,
+ 9743,
+ 9744,
+ 9745,
+ 9746,
+ 9747,
+ 9748,
+ 9749,
+ 9750,
+ 9751,
+ 9752,
+ 9753,
+ 9754,
+ 9755,
+ 9756,
+ 9757,
+ 9758,
+ 9759,
+ 9760,
+ 9761,
+ 9762,
+ 9763,
+ 9764,
+ 9765,
+ 9766,
+ 9767,
+ 9768,
+ 9769,
+ 9770,
+ 9771,
+ 9772,
+ 9773,
+ 9774,
+ 9775,
+ 9776,
+ 9777,
+ 9778,
+ 9779,
+ 9780,
+ 9781,
+ 9782,
+ 9783,
+ 9784,
+ 9785,
+ 9786,
+ 9787,
+ 9788,
+ 9789,
+ 9790,
+ 9791,
+ 9792,
+ 9793,
+ 9794,
+ 9795,
+ 9796,
+ 9797,
+ 9798,
+ 9799,
+ 9800,
+ 9801,
+ 9802,
+ 9803,
+ 9804,
+ 9805,
+ 9806,
+ 9807,
+ 9808,
+ 9809,
+ 9810,
+ 9811,
+ 9812,
+ 9813,
+ 9814,
+ 9815,
+ 9816,
+ 9817,
+ 9818,
+ 9819,
+ 9820,
+ 9821,
+ 9822,
+ 9823,
+ 9824,
+ 9825,
+ 9826,
+ 9827,
+ 9828,
+ 9829,
+ 9830,
+ 9831,
+ 9832,
+ 9833,
+ 9834,
+ 9835,
+ 9836,
+ 9837,
+ 9838,
+ 9839,
+ 9840,
+ 9841,
+ 9842,
+ 9843,
+ 9844,
+ 9845,
+ 9846,
+ 9847,
+ 9848,
+ 9849,
+ 9850,
+ 9851,
+ 9852,
+ 9853,
+ 9854,
+ 9855,
+ 9856,
+ 9857,
+ 9858,
+ 9859,
+ 9860,
+ 9861,
+ 9862,
+ 9863,
+ 9864,
+ 9865,
+ 9866,
+ 9867,
+ 9868,
+ 9869,
+ 9870,
+ 9871,
+ 9872,
+ 9873,
+ 9874,
+ 9875,
+ 9876,
+ 9877,
+ 9878,
+ 9879,
+ 9880,
+ 9881,
+ 9882,
+ 9883,
+ 9884,
+ 9885,
+ 9886,
+ 9887,
+ 9888,
+ 9889,
+ 9890,
+ 9891,
+ 9892,
+ 9893,
+ 9894,
+ 9895,
+ 9896,
+ 9897,
+ 9898,
+ 9899,
+ 9900,
+ 9901,
+ 9902,
+ 9903,
+ 9904,
+ 9905,
+ 9906,
+ 9907,
+ 9908,
+ 9909,
+ 9910,
+ 9911,
+ 9912,
+ 9913,
+ 9914,
+ 9915,
+ 9916,
+ 9917,
+ 9918,
+ 9919,
+ 9920,
+ 9921,
+ 9922,
+ 9923,
+ 9924,
+ 9925,
+ 9926,
+ 9927,
+ 9928
+ ],
+ "rightEye": [
+ 9929,
+ 9930,
+ 9931,
+ 9932,
+ 9933,
+ 9934,
+ 9935,
+ 9936,
+ 9937,
+ 9938,
+ 9939,
+ 9940,
+ 9941,
+ 9942,
+ 9943,
+ 9944,
+ 9945,
+ 9946,
+ 9947,
+ 9948,
+ 9949,
+ 9950,
+ 9951,
+ 9952,
+ 9953,
+ 9954,
+ 9955,
+ 9956,
+ 9957,
+ 9958,
+ 9959,
+ 9960,
+ 9961,
+ 9962,
+ 9963,
+ 9964,
+ 9965,
+ 9966,
+ 9967,
+ 9968,
+ 9969,
+ 9970,
+ 9971,
+ 9972,
+ 9973,
+ 9974,
+ 9975,
+ 9976,
+ 9977,
+ 9978,
+ 9979,
+ 9980,
+ 9981,
+ 9982,
+ 9983,
+ 9984,
+ 9985,
+ 9986,
+ 9987,
+ 9988,
+ 9989,
+ 9990,
+ 9991,
+ 9992,
+ 9993,
+ 9994,
+ 9995,
+ 9996,
+ 9997,
+ 9998,
+ 9999,
+ 10000,
+ 10001,
+ 10002,
+ 10003,
+ 10004,
+ 10005,
+ 10006,
+ 10007,
+ 10008,
+ 10009,
+ 10010,
+ 10011,
+ 10012,
+ 10013,
+ 10014,
+ 10015,
+ 10016,
+ 10017,
+ 10018,
+ 10019,
+ 10020,
+ 10021,
+ 10022,
+ 10023,
+ 10024,
+ 10025,
+ 10026,
+ 10027,
+ 10028,
+ 10029,
+ 10030,
+ 10031,
+ 10032,
+ 10033,
+ 10034,
+ 10035,
+ 10036,
+ 10037,
+ 10038,
+ 10039,
+ 10040,
+ 10041,
+ 10042,
+ 10043,
+ 10044,
+ 10045,
+ 10046,
+ 10047,
+ 10048,
+ 10049,
+ 10050,
+ 10051,
+ 10052,
+ 10053,
+ 10054,
+ 10055,
+ 10056,
+ 10057,
+ 10058,
+ 10059,
+ 10060,
+ 10061,
+ 10062,
+ 10063,
+ 10064,
+ 10065,
+ 10066,
+ 10067,
+ 10068,
+ 10069,
+ 10070,
+ 10071,
+ 10072,
+ 10073,
+ 10074,
+ 10075,
+ 10076,
+ 10077,
+ 10078,
+ 10079,
+ 10080,
+ 10081,
+ 10082,
+ 10083,
+ 10084,
+ 10085,
+ 10086,
+ 10087,
+ 10088,
+ 10089,
+ 10090,
+ 10091,
+ 10092,
+ 10093,
+ 10094,
+ 10095,
+ 10096,
+ 10097,
+ 10098,
+ 10099,
+ 10100,
+ 10101,
+ 10102,
+ 10103,
+ 10104,
+ 10105,
+ 10106,
+ 10107,
+ 10108,
+ 10109,
+ 10110,
+ 10111,
+ 10112,
+ 10113,
+ 10114,
+ 10115,
+ 10116,
+ 10117,
+ 10118,
+ 10119,
+ 10120,
+ 10121,
+ 10122,
+ 10123,
+ 10124,
+ 10125,
+ 10126,
+ 10127,
+ 10128,
+ 10129,
+ 10130,
+ 10131,
+ 10132,
+ 10133,
+ 10134,
+ 10135,
+ 10136,
+ 10137,
+ 10138,
+ 10139,
+ 10140,
+ 10141,
+ 10142,
+ 10143,
+ 10144,
+ 10145,
+ 10146,
+ 10147,
+ 10148,
+ 10149,
+ 10150,
+ 10151,
+ 10152,
+ 10153,
+ 10154,
+ 10155,
+ 10156,
+ 10157,
+ 10158,
+ 10159,
+ 10160,
+ 10161,
+ 10162,
+ 10163,
+ 10164,
+ 10165,
+ 10166,
+ 10167,
+ 10168,
+ 10169,
+ 10170,
+ 10171,
+ 10172,
+ 10173,
+ 10174,
+ 10175,
+ 10176,
+ 10177,
+ 10178,
+ 10179,
+ 10180,
+ 10181,
+ 10182,
+ 10183,
+ 10184,
+ 10185,
+ 10186,
+ 10187,
+ 10188,
+ 10189,
+ 10190,
+ 10191,
+ 10192,
+ 10193,
+ 10194,
+ 10195,
+ 10196,
+ 10197,
+ 10198,
+ 10199,
+ 10200,
+ 10201,
+ 10202,
+ 10203,
+ 10204,
+ 10205,
+ 10206,
+ 10207,
+ 10208,
+ 10209,
+ 10210,
+ 10211,
+ 10212,
+ 10213,
+ 10214,
+ 10215,
+ 10216,
+ 10217,
+ 10218,
+ 10219,
+ 10220,
+ 10221,
+ 10222,
+ 10223,
+ 10224,
+ 10225,
+ 10226,
+ 10227,
+ 10228,
+ 10229,
+ 10230,
+ 10231,
+ 10232,
+ 10233,
+ 10234,
+ 10235,
+ 10236,
+ 10237,
+ 10238,
+ 10239,
+ 10240,
+ 10241,
+ 10242,
+ 10243,
+ 10244,
+ 10245,
+ 10246,
+ 10247,
+ 10248,
+ 10249,
+ 10250,
+ 10251,
+ 10252,
+ 10253,
+ 10254,
+ 10255,
+ 10256,
+ 10257,
+ 10258,
+ 10259,
+ 10260,
+ 10261,
+ 10262,
+ 10263,
+ 10264,
+ 10265,
+ 10266,
+ 10267,
+ 10268,
+ 10269,
+ 10270,
+ 10271,
+ 10272,
+ 10273,
+ 10274,
+ 10275,
+ 10276,
+ 10277,
+ 10278,
+ 10279,
+ 10280,
+ 10281,
+ 10282,
+ 10283,
+ 10284,
+ 10285,
+ 10286,
+ 10287,
+ 10288,
+ 10289,
+ 10290,
+ 10291,
+ 10292,
+ 10293,
+ 10294,
+ 10295,
+ 10296,
+ 10297,
+ 10298,
+ 10299,
+ 10300,
+ 10301,
+ 10302,
+ 10303,
+ 10304,
+ 10305,
+ 10306,
+ 10307,
+ 10308,
+ 10309,
+ 10310,
+ 10311,
+ 10312,
+ 10313,
+ 10314,
+ 10315,
+ 10316,
+ 10317,
+ 10318,
+ 10319,
+ 10320,
+ 10321,
+ 10322,
+ 10323,
+ 10324,
+ 10325,
+ 10326,
+ 10327,
+ 10328,
+ 10329,
+ 10330,
+ 10331,
+ 10332,
+ 10333,
+ 10334,
+ 10335,
+ 10336,
+ 10337,
+ 10338,
+ 10339,
+ 10340,
+ 10341,
+ 10342,
+ 10343,
+ 10344,
+ 10345,
+ 10346,
+ 10347,
+ 10348,
+ 10349,
+ 10350,
+ 10351,
+ 10352,
+ 10353,
+ 10354,
+ 10355,
+ 10356,
+ 10357,
+ 10358,
+ 10359,
+ 10360,
+ 10361,
+ 10362,
+ 10363,
+ 10364,
+ 10365,
+ 10366,
+ 10367,
+ 10368,
+ 10369,
+ 10370,
+ 10371,
+ 10372,
+ 10373,
+ 10374,
+ 10375,
+ 10376,
+ 10377,
+ 10378,
+ 10379,
+ 10380,
+ 10381,
+ 10382,
+ 10383,
+ 10384,
+ 10385,
+ 10386,
+ 10387,
+ 10388,
+ 10389,
+ 10390,
+ 10391,
+ 10392,
+ 10393,
+ 10394,
+ 10395,
+ 10396,
+ 10397,
+ 10398,
+ 10399,
+ 10400,
+ 10401,
+ 10402,
+ 10403,
+ 10404,
+ 10405,
+ 10406,
+ 10407,
+ 10408,
+ 10409,
+ 10410,
+ 10411,
+ 10412,
+ 10413,
+ 10414,
+ 10415,
+ 10416,
+ 10417,
+ 10418,
+ 10419,
+ 10420,
+ 10421,
+ 10422,
+ 10423,
+ 10424,
+ 10425,
+ 10426,
+ 10427,
+ 10428,
+ 10429,
+ 10430,
+ 10431,
+ 10432,
+ 10433,
+ 10434,
+ 10435,
+ 10436,
+ 10437,
+ 10438,
+ 10439,
+ 10440,
+ 10441,
+ 10442,
+ 10443,
+ 10444,
+ 10445,
+ 10446,
+ 10447,
+ 10448,
+ 10449,
+ 10450,
+ 10451,
+ 10452,
+ 10453,
+ 10454,
+ 10455,
+ 10456,
+ 10457,
+ 10458,
+ 10459,
+ 10460,
+ 10461,
+ 10462,
+ 10463,
+ 10464,
+ 10465,
+ 10466,
+ 10467,
+ 10468,
+ 10469,
+ 10470,
+ 10471,
+ 10472,
+ 10473,
+ 10474
+ ],
+ "leftLeg": [
+ 3625,
+ 3626,
+ 3629,
+ 3630,
+ 3636,
+ 3635,
+ 3637,
+ 3639,
+ 3642,
+ 3644,
+ 3643,
+ 3650,
+ 3649,
+ 3676,
+ 3675,
+ 3677,
+ 3678,
+ 3680,
+ 3679,
+ 3681,
+ 3683,
+ 3682,
+ 3684,
+ 3685,
+ 3686,
+ 3689,
+ 3688,
+ 3687,
+ 3690,
+ 3693,
+ 3692,
+ 3691,
+ 3695,
+ 3694,
+ 3696,
+ 3699,
+ 3698,
+ 3697,
+ 3700,
+ 3701,
+ 3703,
+ 3702,
+ 3704,
+ 3707,
+ 3706,
+ 3705,
+ 3709,
+ 3708,
+ 3711,
+ 3710,
+ 3712,
+ 3715,
+ 3714,
+ 3713,
+ 3716,
+ 3719,
+ 3718,
+ 3717,
+ 3723,
+ 3722,
+ 3721,
+ 3720,
+ 3724,
+ 3727,
+ 3726,
+ 3725,
+ 3731,
+ 3730,
+ 3729,
+ 3728,
+ 3733,
+ 3732,
+ 3737,
+ 3740,
+ 3739,
+ 3738,
+ 3741,
+ 3744,
+ 3743,
+ 3742,
+ 3745,
+ 3748,
+ 3747,
+ 3746,
+ 3749,
+ 3751,
+ 3750,
+ 3754,
+ 3753,
+ 3752,
+ 3756,
+ 3755,
+ 3760,
+ 3759,
+ 3758,
+ 3757,
+ 3761,
+ 3764,
+ 3763,
+ 3762,
+ 3765,
+ 3767,
+ 3766,
+ 3768,
+ 3769,
+ 3781,
+ 3782,
+ 3783,
+ 3784,
+ 3786,
+ 3785,
+ 3787,
+ 3788,
+ 3790,
+ 3789,
+ 3791,
+ 3809,
+ 3811,
+ 3810,
+ 3812,
+ 3814,
+ 3813,
+ 3817,
+ 3816,
+ 3815,
+ 3999,
+ 4000,
+ 4001,
+ 4003,
+ 4004,
+ 4006,
+ 4005,
+ 4098,
+ 4099,
+ 4101,
+ 4100,
+ 4103,
+ 4102,
+ 4104,
+ 4105,
+ 4106,
+ 4108,
+ 4107,
+ 4154,
+ 4155,
+ 4156,
+ 4157,
+ 4159,
+ 4158,
+ 4160,
+ 4162,
+ 4161,
+ 4164,
+ 4163,
+ 5728,
+ 5731,
+ 5730,
+ 5729,
+ 5732,
+ 5733,
+ 5734,
+ 5737,
+ 5736,
+ 5735,
+ 5738,
+ 5742,
+ 5741,
+ 5740,
+ 5739,
+ 5743,
+ 5744,
+ 5745,
+ 5746,
+ 5747,
+ 5748,
+ 5749,
+ 5751,
+ 5750,
+ 5752,
+ 5753,
+ 5754,
+ 5755,
+ 5756,
+ 5757,
+ 5758,
+ 5760,
+ 5759,
+ 5761,
+ 5762,
+ 5763,
+ 5764,
+ 5874,
+ 5873,
+ 5875,
+ 5877,
+ 5876,
+ 5878,
+ 5880,
+ 5879,
+ 5882,
+ 5881,
+ 5883,
+ 5885,
+ 5884,
+ 5887,
+ 5886,
+ 5888,
+ 5889,
+ 8892,
+ 8893,
+ 8894,
+ 8895,
+ 8896,
+ 8935,
+ 8937,
+ 8936,
+ 9020
+ ],
+ "leftToeBase": [
+ 5767,
+ 5766,
+ 5765,
+ 5768,
+ 5771,
+ 5770,
+ 5769,
+ 5772,
+ 5775,
+ 5774,
+ 5773,
+ 5776,
+ 5779,
+ 5778,
+ 5777,
+ 5780,
+ 5783,
+ 5782,
+ 5781,
+ 5784,
+ 5785,
+ 5788,
+ 5787,
+ 5786,
+ 5789,
+ 5792,
+ 5791,
+ 5790,
+ 5794,
+ 5793,
+ 5795,
+ 5796,
+ 5797,
+ 5800,
+ 5799,
+ 5798,
+ 5802,
+ 5801,
+ 5803,
+ 5806,
+ 5805,
+ 5804,
+ 5807,
+ 5808,
+ 5811,
+ 5810,
+ 5809,
+ 5812,
+ 5815,
+ 5814,
+ 5813,
+ 5816,
+ 5818,
+ 5817,
+ 5819,
+ 5820,
+ 5823,
+ 5822,
+ 5821,
+ 5824,
+ 5825,
+ 5826,
+ 5829,
+ 5828,
+ 5827,
+ 5830,
+ 5832,
+ 5831,
+ 5835,
+ 5834,
+ 5833,
+ 5836,
+ 5837,
+ 5838,
+ 5841,
+ 5840,
+ 5839,
+ 5842,
+ 5844,
+ 5843,
+ 5846,
+ 5845,
+ 5847,
+ 5848,
+ 5849,
+ 5850,
+ 5851,
+ 5852,
+ 5853,
+ 5855,
+ 5854,
+ 5856,
+ 5857,
+ 5858,
+ 5859,
+ 5860,
+ 5861,
+ 5862,
+ 5863,
+ 5865,
+ 5864,
+ 5866,
+ 5867,
+ 5868,
+ 5869,
+ 5870,
+ 5871,
+ 5872,
+ 5890,
+ 5893,
+ 5895,
+ 5897,
+ 5899,
+ 5901,
+ 5903,
+ 5904,
+ 5906,
+ 5908,
+ 5911,
+ 5912,
+ 5914,
+ 5916
+ ],
+ "leftFoot": [
+ 5882,
+ 5881,
+ 5883,
+ 5885,
+ 5884,
+ 5887,
+ 5886,
+ 5888,
+ 5889,
+ 5890,
+ 5893,
+ 5892,
+ 5891,
+ 5895,
+ 5894,
+ 5897,
+ 5896,
+ 5899,
+ 5898,
+ 5901,
+ 5900,
+ 5903,
+ 5902,
+ 5904,
+ 5905,
+ 5906,
+ 5907,
+ 5908,
+ 5909,
+ 5910,
+ 5911,
+ 5912,
+ 5913,
+ 5914,
+ 5915,
+ 5916,
+ 5917,
+ 5918,
+ 5919,
+ 5922,
+ 5923,
+ 5924,
+ 5925,
+ 5926,
+ 5927,
+ 5928,
+ 5930,
+ 5929,
+ 5933,
+ 8730,
+ 8729,
+ 8728,
+ 8839,
+ 8840,
+ 8841,
+ 8845,
+ 8844,
+ 8843,
+ 8842,
+ 8847,
+ 8846,
+ 8848,
+ 8849,
+ 8850,
+ 8851,
+ 8852,
+ 8853,
+ 8855,
+ 8854,
+ 8856,
+ 8857,
+ 8858,
+ 8859,
+ 8860,
+ 8861,
+ 8862,
+ 8863,
+ 8865,
+ 8864,
+ 8866,
+ 8867,
+ 8868,
+ 8870,
+ 8869,
+ 8872,
+ 8871,
+ 8874,
+ 8873,
+ 8875,
+ 8876,
+ 8877,
+ 8878,
+ 8879,
+ 8880,
+ 8881,
+ 8882,
+ 8883,
+ 8884,
+ 8886,
+ 8885,
+ 8887,
+ 8888,
+ 8889,
+ 8890,
+ 8891,
+ 8892,
+ 8893,
+ 8894,
+ 8895,
+ 8896,
+ 8897,
+ 8898,
+ 8899,
+ 8900,
+ 8901,
+ 8902,
+ 8903,
+ 8904,
+ 8905,
+ 8906,
+ 8907,
+ 8908,
+ 8909,
+ 8910,
+ 8911,
+ 8912,
+ 8913,
+ 8914,
+ 8915,
+ 8916,
+ 8917,
+ 8918,
+ 8919,
+ 8920,
+ 8921,
+ 8922,
+ 8924,
+ 8923,
+ 8925,
+ 8929,
+ 8930,
+ 8934,
+ 8935
+ ],
+ "spine1": [
+ 3231,
+ 3230,
+ 3229,
+ 3228,
+ 3240,
+ 3243,
+ 3242,
+ 3241,
+ 3247,
+ 3246,
+ 3245,
+ 3244,
+ 3248,
+ 3251,
+ 3250,
+ 3249,
+ 3272,
+ 3273,
+ 3276,
+ 3277,
+ 3283,
+ 3282,
+ 3288,
+ 3291,
+ 3290,
+ 3289,
+ 3301,
+ 3300,
+ 3299,
+ 3298,
+ 3314,
+ 3317,
+ 3316,
+ 3315,
+ 3318,
+ 3320,
+ 3319,
+ 3321,
+ 3322,
+ 3352,
+ 3357,
+ 3356,
+ 3355,
+ 3369,
+ 3384,
+ 3383,
+ 3393,
+ 3394,
+ 3400,
+ 3399,
+ 3427,
+ 3426,
+ 3521,
+ 3524,
+ 3523,
+ 3522,
+ 3556,
+ 3555,
+ 3557,
+ 3559,
+ 3558,
+ 3571,
+ 3570,
+ 3573,
+ 3572,
+ 3824,
+ 3827,
+ 3826,
+ 3825,
+ 3829,
+ 3828,
+ 3833,
+ 3830,
+ 3838,
+ 3837,
+ 3836,
+ 3844,
+ 3873,
+ 3892,
+ 3893,
+ 3897,
+ 3896,
+ 3908,
+ 3909,
+ 3910,
+ 3855,
+ 3856,
+ 3981,
+ 3982,
+ 3985,
+ 4052,
+ 4053,
+ 4054,
+ 4057,
+ 4056,
+ 4058,
+ 4070,
+ 4069,
+ 4392,
+ 4393,
+ 4394,
+ 5417,
+ 5418,
+ 5419,
+ 5420,
+ 5422,
+ 5421,
+ 5423,
+ 5424,
+ 5425,
+ 5426,
+ 5428,
+ 5427,
+ 5429,
+ 5449,
+ 5448,
+ 5459,
+ 5483,
+ 5485,
+ 5486,
+ 5489,
+ 5632,
+ 5634,
+ 5635,
+ 5638,
+ 5639,
+ 5642,
+ 5645,
+ 5644,
+ 5646,
+ 5647,
+ 5648,
+ 5531,
+ 5532,
+ 5534,
+ 9026,
+ 5944,
+ 5950,
+ 5994,
+ 5991,
+ 5992,
+ 5993,
+ 6003,
+ 6004,
+ 6005,
+ 6006,
+ 6010,
+ 6007,
+ 6008,
+ 6009,
+ 6011,
+ 6012,
+ 6013,
+ 6014,
+ 6035,
+ 6036,
+ 6039,
+ 6040,
+ 6045,
+ 6046,
+ 6051,
+ 6052,
+ 6053,
+ 6054,
+ 6064,
+ 6061,
+ 6062,
+ 6063,
+ 6077,
+ 6078,
+ 6079,
+ 6080,
+ 6081,
+ 6082,
+ 6083,
+ 6084,
+ 6085,
+ 6115,
+ 6116,
+ 6117,
+ 6118,
+ 6130,
+ 6144,
+ 6145,
+ 6154,
+ 6155,
+ 6160,
+ 6161,
+ 6187,
+ 6188,
+ 6282,
+ 6283,
+ 6284,
+ 6285,
+ 6316,
+ 6317,
+ 6318,
+ 6319,
+ 6320,
+ 6332,
+ 6331,
+ 6333,
+ 6334,
+ 6581,
+ 6582,
+ 6583,
+ 6584,
+ 6586,
+ 6585,
+ 6587,
+ 6588,
+ 6591,
+ 6592,
+ 6593,
+ 6599,
+ 6624,
+ 6640,
+ 6641,
+ 6645,
+ 6644,
+ 6656,
+ 6657,
+ 6658,
+ 6729,
+ 6730,
+ 6733,
+ 6798,
+ 6799,
+ 6800,
+ 6802,
+ 6803,
+ 6804,
+ 6813,
+ 6814,
+ 7128,
+ 7129,
+ 7130,
+ 8151,
+ 8152,
+ 8153,
+ 8154,
+ 8155,
+ 8156,
+ 8157,
+ 8158,
+ 8159,
+ 8160,
+ 8161,
+ 8162,
+ 8163,
+ 8182,
+ 8183,
+ 8193,
+ 8217,
+ 8218,
+ 8326,
+ 8328,
+ 8329,
+ 8332,
+ 8333,
+ 8336,
+ 8338,
+ 8339,
+ 8340,
+ 8341,
+ 8342,
+ 8726
+ ],
+ "spine2": [
+ 3210,
+ 3211,
+ 3217,
+ 3216,
+ 3215,
+ 3214,
+ 3218,
+ 3221,
+ 3220,
+ 3219,
+ 3222,
+ 3223,
+ 3224,
+ 3227,
+ 3226,
+ 3225,
+ 3232,
+ 3235,
+ 3234,
+ 3233,
+ 3236,
+ 3239,
+ 3238,
+ 3237,
+ 3252,
+ 3255,
+ 3254,
+ 3253,
+ 3271,
+ 3270,
+ 3269,
+ 3268,
+ 3275,
+ 3274,
+ 3278,
+ 3281,
+ 3280,
+ 3279,
+ 3296,
+ 3297,
+ 3305,
+ 3304,
+ 3303,
+ 3302,
+ 3312,
+ 3311,
+ 3310,
+ 3313,
+ 3323,
+ 3324,
+ 3325,
+ 3328,
+ 3327,
+ 3326,
+ 3330,
+ 3329,
+ 3332,
+ 3331,
+ 3333,
+ 3334,
+ 3343,
+ 3342,
+ 3345,
+ 3347,
+ 3346,
+ 3358,
+ 3361,
+ 3360,
+ 3359,
+ 3362,
+ 3365,
+ 3364,
+ 3363,
+ 3367,
+ 3368,
+ 3372,
+ 3371,
+ 3370,
+ 3373,
+ 3374,
+ 3376,
+ 3375,
+ 3377,
+ 3380,
+ 3379,
+ 3378,
+ 3381,
+ 3382,
+ 3387,
+ 3386,
+ 3385,
+ 3388,
+ 3391,
+ 3390,
+ 3389,
+ 3392,
+ 3396,
+ 3395,
+ 3435,
+ 3438,
+ 3437,
+ 3436,
+ 3443,
+ 3446,
+ 3445,
+ 3444,
+ 3450,
+ 3449,
+ 3452,
+ 3451,
+ 3453,
+ 3526,
+ 3525,
+ 3560,
+ 3561,
+ 3834,
+ 3835,
+ 3847,
+ 3846,
+ 3848,
+ 3853,
+ 3850,
+ 3849,
+ 3857,
+ 3854,
+ 3872,
+ 3874,
+ 3895,
+ 3894,
+ 3912,
+ 3911,
+ 3913,
+ 3924,
+ 3923,
+ 3922,
+ 3925,
+ 3927,
+ 3926,
+ 3931,
+ 3930,
+ 3929,
+ 3928,
+ 3932,
+ 3935,
+ 3934,
+ 3933,
+ 3937,
+ 3936,
+ 3938,
+ 3939,
+ 3940,
+ 3943,
+ 3942,
+ 3941,
+ 3831,
+ 3832,
+ 3944,
+ 3945,
+ 3946,
+ 3980,
+ 3979,
+ 3983,
+ 3984,
+ 4032,
+ 4049,
+ 4051,
+ 4050,
+ 4055,
+ 4059,
+ 4068,
+ 4071,
+ 4136,
+ 4137,
+ 4168,
+ 4169,
+ 4175,
+ 4174,
+ 4391,
+ 4279,
+ 4280,
+ 4396,
+ 4395,
+ 4398,
+ 4397,
+ 4399,
+ 4426,
+ 4429,
+ 4428,
+ 4427,
+ 4434,
+ 4435,
+ 4436,
+ 4438,
+ 4437,
+ 4452,
+ 4454,
+ 4453,
+ 4455,
+ 4457,
+ 4456,
+ 4486,
+ 4497,
+ 4498,
+ 5395,
+ 5396,
+ 5430,
+ 5433,
+ 5432,
+ 5431,
+ 5434,
+ 5435,
+ 5436,
+ 5437,
+ 5438,
+ 5439,
+ 5440,
+ 5441,
+ 5442,
+ 5444,
+ 5443,
+ 5445,
+ 5446,
+ 5447,
+ 5450,
+ 5454,
+ 5453,
+ 5349,
+ 5350,
+ 5457,
+ 5458,
+ 5460,
+ 5461,
+ 5462,
+ 5480,
+ 5481,
+ 5482,
+ 5522,
+ 5521,
+ 5523,
+ 5524,
+ 5530,
+ 5526,
+ 5525,
+ 5536,
+ 5547,
+ 5548,
+ 5549,
+ 5550,
+ 5551,
+ 5552,
+ 5553,
+ 5554,
+ 5556,
+ 5555,
+ 5559,
+ 5558,
+ 5561,
+ 5560,
+ 5562,
+ 5563,
+ 5565,
+ 5564,
+ 5567,
+ 5566,
+ 5569,
+ 5568,
+ 5570,
+ 5571,
+ 5599,
+ 5598,
+ 5611,
+ 5612,
+ 5484,
+ 5487,
+ 5633,
+ 5499,
+ 5500,
+ 5501,
+ 5637,
+ 5636,
+ 5641,
+ 5640,
+ 5643,
+ 5519,
+ 5651,
+ 5650,
+ 5652,
+ 5654,
+ 5653,
+ 5655,
+ 5656,
+ 5528,
+ 5529,
+ 5657,
+ 5533,
+ 5618,
+ 5619,
+ 5621,
+ 5920,
+ 5921,
+ 5932,
+ 9027,
+ 5935,
+ 5936,
+ 5937,
+ 5938,
+ 5945,
+ 5947,
+ 5973,
+ 5974,
+ 5980,
+ 5977,
+ 5978,
+ 5979,
+ 5981,
+ 5982,
+ 5983,
+ 5984,
+ 5985,
+ 5986,
+ 5987,
+ 5988,
+ 5989,
+ 5990,
+ 5995,
+ 5996,
+ 5997,
+ 5998,
+ 5999,
+ 6000,
+ 6001,
+ 6002,
+ 6015,
+ 6016,
+ 6017,
+ 6018,
+ 6034,
+ 6031,
+ 6032,
+ 6033,
+ 6037,
+ 6038,
+ 6041,
+ 6042,
+ 6043,
+ 6044,
+ 6059,
+ 6060,
+ 6068,
+ 6065,
+ 6066,
+ 6067,
+ 6075,
+ 6076,
+ 6073,
+ 6074,
+ 6086,
+ 6087,
+ 6088,
+ 6089,
+ 6090,
+ 6091,
+ 6092,
+ 6093,
+ 6095,
+ 6094,
+ 6096,
+ 6097,
+ 6108,
+ 6105,
+ 6106,
+ 6110,
+ 6109,
+ 6119,
+ 6120,
+ 6121,
+ 6122,
+ 6123,
+ 6124,
+ 6125,
+ 6126,
+ 6128,
+ 6129,
+ 6133,
+ 6134,
+ 6131,
+ 6132,
+ 6135,
+ 6136,
+ 6137,
+ 6138,
+ 6139,
+ 6140,
+ 6141,
+ 6142,
+ 6143,
+ 6148,
+ 6149,
+ 6146,
+ 6147,
+ 6152,
+ 6153,
+ 6150,
+ 6151,
+ 6156,
+ 6157,
+ 6196,
+ 6197,
+ 6198,
+ 6199,
+ 6204,
+ 6205,
+ 6206,
+ 6207,
+ 6211,
+ 6210,
+ 6212,
+ 6213,
+ 6214,
+ 6286,
+ 6287,
+ 6321,
+ 6322,
+ 6589,
+ 6590,
+ 6601,
+ 6602,
+ 6603,
+ 6604,
+ 6605,
+ 6606,
+ 6608,
+ 6607,
+ 6623,
+ 6625,
+ 6642,
+ 6643,
+ 6661,
+ 6659,
+ 6660,
+ 6672,
+ 6673,
+ 6670,
+ 6671,
+ 6674,
+ 6675,
+ 6679,
+ 6676,
+ 6677,
+ 6678,
+ 6680,
+ 6681,
+ 6682,
+ 6683,
+ 6685,
+ 6684,
+ 6686,
+ 6687,
+ 6688,
+ 6689,
+ 6690,
+ 6691,
+ 6692,
+ 6693,
+ 6694,
+ 6728,
+ 6727,
+ 6731,
+ 6732,
+ 6779,
+ 6795,
+ 6796,
+ 6797,
+ 6801,
+ 6805,
+ 6812,
+ 6815,
+ 6881,
+ 6880,
+ 6912,
+ 6913,
+ 6919,
+ 6918,
+ 7127,
+ 7131,
+ 7132,
+ 7133,
+ 7134,
+ 7135,
+ 7162,
+ 7165,
+ 7163,
+ 7164,
+ 7170,
+ 7171,
+ 7172,
+ 7173,
+ 7174,
+ 7188,
+ 7190,
+ 7189,
+ 7191,
+ 7192,
+ 7193,
+ 7222,
+ 7233,
+ 7234,
+ 8129,
+ 8130,
+ 8164,
+ 8165,
+ 8166,
+ 8167,
+ 8168,
+ 8169,
+ 8170,
+ 8171,
+ 8172,
+ 8173,
+ 8174,
+ 8175,
+ 8176,
+ 8177,
+ 8178,
+ 8179,
+ 8180,
+ 8181,
+ 8184,
+ 8187,
+ 8188,
+ 8191,
+ 8192,
+ 8194,
+ 8195,
+ 8196,
+ 8214,
+ 8215,
+ 8216,
+ 8242,
+ 8241,
+ 8243,
+ 8244,
+ 8245,
+ 8246,
+ 8247,
+ 8249,
+ 8260,
+ 8261,
+ 8262,
+ 8263,
+ 8264,
+ 8265,
+ 8266,
+ 8267,
+ 8268,
+ 8269,
+ 8270,
+ 8271,
+ 8273,
+ 8272,
+ 8274,
+ 8275,
+ 8276,
+ 8277,
+ 8279,
+ 8278,
+ 8280,
+ 8281,
+ 8282,
+ 8283,
+ 8308,
+ 8307,
+ 8316,
+ 8317,
+ 8327,
+ 8330,
+ 8331,
+ 8334,
+ 8335,
+ 8337,
+ 8344,
+ 8345,
+ 8346,
+ 8347,
+ 8348,
+ 8349,
+ 8350,
+ 8351,
+ 8727
+ ],
+ "leftShoulder": [
+ 3219,
+ 3234,
+ 3233,
+ 3236,
+ 3237,
+ 3267,
+ 3266,
+ 3265,
+ 3264,
+ 3303,
+ 3336,
+ 3339,
+ 3338,
+ 3337,
+ 3341,
+ 3340,
+ 3344,
+ 3343,
+ 3345,
+ 3346,
+ 3362,
+ 3363,
+ 3366,
+ 3367,
+ 3413,
+ 3415,
+ 3414,
+ 3875,
+ 3878,
+ 3877,
+ 3876,
+ 3880,
+ 3883,
+ 3882,
+ 3881,
+ 3930,
+ 3929,
+ 3935,
+ 3955,
+ 3954,
+ 3953,
+ 4032,
+ 4035,
+ 4034,
+ 4033,
+ 4143,
+ 4167,
+ 4174,
+ 4426,
+ 4428,
+ 4427,
+ 4430,
+ 4433,
+ 4432,
+ 4431,
+ 4436,
+ 4438,
+ 4439,
+ 4442,
+ 4441,
+ 4440,
+ 4443,
+ 4446,
+ 4445,
+ 4444,
+ 4447,
+ 4450,
+ 4449,
+ 4448,
+ 4451,
+ 4455,
+ 4459,
+ 4458,
+ 4462,
+ 4461,
+ 4460,
+ 4465,
+ 4464,
+ 4463,
+ 4466,
+ 4467,
+ 4471,
+ 4470,
+ 4469,
+ 4468,
+ 4475,
+ 4474,
+ 4473,
+ 4472,
+ 4476,
+ 4477,
+ 4479,
+ 4482,
+ 4481,
+ 4480,
+ 4491,
+ 4490,
+ 4498,
+ 4499,
+ 4502,
+ 4505,
+ 4504,
+ 4503,
+ 4509,
+ 4508,
+ 4511,
+ 4513,
+ 4512,
+ 4515,
+ 4514,
+ 4516,
+ 4517,
+ 5456,
+ 5455,
+ 5457,
+ 5462,
+ 5463,
+ 5464,
+ 5465,
+ 5466,
+ 5470,
+ 5469,
+ 5468,
+ 5467,
+ 5479,
+ 5535,
+ 5538,
+ 5537,
+ 5536,
+ 5540,
+ 5539,
+ 5541,
+ 5542,
+ 5543,
+ 5544,
+ 5545,
+ 5546,
+ 5563,
+ 5564,
+ 5566,
+ 5605,
+ 5602,
+ 5606,
+ 5607,
+ 5608,
+ 5609,
+ 5610,
+ 5624,
+ 5625,
+ 5626,
+ 5627
+ ],
+ "rightShoulder": [
+ 5982,
+ 5996,
+ 5997,
+ 5999,
+ 6000,
+ 6030,
+ 6027,
+ 6028,
+ 6029,
+ 6066,
+ 6099,
+ 6100,
+ 6101,
+ 6102,
+ 6103,
+ 6104,
+ 6107,
+ 6108,
+ 6106,
+ 6109,
+ 6123,
+ 6124,
+ 6127,
+ 6128,
+ 6174,
+ 6175,
+ 6176,
+ 6626,
+ 6627,
+ 6628,
+ 6629,
+ 6630,
+ 6631,
+ 6632,
+ 6633,
+ 6677,
+ 6678,
+ 6683,
+ 6703,
+ 6701,
+ 6702,
+ 6779,
+ 6780,
+ 6781,
+ 6782,
+ 6887,
+ 6911,
+ 6918,
+ 7162,
+ 7163,
+ 7164,
+ 7166,
+ 7167,
+ 7168,
+ 7169,
+ 7172,
+ 7174,
+ 7175,
+ 7176,
+ 7177,
+ 7178,
+ 7179,
+ 7180,
+ 7181,
+ 7182,
+ 7183,
+ 7184,
+ 7185,
+ 7186,
+ 7187,
+ 7191,
+ 7195,
+ 7194,
+ 7196,
+ 7197,
+ 7198,
+ 7201,
+ 7202,
+ 7199,
+ 7200,
+ 7203,
+ 7207,
+ 7204,
+ 7205,
+ 7206,
+ 7211,
+ 7208,
+ 7209,
+ 7210,
+ 7212,
+ 7213,
+ 7215,
+ 7216,
+ 7217,
+ 7218,
+ 7226,
+ 7227,
+ 7234,
+ 7235,
+ 7238,
+ 7239,
+ 7240,
+ 7241,
+ 7245,
+ 7244,
+ 7247,
+ 7248,
+ 7249,
+ 7250,
+ 7251,
+ 7252,
+ 7253,
+ 8189,
+ 8190,
+ 8191,
+ 8196,
+ 8197,
+ 8198,
+ 8199,
+ 8200,
+ 8204,
+ 8201,
+ 8202,
+ 8203,
+ 8213,
+ 8248,
+ 8249,
+ 8250,
+ 8251,
+ 8253,
+ 8252,
+ 8254,
+ 8255,
+ 8256,
+ 8257,
+ 8258,
+ 8259,
+ 8275,
+ 8276,
+ 8278,
+ 8310,
+ 8309,
+ 8311,
+ 8312,
+ 8313,
+ 8314,
+ 8315,
+ 8318,
+ 8319,
+ 8320,
+ 8321
+ ],
+ "rightFoot": [
+ 8575,
+ 8576,
+ 8577,
+ 8578,
+ 8579,
+ 8580,
+ 8581,
+ 8582,
+ 8583,
+ 8584,
+ 8585,
+ 8586,
+ 8587,
+ 8588,
+ 8589,
+ 8590,
+ 8591,
+ 8592,
+ 8593,
+ 8594,
+ 8595,
+ 8596,
+ 8597,
+ 8598,
+ 8599,
+ 8600,
+ 8601,
+ 8602,
+ 8603,
+ 8604,
+ 8605,
+ 8606,
+ 8607,
+ 8608,
+ 8609,
+ 8610,
+ 8611,
+ 8612,
+ 8613,
+ 8614,
+ 8615,
+ 8616,
+ 8617,
+ 8618,
+ 8619,
+ 8620,
+ 8621,
+ 8622,
+ 8623,
+ 8624,
+ 8625,
+ 8626,
+ 8627,
+ 8628,
+ 8629,
+ 8633,
+ 8630,
+ 8631,
+ 8632,
+ 8634,
+ 8635,
+ 8636,
+ 8637,
+ 8638,
+ 8639,
+ 8640,
+ 8641,
+ 8642,
+ 8643,
+ 8644,
+ 8645,
+ 8646,
+ 8647,
+ 8648,
+ 8649,
+ 8650,
+ 8651,
+ 8652,
+ 8653,
+ 8654,
+ 8655,
+ 8656,
+ 8657,
+ 8658,
+ 8659,
+ 8660,
+ 8661,
+ 8662,
+ 8663,
+ 8664,
+ 8665,
+ 8666,
+ 8667,
+ 8668,
+ 8669,
+ 8670,
+ 8671,
+ 8672,
+ 8673,
+ 8674,
+ 8675,
+ 8676,
+ 8677,
+ 8678,
+ 8679,
+ 8680,
+ 8681,
+ 8682,
+ 8683,
+ 8684,
+ 8685,
+ 8686,
+ 8687,
+ 8688,
+ 8689,
+ 8690,
+ 8691,
+ 8692,
+ 8693,
+ 8694,
+ 8695,
+ 8696,
+ 8697,
+ 8698,
+ 8699,
+ 8700,
+ 8701,
+ 8702,
+ 8703,
+ 8704,
+ 8705,
+ 8706,
+ 8707,
+ 8708,
+ 8709,
+ 8710,
+ 8711,
+ 8712,
+ 8713,
+ 8714,
+ 8715,
+ 8716,
+ 8717
+ ],
+ "rightArm": [
+ 6019,
+ 6020,
+ 6021,
+ 6022,
+ 6030,
+ 6029,
+ 6075,
+ 6074,
+ 6110,
+ 6111,
+ 6112,
+ 6109,
+ 6162,
+ 6163,
+ 6164,
+ 6165,
+ 6168,
+ 6169,
+ 6166,
+ 6167,
+ 6170,
+ 6171,
+ 6172,
+ 6173,
+ 6180,
+ 6177,
+ 6178,
+ 6179,
+ 6182,
+ 6181,
+ 6183,
+ 6184,
+ 6185,
+ 6186,
+ 6619,
+ 6620,
+ 6621,
+ 6622,
+ 6646,
+ 6647,
+ 6648,
+ 6649,
+ 6660,
+ 6668,
+ 6669,
+ 6696,
+ 6695,
+ 6699,
+ 6700,
+ 6724,
+ 6721,
+ 6722,
+ 6723,
+ 6737,
+ 6738,
+ 6735,
+ 6736,
+ 6754,
+ 6755,
+ 6756,
+ 6757,
+ 6758,
+ 6759,
+ 6760,
+ 6761,
+ 6762,
+ 6763,
+ 6764,
+ 6765,
+ 6766,
+ 6767,
+ 6768,
+ 6769,
+ 6770,
+ 6771,
+ 6772,
+ 6773,
+ 6774,
+ 6775,
+ 6776,
+ 6777,
+ 6778,
+ 6781,
+ 6782,
+ 6783,
+ 6784,
+ 6785,
+ 6786,
+ 6787,
+ 6788,
+ 6789,
+ 6790,
+ 6791,
+ 6792,
+ 6793,
+ 6794,
+ 6806,
+ 6807,
+ 6811,
+ 6808,
+ 6809,
+ 6810,
+ 6816,
+ 6817,
+ 6818,
+ 6819,
+ 6823,
+ 6820,
+ 6821,
+ 6822,
+ 6879,
+ 6882,
+ 6883,
+ 6884,
+ 6885,
+ 6886,
+ 6887,
+ 6914,
+ 6915,
+ 6916,
+ 6917,
+ 6918,
+ 6993,
+ 6994,
+ 6995,
+ 6996,
+ 7005,
+ 7006,
+ 7007,
+ 7008,
+ 7012,
+ 7009,
+ 7010,
+ 7011,
+ 7013,
+ 7014,
+ 7015,
+ 7016,
+ 7019,
+ 7020,
+ 7021,
+ 7022,
+ 7023,
+ 7024,
+ 7025,
+ 7026,
+ 7027,
+ 7028,
+ 7029,
+ 7030,
+ 7031,
+ 7032,
+ 7035,
+ 7036,
+ 7039,
+ 7040,
+ 7041,
+ 7042,
+ 7043,
+ 7044,
+ 7045,
+ 7046,
+ 7047,
+ 7048,
+ 7049,
+ 7050,
+ 7051,
+ 7052,
+ 7054,
+ 7053,
+ 7056,
+ 7055,
+ 7057,
+ 7058,
+ 7070,
+ 7071,
+ 7072,
+ 7077,
+ 7078,
+ 7079,
+ 7080,
+ 7082,
+ 7081,
+ 7086,
+ 7083,
+ 7084,
+ 7085,
+ 7087,
+ 7089,
+ 7088,
+ 7090,
+ 7091,
+ 7092,
+ 7093,
+ 7094,
+ 7099,
+ 7105,
+ 7106,
+ 7107,
+ 7108,
+ 7109,
+ 7111,
+ 7113,
+ 7114,
+ 7119,
+ 7120,
+ 7121,
+ 7122,
+ 7123,
+ 7125,
+ 7134,
+ 7185,
+ 7186,
+ 7196,
+ 7201,
+ 7200,
+ 7207,
+ 7206,
+ 7211,
+ 7210,
+ 7212,
+ 7214,
+ 7219,
+ 7220,
+ 7221,
+ 7223,
+ 7224,
+ 7225,
+ 7228,
+ 7229,
+ 7232,
+ 7230,
+ 7231,
+ 7236,
+ 7237,
+ 7242,
+ 7243,
+ 7246,
+ 7254,
+ 7256,
+ 7257,
+ 7255,
+ 7258,
+ 7259,
+ 8131,
+ 8132,
+ 8133,
+ 8134,
+ 8205,
+ 8207,
+ 8206,
+ 8208,
+ 8209,
+ 8210,
+ 8211,
+ 8212,
+ 8213,
+ 8255,
+ 8256,
+ 8286,
+ 8287,
+ 8284,
+ 8285,
+ 8288,
+ 8290,
+ 8291,
+ 8289,
+ 8292,
+ 8293,
+ 8294,
+ 8297,
+ 8295,
+ 8296,
+ 8298,
+ 8299,
+ 8300,
+ 8301,
+ 8302,
+ 8303,
+ 8304,
+ 8305,
+ 8306,
+ 8312,
+ 8322
+ ],
+ "leftHandIndex1": [
+ 4643,
+ 4642,
+ 4641,
+ 4644,
+ 4653,
+ 4652,
+ 4651,
+ 4654,
+ 4669,
+ 4682,
+ 4681,
+ 4739,
+ 4738,
+ 4737,
+ 4740,
+ 4743,
+ 4742,
+ 4741,
+ 4744,
+ 4745,
+ 4759,
+ 4760,
+ 4768,
+ 4767,
+ 4766,
+ 4772,
+ 4771,
+ 4770,
+ 4773,
+ 4776,
+ 4775,
+ 4774,
+ 4777,
+ 4778,
+ 4779,
+ 4782,
+ 4781,
+ 4780,
+ 4783,
+ 4792,
+ 4791,
+ 4793,
+ 4795,
+ 4800,
+ 4801,
+ 4802,
+ 4805,
+ 4819,
+ 4818,
+ 4831,
+ 4830,
+ 4829,
+ 4832,
+ 4833,
+ 4834,
+ 4847,
+ 4846,
+ 4859,
+ 4861,
+ 4860,
+ 4872,
+ 4874,
+ 4875,
+ 4876,
+ 4877,
+ 4883,
+ 4884,
+ 4887,
+ 4886,
+ 4888,
+ 4891,
+ 4890,
+ 4895,
+ 4894,
+ 4896,
+ 4897,
+ 4906,
+ 4905,
+ 4907,
+ 4908,
+ 4910,
+ 4909,
+ 4911,
+ 4912,
+ 4913,
+ 4914,
+ 4915,
+ 4916,
+ 4917,
+ 4918,
+ 4921,
+ 4920,
+ 4919,
+ 4922,
+ 4923,
+ 4924,
+ 4926,
+ 4925,
+ 4928,
+ 4927,
+ 4929,
+ 4930,
+ 4931,
+ 4934,
+ 4933,
+ 4932,
+ 4935,
+ 4936,
+ 4937,
+ 4938,
+ 4939,
+ 4941,
+ 4940,
+ 4942,
+ 4944,
+ 4943,
+ 4946,
+ 4945,
+ 4947,
+ 4948,
+ 4949,
+ 4950,
+ 4951,
+ 4952,
+ 4953,
+ 4954,
+ 4955,
+ 4956,
+ 4957,
+ 4958,
+ 4959,
+ 4960,
+ 4961,
+ 4962,
+ 4964,
+ 4963,
+ 4965,
+ 4966,
+ 4967,
+ 4970,
+ 4969,
+ 4968,
+ 4973,
+ 4972,
+ 4971,
+ 4974,
+ 4977,
+ 4976,
+ 4975,
+ 4978,
+ 4980,
+ 4979,
+ 4983,
+ 4982,
+ 4981,
+ 4984,
+ 4986,
+ 4985,
+ 4987,
+ 4988,
+ 4991,
+ 4990,
+ 4989,
+ 4992,
+ 4994,
+ 4993,
+ 4995,
+ 4998,
+ 4997,
+ 4996,
+ 4999,
+ 5000,
+ 5001,
+ 5002,
+ 5004,
+ 5003,
+ 5007,
+ 5006,
+ 5005,
+ 5008,
+ 5009,
+ 5010,
+ 5012,
+ 5011,
+ 5013,
+ 5014,
+ 5016,
+ 5015,
+ 5018,
+ 5017,
+ 5019,
+ 5020,
+ 5022,
+ 5021,
+ 5023,
+ 5024,
+ 5025,
+ 5026,
+ 5027,
+ 5028,
+ 5029,
+ 5030,
+ 5033,
+ 5032,
+ 5031,
+ 5034,
+ 5035,
+ 5036,
+ 5038,
+ 5037,
+ 5040,
+ 5039,
+ 5041,
+ 5042,
+ 5043,
+ 5044,
+ 5045,
+ 5046,
+ 5047,
+ 5048,
+ 5049,
+ 5051,
+ 5050,
+ 5052,
+ 5054,
+ 5053,
+ 5056,
+ 5055,
+ 5057,
+ 5059,
+ 5058,
+ 5060,
+ 5061,
+ 5062,
+ 5063,
+ 5064,
+ 5065,
+ 5066,
+ 5067,
+ 5068,
+ 5069,
+ 5070,
+ 5071,
+ 5072,
+ 5073,
+ 5074,
+ 5076,
+ 5075,
+ 5077,
+ 5078,
+ 5079,
+ 5082,
+ 5081,
+ 5080,
+ 5085,
+ 5084,
+ 5083,
+ 5086,
+ 5089,
+ 5088,
+ 5087,
+ 5090,
+ 5092,
+ 5091,
+ 5095,
+ 5094,
+ 5093,
+ 5096,
+ 5097,
+ 5098,
+ 5101,
+ 5100,
+ 5099,
+ 5102,
+ 5103,
+ 5104,
+ 5105,
+ 5108,
+ 5107,
+ 5106,
+ 5109,
+ 5110,
+ 5111,
+ 5112,
+ 5114,
+ 5113,
+ 5117,
+ 5116,
+ 5115,
+ 5118,
+ 5119,
+ 5120,
+ 5122,
+ 5121,
+ 5123,
+ 5124,
+ 5125,
+ 5127,
+ 5126,
+ 5129,
+ 5128,
+ 5130,
+ 5131,
+ 5133,
+ 5132,
+ 5134,
+ 5135,
+ 5136,
+ 5137,
+ 5138,
+ 5139,
+ 5140,
+ 5141,
+ 5144,
+ 5143,
+ 5142,
+ 5145,
+ 5146,
+ 5147,
+ 5149,
+ 5148,
+ 5151,
+ 5150,
+ 5152,
+ 5153,
+ 5154,
+ 5155,
+ 5156,
+ 5157,
+ 5158,
+ 5159,
+ 5160,
+ 5162,
+ 5161,
+ 5163,
+ 5165,
+ 5164,
+ 5167,
+ 5166,
+ 5168,
+ 5170,
+ 5169,
+ 5171,
+ 5172,
+ 5173,
+ 5174,
+ 5175,
+ 5176,
+ 5177,
+ 5178,
+ 5179,
+ 5180,
+ 5181,
+ 5182,
+ 5183,
+ 5184,
+ 5185,
+ 5187,
+ 5186,
+ 5188,
+ 5189,
+ 5190,
+ 5193,
+ 5192,
+ 5191,
+ 5194,
+ 5197,
+ 5196,
+ 5195,
+ 5198,
+ 5201,
+ 5200,
+ 5199,
+ 5202,
+ 5204,
+ 5203,
+ 5207,
+ 5206,
+ 5205,
+ 5208,
+ 5210,
+ 5209,
+ 5213,
+ 5214,
+ 5217,
+ 5216,
+ 5215,
+ 5218,
+ 5220,
+ 5219,
+ 5223,
+ 5226,
+ 5225,
+ 5224,
+ 5227,
+ 5228,
+ 5229,
+ 5230,
+ 5232,
+ 5231,
+ 5235,
+ 5234,
+ 5233,
+ 5236,
+ 5237,
+ 5238,
+ 5240,
+ 5239,
+ 5241,
+ 5242,
+ 5244,
+ 5243,
+ 5246,
+ 5245,
+ 5247,
+ 5248,
+ 5250,
+ 5249,
+ 5251,
+ 5252,
+ 5253,
+ 5254,
+ 5255,
+ 5256,
+ 5257,
+ 5258,
+ 5261,
+ 5260,
+ 5259,
+ 5262,
+ 5263,
+ 5264,
+ 5266,
+ 5265,
+ 5268,
+ 5267,
+ 5269,
+ 5270,
+ 5271,
+ 5272,
+ 5273,
+ 5274,
+ 5275,
+ 5276,
+ 5277,
+ 5279,
+ 5278,
+ 5280,
+ 5282,
+ 5281,
+ 5284,
+ 5283,
+ 5285,
+ 5287,
+ 5286,
+ 5288,
+ 5289,
+ 5290,
+ 5291,
+ 5292,
+ 5293,
+ 5294,
+ 5295,
+ 5296,
+ 5297,
+ 5298,
+ 5299,
+ 5300,
+ 5301,
+ 5302,
+ 5304,
+ 5303,
+ 5305,
+ 5306,
+ 5307,
+ 5310,
+ 5309,
+ 5308
+ ],
+ "rightLeg": [
+ 6386,
+ 6387,
+ 6390,
+ 6391,
+ 6396,
+ 6397,
+ 6398,
+ 6400,
+ 6403,
+ 6404,
+ 6405,
+ 6410,
+ 6411,
+ 6437,
+ 6436,
+ 6438,
+ 6439,
+ 6440,
+ 6441,
+ 6442,
+ 6443,
+ 6444,
+ 6445,
+ 6446,
+ 6447,
+ 6448,
+ 6449,
+ 6450,
+ 6451,
+ 6452,
+ 6453,
+ 6454,
+ 6455,
+ 6456,
+ 6457,
+ 6460,
+ 6458,
+ 6459,
+ 6461,
+ 6462,
+ 6463,
+ 6464,
+ 6465,
+ 6466,
+ 6467,
+ 6468,
+ 6469,
+ 6470,
+ 6471,
+ 6472,
+ 6473,
+ 6474,
+ 6475,
+ 6476,
+ 6477,
+ 6478,
+ 6479,
+ 6480,
+ 6484,
+ 6481,
+ 6482,
+ 6483,
+ 6485,
+ 6486,
+ 6487,
+ 6488,
+ 6492,
+ 6489,
+ 6490,
+ 6491,
+ 6494,
+ 6493,
+ 6495,
+ 6496,
+ 6497,
+ 6498,
+ 6499,
+ 6500,
+ 6501,
+ 6502,
+ 6503,
+ 6504,
+ 6505,
+ 6506,
+ 6507,
+ 6508,
+ 6509,
+ 6510,
+ 6511,
+ 6512,
+ 6513,
+ 6514,
+ 6518,
+ 6515,
+ 6516,
+ 6517,
+ 6519,
+ 6520,
+ 6521,
+ 6522,
+ 6523,
+ 6524,
+ 6525,
+ 6526,
+ 6527,
+ 6539,
+ 6540,
+ 6541,
+ 6542,
+ 6543,
+ 6544,
+ 6545,
+ 6546,
+ 6547,
+ 6548,
+ 6549,
+ 6566,
+ 6567,
+ 6568,
+ 6569,
+ 6570,
+ 6571,
+ 6574,
+ 6572,
+ 6573,
+ 6747,
+ 6748,
+ 6749,
+ 6750,
+ 6751,
+ 6752,
+ 6753,
+ 6842,
+ 6843,
+ 6844,
+ 6845,
+ 6846,
+ 6847,
+ 6848,
+ 6849,
+ 6850,
+ 6852,
+ 6851,
+ 6898,
+ 6899,
+ 6900,
+ 6901,
+ 6902,
+ 6903,
+ 6904,
+ 6905,
+ 6906,
+ 6908,
+ 6907,
+ 8422,
+ 8423,
+ 8424,
+ 8425,
+ 8426,
+ 8427,
+ 8428,
+ 8429,
+ 8430,
+ 8431,
+ 8432,
+ 8436,
+ 8433,
+ 8434,
+ 8435,
+ 8437,
+ 8438,
+ 8439,
+ 8440,
+ 8441,
+ 8442,
+ 8443,
+ 8444,
+ 8445,
+ 8446,
+ 8447,
+ 8448,
+ 8449,
+ 8450,
+ 8451,
+ 8452,
+ 8453,
+ 8454,
+ 8455,
+ 8456,
+ 8457,
+ 8458,
+ 8567,
+ 8568,
+ 8569,
+ 8570,
+ 8571,
+ 8572,
+ 8573,
+ 8574,
+ 8575,
+ 8576,
+ 8577,
+ 8578,
+ 8579,
+ 8580,
+ 8581,
+ 8582,
+ 8583,
+ 8680,
+ 8681,
+ 8682,
+ 8683,
+ 8684,
+ 8717,
+ 8718,
+ 8719,
+ 8720
+ ],
+ "rightHandIndex1": [
+ 7379,
+ 7380,
+ 7377,
+ 7378,
+ 7389,
+ 7390,
+ 7387,
+ 7388,
+ 7405,
+ 7418,
+ 7417,
+ 7475,
+ 7476,
+ 7473,
+ 7474,
+ 7479,
+ 7480,
+ 7477,
+ 7478,
+ 7481,
+ 7496,
+ 7495,
+ 7504,
+ 7502,
+ 7503,
+ 7508,
+ 7509,
+ 7506,
+ 7507,
+ 7512,
+ 7513,
+ 7510,
+ 7511,
+ 7514,
+ 7515,
+ 7518,
+ 7519,
+ 7516,
+ 7517,
+ 7528,
+ 7529,
+ 7527,
+ 7531,
+ 7536,
+ 7537,
+ 7541,
+ 7538,
+ 7555,
+ 7554,
+ 7567,
+ 7568,
+ 7565,
+ 7566,
+ 7569,
+ 7570,
+ 7582,
+ 7583,
+ 7595,
+ 7596,
+ 7597,
+ 7608,
+ 7610,
+ 7611,
+ 7613,
+ 7612,
+ 7619,
+ 7620,
+ 7622,
+ 7623,
+ 7624,
+ 7626,
+ 7627,
+ 7631,
+ 7630,
+ 7632,
+ 7633,
+ 7643,
+ 7641,
+ 7642,
+ 7644,
+ 7645,
+ 7646,
+ 7647,
+ 7648,
+ 7649,
+ 7650,
+ 7651,
+ 7652,
+ 7653,
+ 7654,
+ 7657,
+ 7658,
+ 7655,
+ 7656,
+ 7660,
+ 7659,
+ 7661,
+ 7662,
+ 7665,
+ 7663,
+ 7664,
+ 7666,
+ 7667,
+ 7670,
+ 7671,
+ 7668,
+ 7669,
+ 7672,
+ 7673,
+ 7674,
+ 7675,
+ 7677,
+ 7676,
+ 7678,
+ 7680,
+ 7679,
+ 7681,
+ 7682,
+ 7683,
+ 7684,
+ 7685,
+ 7686,
+ 7687,
+ 7688,
+ 7690,
+ 7689,
+ 7691,
+ 7692,
+ 7693,
+ 7694,
+ 7695,
+ 7696,
+ 7697,
+ 7698,
+ 7700,
+ 7699,
+ 7701,
+ 7702,
+ 7703,
+ 7706,
+ 7704,
+ 7705,
+ 7709,
+ 7710,
+ 7707,
+ 7708,
+ 7713,
+ 7714,
+ 7711,
+ 7712,
+ 7716,
+ 7715,
+ 7719,
+ 7720,
+ 7717,
+ 7718,
+ 7721,
+ 7722,
+ 7724,
+ 7723,
+ 7727,
+ 7728,
+ 7725,
+ 7726,
+ 7729,
+ 7730,
+ 7731,
+ 7734,
+ 7735,
+ 7732,
+ 7733,
+ 7736,
+ 7737,
+ 7738,
+ 7740,
+ 7739,
+ 7743,
+ 7744,
+ 7741,
+ 7742,
+ 7745,
+ 7746,
+ 7747,
+ 7748,
+ 7749,
+ 7750,
+ 7751,
+ 7752,
+ 7754,
+ 7753,
+ 7755,
+ 7756,
+ 7757,
+ 7758,
+ 7759,
+ 7760,
+ 7761,
+ 7762,
+ 7763,
+ 7764,
+ 7765,
+ 7766,
+ 7769,
+ 7770,
+ 7767,
+ 7768,
+ 7772,
+ 7771,
+ 7773,
+ 7774,
+ 7777,
+ 7775,
+ 7776,
+ 7778,
+ 7780,
+ 7779,
+ 7781,
+ 7782,
+ 7783,
+ 7784,
+ 7785,
+ 7787,
+ 7786,
+ 7788,
+ 7790,
+ 7789,
+ 7791,
+ 7792,
+ 7793,
+ 7794,
+ 7795,
+ 7796,
+ 7797,
+ 7798,
+ 7799,
+ 7800,
+ 7802,
+ 7801,
+ 7803,
+ 7804,
+ 7805,
+ 7806,
+ 7807,
+ 7808,
+ 7809,
+ 7810,
+ 7812,
+ 7811,
+ 7813,
+ 7814,
+ 7815,
+ 7818,
+ 7816,
+ 7817,
+ 7821,
+ 7822,
+ 7819,
+ 7820,
+ 7825,
+ 7826,
+ 7823,
+ 7824,
+ 7828,
+ 7827,
+ 7831,
+ 7832,
+ 7829,
+ 7830,
+ 7834,
+ 7833,
+ 7837,
+ 7838,
+ 7835,
+ 7836,
+ 7840,
+ 7839,
+ 7841,
+ 7844,
+ 7845,
+ 7842,
+ 7843,
+ 7846,
+ 7847,
+ 7848,
+ 7850,
+ 7849,
+ 7853,
+ 7854,
+ 7851,
+ 7852,
+ 7855,
+ 7856,
+ 7857,
+ 7858,
+ 7859,
+ 7860,
+ 7861,
+ 7862,
+ 7863,
+ 7865,
+ 7864,
+ 7866,
+ 7867,
+ 7868,
+ 7869,
+ 7870,
+ 7871,
+ 7872,
+ 7873,
+ 7874,
+ 7875,
+ 7876,
+ 7877,
+ 7880,
+ 7881,
+ 7878,
+ 7879,
+ 7883,
+ 7882,
+ 7884,
+ 7885,
+ 7888,
+ 7886,
+ 7887,
+ 7889,
+ 7891,
+ 7890,
+ 7892,
+ 7893,
+ 7894,
+ 7895,
+ 7896,
+ 7898,
+ 7897,
+ 7899,
+ 7901,
+ 7900,
+ 7902,
+ 7903,
+ 7904,
+ 7905,
+ 7906,
+ 7907,
+ 7908,
+ 7909,
+ 7910,
+ 7911,
+ 7913,
+ 7912,
+ 7914,
+ 7915,
+ 7916,
+ 7917,
+ 7918,
+ 7919,
+ 7920,
+ 7921,
+ 7923,
+ 7922,
+ 7924,
+ 7925,
+ 7926,
+ 7929,
+ 7927,
+ 7928,
+ 7930,
+ 7933,
+ 7934,
+ 7931,
+ 7932,
+ 7937,
+ 7938,
+ 7935,
+ 7936,
+ 7940,
+ 7939,
+ 7943,
+ 7944,
+ 7941,
+ 7942,
+ 7945,
+ 7946,
+ 7950,
+ 7949,
+ 7953,
+ 7954,
+ 7951,
+ 7952,
+ 7955,
+ 7956,
+ 7959,
+ 7962,
+ 7963,
+ 7960,
+ 7961,
+ 7964,
+ 7965,
+ 7966,
+ 7968,
+ 7967,
+ 7971,
+ 7972,
+ 7969,
+ 7970,
+ 7973,
+ 7974,
+ 7975,
+ 7976,
+ 7977,
+ 7978,
+ 7979,
+ 7980,
+ 7982,
+ 7981,
+ 7983,
+ 7984,
+ 7985,
+ 7986,
+ 7987,
+ 7988,
+ 7989,
+ 7990,
+ 7991,
+ 7992,
+ 7993,
+ 7994,
+ 7997,
+ 7998,
+ 7995,
+ 7996,
+ 8000,
+ 7999,
+ 8001,
+ 8002,
+ 8005,
+ 8003,
+ 8004,
+ 8006,
+ 8008,
+ 8007,
+ 8009,
+ 8010,
+ 8011,
+ 8012,
+ 8013,
+ 8015,
+ 8014,
+ 8016,
+ 8018,
+ 8017,
+ 8019,
+ 8020,
+ 8021,
+ 8022,
+ 8023,
+ 8024,
+ 8025,
+ 8026,
+ 8027,
+ 8028,
+ 8030,
+ 8029,
+ 8031,
+ 8032,
+ 8033,
+ 8034,
+ 8035,
+ 8036,
+ 8037,
+ 8038,
+ 8040,
+ 8039,
+ 8041,
+ 8042,
+ 8043,
+ 8046,
+ 8044,
+ 8045
+ ],
+ "leftForeArm": [
+ 4176,
+ 4179,
+ 4178,
+ 4177,
+ 4180,
+ 4181,
+ 4182,
+ 4185,
+ 4184,
+ 4183,
+ 4186,
+ 4189,
+ 4188,
+ 4187,
+ 4190,
+ 4193,
+ 4192,
+ 4191,
+ 4194,
+ 4197,
+ 4196,
+ 4195,
+ 4198,
+ 4201,
+ 4200,
+ 4199,
+ 4202,
+ 4205,
+ 4204,
+ 4203,
+ 4207,
+ 4206,
+ 4208,
+ 4211,
+ 4210,
+ 4209,
+ 4212,
+ 4215,
+ 4214,
+ 4213,
+ 4216,
+ 4218,
+ 4217,
+ 4219,
+ 4222,
+ 4221,
+ 4220,
+ 4223,
+ 4226,
+ 4225,
+ 4224,
+ 4227,
+ 4228,
+ 4229,
+ 4232,
+ 4231,
+ 4230,
+ 4233,
+ 4236,
+ 4235,
+ 4234,
+ 4238,
+ 4237,
+ 4239,
+ 4242,
+ 4241,
+ 4240,
+ 4243,
+ 4246,
+ 4245,
+ 4244,
+ 4247,
+ 4248,
+ 4252,
+ 4251,
+ 4253,
+ 4256,
+ 4255,
+ 4254,
+ 4257,
+ 4260,
+ 4259,
+ 4258,
+ 4273,
+ 4274,
+ 4278,
+ 4277,
+ 4284,
+ 4283,
+ 4288,
+ 4287,
+ 4293,
+ 4290,
+ 4289,
+ 4294,
+ 4296,
+ 4295,
+ 4299,
+ 4301,
+ 4300,
+ 4302,
+ 4323,
+ 4326,
+ 4325,
+ 4324,
+ 4328,
+ 4327,
+ 4330,
+ 4329,
+ 4331,
+ 4332,
+ 4333,
+ 4340,
+ 4339,
+ 4338,
+ 4337,
+ 4359,
+ 4360,
+ 4361,
+ 4362,
+ 4363,
+ 4364,
+ 4365,
+ 4366,
+ 4367,
+ 4368,
+ 4371,
+ 4374,
+ 4376,
+ 4379,
+ 4380,
+ 4381,
+ 4382,
+ 4388,
+ 4390,
+ 4518,
+ 4523,
+ 4524,
+ 4525,
+ 4527,
+ 4526,
+ 4528,
+ 4529,
+ 4530,
+ 4531,
+ 4532,
+ 4535,
+ 4534,
+ 4533,
+ 4538,
+ 4537,
+ 4536,
+ 4540,
+ 4539,
+ 4541,
+ 4544,
+ 4543,
+ 4542,
+ 4548,
+ 4547,
+ 4546,
+ 4545,
+ 4549,
+ 4552,
+ 4551,
+ 4550,
+ 4553,
+ 4556,
+ 4555,
+ 4554,
+ 4557,
+ 4559,
+ 4558,
+ 4562,
+ 4561,
+ 4560,
+ 4566,
+ 4565,
+ 4564,
+ 4563,
+ 4567,
+ 4569,
+ 4568,
+ 4570,
+ 4571,
+ 4572,
+ 4573,
+ 4574,
+ 4577,
+ 4576,
+ 4575,
+ 4578,
+ 4580,
+ 4579,
+ 4581,
+ 4582,
+ 4583,
+ 4584,
+ 4585,
+ 4586,
+ 4589,
+ 4588,
+ 4587,
+ 4590,
+ 4592,
+ 4591,
+ 4593,
+ 4594,
+ 4632,
+ 4674,
+ 4673,
+ 4686,
+ 4703,
+ 4712,
+ 4713,
+ 4714,
+ 4715,
+ 4716,
+ 4717,
+ 4718,
+ 4719,
+ 4721,
+ 4720,
+ 4722,
+ 4725,
+ 4724,
+ 4723,
+ 4726,
+ 4761,
+ 4762,
+ 4821,
+ 4820,
+ 4823,
+ 4822,
+ 4842,
+ 4844,
+ 4849,
+ 4848,
+ 4855,
+ 4856,
+ 4857,
+ 4858,
+ 4893,
+ 4900,
+ 5451,
+ 5452
+ ],
+ "rightForeArm": [
+ 6920,
+ 6921,
+ 6922,
+ 6923,
+ 6924,
+ 6925,
+ 6926,
+ 6927,
+ 6928,
+ 6929,
+ 6930,
+ 6931,
+ 6932,
+ 6933,
+ 6934,
+ 6935,
+ 6936,
+ 6937,
+ 6938,
+ 6939,
+ 6940,
+ 6941,
+ 6942,
+ 6943,
+ 6944,
+ 6945,
+ 6946,
+ 6947,
+ 6948,
+ 6949,
+ 6950,
+ 6951,
+ 6952,
+ 6953,
+ 6954,
+ 6955,
+ 6956,
+ 6957,
+ 6958,
+ 6959,
+ 6960,
+ 6961,
+ 6962,
+ 6963,
+ 6964,
+ 6965,
+ 6966,
+ 6967,
+ 6968,
+ 6969,
+ 6970,
+ 6971,
+ 6972,
+ 6973,
+ 6974,
+ 6975,
+ 6976,
+ 6977,
+ 6978,
+ 6979,
+ 6980,
+ 6981,
+ 6982,
+ 6983,
+ 6984,
+ 6985,
+ 6986,
+ 6987,
+ 6988,
+ 6989,
+ 6990,
+ 6991,
+ 6992,
+ 6995,
+ 6996,
+ 6997,
+ 6998,
+ 6999,
+ 7000,
+ 7001,
+ 7002,
+ 7003,
+ 7004,
+ 7017,
+ 7018,
+ 7021,
+ 7022,
+ 7025,
+ 7026,
+ 7029,
+ 7030,
+ 7033,
+ 7034,
+ 7031,
+ 7032,
+ 7035,
+ 7036,
+ 7037,
+ 7038,
+ 7039,
+ 7040,
+ 7059,
+ 7060,
+ 7061,
+ 7062,
+ 7063,
+ 7064,
+ 7065,
+ 7066,
+ 7067,
+ 7068,
+ 7069,
+ 7076,
+ 7073,
+ 7074,
+ 7075,
+ 7095,
+ 7096,
+ 7097,
+ 7098,
+ 7099,
+ 7100,
+ 7101,
+ 7102,
+ 7103,
+ 7104,
+ 7107,
+ 7110,
+ 7112,
+ 7115,
+ 7116,
+ 7117,
+ 7118,
+ 7124,
+ 7126,
+ 7254,
+ 7259,
+ 7260,
+ 7261,
+ 7262,
+ 7263,
+ 7264,
+ 7265,
+ 7266,
+ 7267,
+ 7268,
+ 7269,
+ 7270,
+ 7271,
+ 7274,
+ 7272,
+ 7273,
+ 7275,
+ 7276,
+ 7277,
+ 7278,
+ 7279,
+ 7280,
+ 7284,
+ 7281,
+ 7282,
+ 7283,
+ 7285,
+ 7286,
+ 7287,
+ 7288,
+ 7289,
+ 7290,
+ 7291,
+ 7292,
+ 7293,
+ 7294,
+ 7295,
+ 7296,
+ 7297,
+ 7298,
+ 7302,
+ 7299,
+ 7300,
+ 7301,
+ 7303,
+ 7304,
+ 7305,
+ 7306,
+ 7307,
+ 7308,
+ 7309,
+ 7310,
+ 7311,
+ 7312,
+ 7313,
+ 7314,
+ 7315,
+ 7316,
+ 7317,
+ 7318,
+ 7319,
+ 7320,
+ 7321,
+ 7322,
+ 7323,
+ 7324,
+ 7325,
+ 7326,
+ 7327,
+ 7328,
+ 7329,
+ 7330,
+ 7368,
+ 7409,
+ 7410,
+ 7422,
+ 7439,
+ 7449,
+ 7448,
+ 7450,
+ 7451,
+ 7453,
+ 7452,
+ 7454,
+ 7455,
+ 7457,
+ 7458,
+ 7456,
+ 7461,
+ 7459,
+ 7460,
+ 7462,
+ 7497,
+ 7498,
+ 7556,
+ 7557,
+ 7559,
+ 7558,
+ 7578,
+ 7580,
+ 7585,
+ 7584,
+ 7591,
+ 7592,
+ 7593,
+ 7594,
+ 7629,
+ 7636,
+ 8185,
+ 8186
+ ],
+ "neck": [
+ 12,
+ 13,
+ 14,
+ 15,
+ 219,
+ 220,
+ 221,
+ 222,
+ 372,
+ 373,
+ 374,
+ 375,
+ 462,
+ 463,
+ 496,
+ 497,
+ 552,
+ 553,
+ 558,
+ 559,
+ 563,
+ 564,
+ 649,
+ 650,
+ 736,
+ 737,
+ 1210,
+ 1211,
+ 1212,
+ 1213,
+ 1326,
+ 1359,
+ 1360,
+ 1386,
+ 1726,
+ 1727,
+ 1759,
+ 1790,
+ 1886,
+ 1898,
+ 1931,
+ 1932,
+ 1933,
+ 1934,
+ 1940,
+ 1941,
+ 1948,
+ 1949,
+ 2036,
+ 2149,
+ 2150,
+ 2151,
+ 2218,
+ 2219,
+ 2484,
+ 2531,
+ 2870,
+ 2893,
+ 2964,
+ 2976,
+ 3012,
+ 3013,
+ 3184,
+ 3185,
+ 3186,
+ 3187,
+ 3188,
+ 3189,
+ 3190,
+ 3191,
+ 3192,
+ 3193,
+ 3194,
+ 3195,
+ 3196,
+ 3197,
+ 3198,
+ 3199,
+ 3200,
+ 3201,
+ 3202,
+ 3203,
+ 3204,
+ 3205,
+ 3206,
+ 3207,
+ 3208,
+ 3209,
+ 3210,
+ 3211,
+ 3212,
+ 3213,
+ 3353,
+ 3354,
+ 3435,
+ 3436,
+ 3445,
+ 3446,
+ 3450,
+ 3452,
+ 3453,
+ 3456,
+ 3457,
+ 3458,
+ 3459,
+ 3857,
+ 3918,
+ 3919,
+ 3944,
+ 3945,
+ 3949,
+ 3950,
+ 3956,
+ 3957,
+ 3964,
+ 5518,
+ 5519,
+ 5527,
+ 5616,
+ 5617,
+ 5649,
+ 5920,
+ 5951,
+ 5952,
+ 5953,
+ 5954,
+ 5955,
+ 5956,
+ 5957,
+ 5958,
+ 5959,
+ 5960,
+ 5961,
+ 5962,
+ 5963,
+ 5964,
+ 5965,
+ 5966,
+ 5967,
+ 5968,
+ 5969,
+ 5970,
+ 5971,
+ 5972,
+ 5973,
+ 5974,
+ 5975,
+ 5976,
+ 6196,
+ 6197,
+ 6206,
+ 6207,
+ 6211,
+ 6213,
+ 6214,
+ 6217,
+ 6218,
+ 6219,
+ 6220,
+ 6608,
+ 6666,
+ 6667,
+ 6692,
+ 6693,
+ 6697,
+ 6698,
+ 6704,
+ 6705,
+ 6712,
+ 8343,
+ 8938,
+ 8940,
+ 8988
+ ],
+ "rightToeBase": [
+ 8461,
+ 8462,
+ 8459,
+ 8460,
+ 8465,
+ 8466,
+ 8463,
+ 8464,
+ 8469,
+ 8470,
+ 8467,
+ 8468,
+ 8473,
+ 8474,
+ 8471,
+ 8472,
+ 8477,
+ 8478,
+ 8475,
+ 8476,
+ 8479,
+ 8480,
+ 8481,
+ 8482,
+ 8483,
+ 8484,
+ 8485,
+ 8486,
+ 8487,
+ 8488,
+ 8489,
+ 8490,
+ 8491,
+ 8492,
+ 8493,
+ 8494,
+ 8495,
+ 8496,
+ 8497,
+ 8498,
+ 8499,
+ 8500,
+ 8501,
+ 8502,
+ 8505,
+ 8506,
+ 8503,
+ 8504,
+ 8509,
+ 8510,
+ 8507,
+ 8508,
+ 8512,
+ 8511,
+ 8513,
+ 8514,
+ 8517,
+ 8518,
+ 8515,
+ 8516,
+ 8520,
+ 8519,
+ 8523,
+ 8524,
+ 8521,
+ 8522,
+ 8525,
+ 8526,
+ 8529,
+ 8530,
+ 8527,
+ 8528,
+ 8532,
+ 8531,
+ 8535,
+ 8536,
+ 8533,
+ 8534,
+ 8537,
+ 8538,
+ 8539,
+ 8540,
+ 8541,
+ 8542,
+ 8543,
+ 8544,
+ 8545,
+ 8546,
+ 8547,
+ 8548,
+ 8549,
+ 8550,
+ 8551,
+ 8552,
+ 8553,
+ 8554,
+ 8555,
+ 8556,
+ 8557,
+ 8558,
+ 8559,
+ 8560,
+ 8561,
+ 8562,
+ 8564,
+ 8563,
+ 8565,
+ 8566,
+ 8584,
+ 8587,
+ 8589,
+ 8591,
+ 8593,
+ 8595,
+ 8597,
+ 8598,
+ 8600,
+ 8602,
+ 8605,
+ 8606,
+ 8608,
+ 8610
+ ],
+ "spine": [
+ 3245,
+ 3244,
+ 3260,
+ 3263,
+ 3262,
+ 3261,
+ 3284,
+ 3287,
+ 3286,
+ 3285,
+ 3292,
+ 3295,
+ 3294,
+ 3293,
+ 3350,
+ 3351,
+ 3397,
+ 3400,
+ 3399,
+ 3398,
+ 3428,
+ 3431,
+ 3430,
+ 3429,
+ 3520,
+ 3519,
+ 3547,
+ 3546,
+ 3550,
+ 3549,
+ 3551,
+ 3554,
+ 3553,
+ 3552,
+ 3556,
+ 3555,
+ 3823,
+ 3822,
+ 3845,
+ 3844,
+ 3886,
+ 3891,
+ 3888,
+ 3887,
+ 3904,
+ 3907,
+ 3906,
+ 3905,
+ 3961,
+ 3960,
+ 3851,
+ 3852,
+ 3963,
+ 3962,
+ 3965,
+ 3968,
+ 3967,
+ 3966,
+ 3970,
+ 3978,
+ 3977,
+ 4115,
+ 4114,
+ 4116,
+ 4119,
+ 4118,
+ 4117,
+ 4120,
+ 4123,
+ 4122,
+ 4121,
+ 4125,
+ 4124,
+ 4126,
+ 4129,
+ 4128,
+ 4127,
+ 4400,
+ 5401,
+ 5402,
+ 5403,
+ 5404,
+ 5405,
+ 5407,
+ 5406,
+ 5409,
+ 5408,
+ 5410,
+ 5411,
+ 5414,
+ 5413,
+ 5412,
+ 5416,
+ 5415,
+ 5417,
+ 5418,
+ 5419,
+ 5420,
+ 5422,
+ 5421,
+ 5423,
+ 5425,
+ 5426,
+ 5429,
+ 5488,
+ 5489,
+ 5631,
+ 5630,
+ 5629,
+ 5495,
+ 5496,
+ 5699,
+ 5623,
+ 9022,
+ 9023,
+ 9024,
+ 9026,
+ 5939,
+ 5940,
+ 5941,
+ 5943,
+ 5948,
+ 5950,
+ 6007,
+ 6008,
+ 6023,
+ 6024,
+ 6025,
+ 6026,
+ 6047,
+ 6048,
+ 6049,
+ 6050,
+ 6055,
+ 6056,
+ 6057,
+ 6058,
+ 6113,
+ 6114,
+ 6158,
+ 6159,
+ 6160,
+ 6161,
+ 6189,
+ 6190,
+ 6191,
+ 6192,
+ 6280,
+ 6281,
+ 6307,
+ 6308,
+ 6310,
+ 6311,
+ 6312,
+ 6313,
+ 6314,
+ 6315,
+ 6316,
+ 6317,
+ 6579,
+ 6580,
+ 6600,
+ 6599,
+ 6636,
+ 6637,
+ 6638,
+ 6639,
+ 6652,
+ 6653,
+ 6654,
+ 6655,
+ 6708,
+ 6709,
+ 6710,
+ 6711,
+ 6713,
+ 6714,
+ 6715,
+ 6716,
+ 6718,
+ 6725,
+ 6726,
+ 6858,
+ 6859,
+ 6860,
+ 6861,
+ 6862,
+ 6863,
+ 6864,
+ 6865,
+ 6866,
+ 6867,
+ 6868,
+ 6869,
+ 6870,
+ 6871,
+ 6872,
+ 6873,
+ 7136,
+ 8135,
+ 8136,
+ 8137,
+ 8138,
+ 8139,
+ 8140,
+ 8141,
+ 8142,
+ 8143,
+ 8144,
+ 8145,
+ 8146,
+ 8147,
+ 8148,
+ 8149,
+ 8150,
+ 8151,
+ 8152,
+ 8153,
+ 8154,
+ 8155,
+ 8156,
+ 8157,
+ 8159,
+ 8160,
+ 8163,
+ 8323,
+ 8324,
+ 8325,
+ 8393,
+ 8722,
+ 8723,
+ 8724,
+ 8726
+ ],
+ "leftUpLeg": [
+ 3465,
+ 3464,
+ 3468,
+ 3467,
+ 3480,
+ 3479,
+ 3478,
+ 3477,
+ 3481,
+ 3484,
+ 3483,
+ 3482,
+ 3501,
+ 3500,
+ 3503,
+ 3502,
+ 3504,
+ 3507,
+ 3506,
+ 3505,
+ 3510,
+ 3509,
+ 3508,
+ 3511,
+ 3527,
+ 3530,
+ 3529,
+ 3528,
+ 3533,
+ 3532,
+ 3531,
+ 3535,
+ 3534,
+ 3536,
+ 3537,
+ 3538,
+ 3541,
+ 3540,
+ 3539,
+ 3542,
+ 3545,
+ 3544,
+ 3543,
+ 3563,
+ 3566,
+ 3565,
+ 3564,
+ 3574,
+ 3578,
+ 3577,
+ 3576,
+ 3575,
+ 3579,
+ 3582,
+ 3581,
+ 3580,
+ 3583,
+ 3586,
+ 3585,
+ 3584,
+ 3587,
+ 3588,
+ 3591,
+ 3590,
+ 3589,
+ 3592,
+ 3594,
+ 3593,
+ 3595,
+ 3598,
+ 3597,
+ 3596,
+ 3599,
+ 3602,
+ 3601,
+ 3600,
+ 3604,
+ 3603,
+ 3605,
+ 3608,
+ 3607,
+ 3606,
+ 3609,
+ 3610,
+ 3612,
+ 3611,
+ 3613,
+ 3614,
+ 3616,
+ 3615,
+ 3617,
+ 3620,
+ 3619,
+ 3618,
+ 3621,
+ 3624,
+ 3623,
+ 3622,
+ 3625,
+ 3628,
+ 3627,
+ 3626,
+ 3629,
+ 3632,
+ 3631,
+ 3630,
+ 3633,
+ 3636,
+ 3635,
+ 3634,
+ 3638,
+ 3637,
+ 3640,
+ 3639,
+ 3641,
+ 3642,
+ 3646,
+ 3645,
+ 3644,
+ 3643,
+ 3647,
+ 3650,
+ 3649,
+ 3648,
+ 3652,
+ 3651,
+ 3654,
+ 3653,
+ 3655,
+ 3656,
+ 3657,
+ 3658,
+ 3662,
+ 3661,
+ 3660,
+ 3659,
+ 3663,
+ 3664,
+ 3665,
+ 3667,
+ 3666,
+ 3668,
+ 3670,
+ 3669,
+ 3672,
+ 3671,
+ 3676,
+ 3675,
+ 3674,
+ 3673,
+ 3770,
+ 3773,
+ 3772,
+ 3771,
+ 3775,
+ 3774,
+ 3776,
+ 3777,
+ 3778,
+ 3780,
+ 3779,
+ 3781,
+ 3792,
+ 3795,
+ 3794,
+ 3793,
+ 3798,
+ 3797,
+ 3796,
+ 3799,
+ 3800,
+ 3801,
+ 3803,
+ 3802,
+ 3808,
+ 3807,
+ 3806,
+ 3805,
+ 3818,
+ 3821,
+ 3820,
+ 3819,
+ 3860,
+ 3859,
+ 3858,
+ 3861,
+ 3864,
+ 3863,
+ 3862,
+ 3866,
+ 3865,
+ 3867,
+ 3903,
+ 3902,
+ 3914,
+ 3915,
+ 3916,
+ 3917,
+ 3958,
+ 3959,
+ 3986,
+ 3992,
+ 3991,
+ 3993,
+ 3994,
+ 3995,
+ 3996,
+ 3997,
+ 3998,
+ 4086,
+ 4085,
+ 4087,
+ 4090,
+ 4089,
+ 4091,
+ 4094,
+ 4093,
+ 4092,
+ 4096,
+ 4095,
+ 4097,
+ 4109,
+ 4111,
+ 4110,
+ 4113,
+ 4112,
+ 4131,
+ 4132,
+ 4133,
+ 4134,
+ 4144,
+ 4146,
+ 4145,
+ 4147,
+ 4148,
+ 4150,
+ 4149,
+ 4151,
+ 4152,
+ 4153,
+ 4154,
+ 4165,
+ 4166,
+ 5700,
+ 5702,
+ 5701,
+ 5703,
+ 5707,
+ 5706,
+ 5708,
+ 5709,
+ 5710,
+ 9021,
+ 9025
+ ],
+ "eyeballs": [
+ 9383,
+ 9384,
+ 9385,
+ 9386,
+ 9387,
+ 9388,
+ 9389,
+ 9390,
+ 9391,
+ 9392,
+ 9393,
+ 9394,
+ 9395,
+ 9396,
+ 9397,
+ 9398,
+ 9399,
+ 9400,
+ 9401,
+ 9402,
+ 9403,
+ 9404,
+ 9405,
+ 9406,
+ 9407,
+ 9408,
+ 9409,
+ 9410,
+ 9411,
+ 9412,
+ 9413,
+ 9414,
+ 9415,
+ 9416,
+ 9417,
+ 9418,
+ 9419,
+ 9420,
+ 9421,
+ 9422,
+ 9423,
+ 9424,
+ 9425,
+ 9426,
+ 9427,
+ 9428,
+ 9429,
+ 9430,
+ 9431,
+ 9432,
+ 9433,
+ 9434,
+ 9435,
+ 9436,
+ 9437,
+ 9438,
+ 9439,
+ 9440,
+ 9441,
+ 9442,
+ 9443,
+ 9444,
+ 9445,
+ 9446,
+ 9447,
+ 9448,
+ 9449,
+ 9450,
+ 9451,
+ 9452,
+ 9453,
+ 9454,
+ 9455,
+ 9456,
+ 9457,
+ 9458,
+ 9459,
+ 9460,
+ 9461,
+ 9462,
+ 9463,
+ 9464,
+ 9465,
+ 9466,
+ 9467,
+ 9468,
+ 9469,
+ 9470,
+ 9471,
+ 9472,
+ 9473,
+ 9474,
+ 9475,
+ 9476,
+ 9477,
+ 9478,
+ 9479,
+ 9480,
+ 9481,
+ 9482,
+ 9483,
+ 9484,
+ 9485,
+ 9486,
+ 9487,
+ 9488,
+ 9489,
+ 9490,
+ 9491,
+ 9492,
+ 9493,
+ 9494,
+ 9495,
+ 9496,
+ 9497,
+ 9498,
+ 9499,
+ 9500,
+ 9501,
+ 9502,
+ 9503,
+ 9504,
+ 9505,
+ 9506,
+ 9507,
+ 9508,
+ 9509,
+ 9510,
+ 9511,
+ 9512,
+ 9513,
+ 9514,
+ 9515,
+ 9516,
+ 9518,
+ 9519,
+ 9520,
+ 9521,
+ 9522,
+ 9523,
+ 9524,
+ 9525,
+ 9526,
+ 9527,
+ 9528,
+ 9529,
+ 9531,
+ 9532,
+ 9533,
+ 9534,
+ 9535,
+ 9536,
+ 9537,
+ 9538,
+ 9539,
+ 9540,
+ 9541,
+ 9542,
+ 9544,
+ 9545,
+ 9546,
+ 9547,
+ 9548,
+ 9549,
+ 9550,
+ 9551,
+ 9552,
+ 9553,
+ 9554,
+ 9555,
+ 9557,
+ 9558,
+ 9559,
+ 9560,
+ 9561,
+ 9562,
+ 9563,
+ 9564,
+ 9565,
+ 9566,
+ 9567,
+ 9568,
+ 9570,
+ 9571,
+ 9572,
+ 9573,
+ 9574,
+ 9575,
+ 9576,
+ 9577,
+ 9578,
+ 9579,
+ 9580,
+ 9581,
+ 9583,
+ 9584,
+ 9585,
+ 9586,
+ 9587,
+ 9588,
+ 9589,
+ 9590,
+ 9591,
+ 9592,
+ 9593,
+ 9594,
+ 9596,
+ 9597,
+ 9598,
+ 9599,
+ 9600,
+ 9601,
+ 9602,
+ 9603,
+ 9604,
+ 9605,
+ 9606,
+ 9607,
+ 9609,
+ 9610,
+ 9611,
+ 9612,
+ 9613,
+ 9614,
+ 9615,
+ 9616,
+ 9617,
+ 9618,
+ 9619,
+ 9620,
+ 9622,
+ 9623,
+ 9624,
+ 9625,
+ 9626,
+ 9627,
+ 9628,
+ 9629,
+ 9630,
+ 9631,
+ 9632,
+ 9633,
+ 9635,
+ 9636,
+ 9637,
+ 9638,
+ 9639,
+ 9640,
+ 9641,
+ 9642,
+ 9643,
+ 9644,
+ 9645,
+ 9646,
+ 9648,
+ 9649,
+ 9650,
+ 9651,
+ 9652,
+ 9653,
+ 9654,
+ 9655,
+ 9656,
+ 9657,
+ 9658,
+ 9659,
+ 9661,
+ 9662,
+ 9663,
+ 9664,
+ 9665,
+ 9666,
+ 9667,
+ 9668,
+ 9669,
+ 9670,
+ 9671,
+ 9672,
+ 9674,
+ 9675,
+ 9676,
+ 9677,
+ 9678,
+ 9679,
+ 9680,
+ 9681,
+ 9682,
+ 9683,
+ 9684,
+ 9685,
+ 9687,
+ 9688,
+ 9689,
+ 9690,
+ 9691,
+ 9692,
+ 9693,
+ 9694,
+ 9695,
+ 9696,
+ 9697,
+ 9698,
+ 9700,
+ 9701,
+ 9702,
+ 9703,
+ 9704,
+ 9705,
+ 9706,
+ 9707,
+ 9708,
+ 9709,
+ 9710,
+ 9711,
+ 9713,
+ 9714,
+ 9715,
+ 9716,
+ 9717,
+ 9718,
+ 9719,
+ 9720,
+ 9721,
+ 9722,
+ 9723,
+ 9724,
+ 9726,
+ 9727,
+ 9728,
+ 9729,
+ 9730,
+ 9731,
+ 9732,
+ 9733,
+ 9734,
+ 9735,
+ 9736,
+ 9737,
+ 9739,
+ 9740,
+ 9741,
+ 9742,
+ 9743,
+ 9744,
+ 9745,
+ 9746,
+ 9747,
+ 9748,
+ 9749,
+ 9750,
+ 9752,
+ 9753,
+ 9754,
+ 9755,
+ 9756,
+ 9757,
+ 9758,
+ 9759,
+ 9760,
+ 9761,
+ 9762,
+ 9763,
+ 9765,
+ 9766,
+ 9767,
+ 9768,
+ 9769,
+ 9770,
+ 9771,
+ 9772,
+ 9773,
+ 9774,
+ 9775,
+ 9776,
+ 9778,
+ 9779,
+ 9780,
+ 9781,
+ 9782,
+ 9783,
+ 9784,
+ 9785,
+ 9786,
+ 9787,
+ 9788,
+ 9789,
+ 9791,
+ 9792,
+ 9793,
+ 9794,
+ 9795,
+ 9796,
+ 9797,
+ 9798,
+ 9799,
+ 9800,
+ 9801,
+ 9802,
+ 9803,
+ 9805,
+ 9806,
+ 9807,
+ 9808,
+ 9809,
+ 9810,
+ 9811,
+ 9812,
+ 9813,
+ 9814,
+ 9815,
+ 9816,
+ 9818,
+ 9819,
+ 9820,
+ 9821,
+ 9822,
+ 9823,
+ 9824,
+ 9825,
+ 9826,
+ 9827,
+ 9828,
+ 9829,
+ 9831,
+ 9832,
+ 9833,
+ 9834,
+ 9835,
+ 9836,
+ 9837,
+ 9838,
+ 9839,
+ 9840,
+ 9841,
+ 9842,
+ 9844,
+ 9845,
+ 9846,
+ 9847,
+ 9848,
+ 9849,
+ 9850,
+ 9851,
+ 9852,
+ 9853,
+ 9854,
+ 9855,
+ 9857,
+ 9858,
+ 9859,
+ 9860,
+ 9861,
+ 9862,
+ 9863,
+ 9864,
+ 9865,
+ 9866,
+ 9867,
+ 9868,
+ 9870,
+ 9871,
+ 9872,
+ 9873,
+ 9874,
+ 9875,
+ 9876,
+ 9877,
+ 9878,
+ 9879,
+ 9880,
+ 9881,
+ 9883,
+ 9884,
+ 9885,
+ 9886,
+ 9887,
+ 9888,
+ 9889,
+ 9890,
+ 9891,
+ 9892,
+ 9893,
+ 9894,
+ 9896,
+ 9897,
+ 9898,
+ 9899,
+ 9900,
+ 9901,
+ 9902,
+ 9903,
+ 9904,
+ 9905,
+ 9906,
+ 9907,
+ 9909,
+ 9910,
+ 9911,
+ 9912,
+ 9913,
+ 9914,
+ 9915,
+ 9916,
+ 9917,
+ 9918,
+ 9919,
+ 9920,
+ 9922,
+ 9923,
+ 9924,
+ 9925,
+ 9926,
+ 9927,
+ 9928,
+ 9929,
+ 9930,
+ 9931,
+ 9932,
+ 9933,
+ 9934,
+ 9935,
+ 9936,
+ 9937,
+ 9938,
+ 9939,
+ 9940,
+ 9941,
+ 9942,
+ 9943,
+ 9944,
+ 9945,
+ 9946,
+ 9947,
+ 9948,
+ 9949,
+ 9950,
+ 9951,
+ 9952,
+ 9953,
+ 9954,
+ 9955,
+ 9956,
+ 9957,
+ 9958,
+ 9959,
+ 9960,
+ 9961,
+ 9962,
+ 9963,
+ 9964,
+ 9965,
+ 9966,
+ 9967,
+ 9968,
+ 9969,
+ 9970,
+ 9971,
+ 9972,
+ 9973,
+ 9974,
+ 9975,
+ 9976,
+ 9977,
+ 9978,
+ 9979,
+ 9980,
+ 9981,
+ 9982,
+ 9983,
+ 9984,
+ 9985,
+ 9986,
+ 9987,
+ 9988,
+ 9989,
+ 9990,
+ 9991,
+ 9992,
+ 9993,
+ 9994,
+ 9995,
+ 9996,
+ 9997,
+ 9998,
+ 9999,
+ 10000,
+ 10001,
+ 10002,
+ 10003,
+ 10004,
+ 10005,
+ 10006,
+ 10007,
+ 10008,
+ 10009,
+ 10010,
+ 10011,
+ 10012,
+ 10013,
+ 10014,
+ 10015,
+ 10016,
+ 10017,
+ 10018,
+ 10019,
+ 10020,
+ 10021,
+ 10022,
+ 10023,
+ 10024,
+ 10025,
+ 10026,
+ 10027,
+ 10028,
+ 10029,
+ 10030,
+ 10031,
+ 10032,
+ 10033,
+ 10034,
+ 10035,
+ 10036,
+ 10037,
+ 10038,
+ 10039,
+ 10040,
+ 10041,
+ 10042,
+ 10043,
+ 10044,
+ 10045,
+ 10046,
+ 10047,
+ 10048,
+ 10049,
+ 10050,
+ 10051,
+ 10052,
+ 10053,
+ 10054,
+ 10055,
+ 10056,
+ 10057,
+ 10058,
+ 10059,
+ 10060,
+ 10061,
+ 10062,
+ 10064,
+ 10065,
+ 10066,
+ 10067,
+ 10068,
+ 10069,
+ 10070,
+ 10071,
+ 10072,
+ 10073,
+ 10074,
+ 10075,
+ 10077,
+ 10078,
+ 10079,
+ 10080,
+ 10081,
+ 10082,
+ 10083,
+ 10084,
+ 10085,
+ 10086,
+ 10087,
+ 10088,
+ 10090,
+ 10091,
+ 10092,
+ 10093,
+ 10094,
+ 10095,
+ 10096,
+ 10097,
+ 10098,
+ 10099,
+ 10100,
+ 10101,
+ 10103,
+ 10104,
+ 10105,
+ 10106,
+ 10107,
+ 10108,
+ 10109,
+ 10110,
+ 10111,
+ 10112,
+ 10113,
+ 10114,
+ 10116,
+ 10117,
+ 10118,
+ 10119,
+ 10120,
+ 10121,
+ 10122,
+ 10123,
+ 10124,
+ 10125,
+ 10126,
+ 10127,
+ 10129,
+ 10130,
+ 10131,
+ 10132,
+ 10133,
+ 10134,
+ 10135,
+ 10136,
+ 10137,
+ 10138,
+ 10139,
+ 10140,
+ 10142,
+ 10143,
+ 10144,
+ 10145,
+ 10146,
+ 10147,
+ 10148,
+ 10149,
+ 10150,
+ 10151,
+ 10152,
+ 10153,
+ 10155,
+ 10156,
+ 10157,
+ 10158,
+ 10159,
+ 10160,
+ 10161,
+ 10162,
+ 10163,
+ 10164,
+ 10165,
+ 10166,
+ 10168,
+ 10169,
+ 10170,
+ 10171,
+ 10172,
+ 10173,
+ 10174,
+ 10175,
+ 10176,
+ 10177,
+ 10178,
+ 10179,
+ 10181,
+ 10182,
+ 10183,
+ 10184,
+ 10185,
+ 10186,
+ 10187,
+ 10188,
+ 10189,
+ 10190,
+ 10191,
+ 10192,
+ 10194,
+ 10195,
+ 10196,
+ 10197,
+ 10198,
+ 10199,
+ 10200,
+ 10201,
+ 10202,
+ 10203,
+ 10204,
+ 10205,
+ 10207,
+ 10208,
+ 10209,
+ 10210,
+ 10211,
+ 10212,
+ 10213,
+ 10214,
+ 10215,
+ 10216,
+ 10217,
+ 10218,
+ 10220,
+ 10221,
+ 10222,
+ 10223,
+ 10224,
+ 10225,
+ 10226,
+ 10227,
+ 10228,
+ 10229,
+ 10230,
+ 10231,
+ 10233,
+ 10234,
+ 10235,
+ 10236,
+ 10237,
+ 10238,
+ 10239,
+ 10240,
+ 10241,
+ 10242,
+ 10243,
+ 10244,
+ 10246,
+ 10247,
+ 10248,
+ 10249,
+ 10250,
+ 10251,
+ 10252,
+ 10253,
+ 10254,
+ 10255,
+ 10256,
+ 10257,
+ 10259,
+ 10260,
+ 10261,
+ 10262,
+ 10263,
+ 10264,
+ 10265,
+ 10266,
+ 10267,
+ 10268,
+ 10269,
+ 10270,
+ 10272,
+ 10273,
+ 10274,
+ 10275,
+ 10276,
+ 10277,
+ 10278,
+ 10279,
+ 10280,
+ 10281,
+ 10282,
+ 10283,
+ 10285,
+ 10286,
+ 10287,
+ 10288,
+ 10289,
+ 10290,
+ 10291,
+ 10292,
+ 10293,
+ 10294,
+ 10295,
+ 10296,
+ 10298,
+ 10299,
+ 10300,
+ 10301,
+ 10302,
+ 10303,
+ 10304,
+ 10305,
+ 10306,
+ 10307,
+ 10308,
+ 10309,
+ 10311,
+ 10312,
+ 10313,
+ 10314,
+ 10315,
+ 10316,
+ 10317,
+ 10318,
+ 10319,
+ 10320,
+ 10321,
+ 10322,
+ 10324,
+ 10325,
+ 10326,
+ 10327,
+ 10328,
+ 10329,
+ 10330,
+ 10331,
+ 10332,
+ 10333,
+ 10334,
+ 10335,
+ 10337,
+ 10338,
+ 10339,
+ 10340,
+ 10341,
+ 10342,
+ 10343,
+ 10344,
+ 10345,
+ 10346,
+ 10347,
+ 10348,
+ 10349,
+ 10351,
+ 10352,
+ 10353,
+ 10354,
+ 10355,
+ 10356,
+ 10357,
+ 10358,
+ 10359,
+ 10360,
+ 10361,
+ 10362,
+ 10364,
+ 10365,
+ 10366,
+ 10367,
+ 10368,
+ 10369,
+ 10370,
+ 10371,
+ 10372,
+ 10373,
+ 10374,
+ 10375,
+ 10377,
+ 10378,
+ 10379,
+ 10380,
+ 10381,
+ 10382,
+ 10383,
+ 10384,
+ 10385,
+ 10386,
+ 10387,
+ 10388,
+ 10390,
+ 10391,
+ 10392,
+ 10393,
+ 10394,
+ 10395,
+ 10396,
+ 10397,
+ 10398,
+ 10399,
+ 10400,
+ 10401,
+ 10403,
+ 10404,
+ 10405,
+ 10406,
+ 10407,
+ 10408,
+ 10409,
+ 10410,
+ 10411,
+ 10412,
+ 10413,
+ 10414,
+ 10416,
+ 10417,
+ 10418,
+ 10419,
+ 10420,
+ 10421,
+ 10422,
+ 10423,
+ 10424,
+ 10425,
+ 10426,
+ 10427,
+ 10429,
+ 10430,
+ 10431,
+ 10432,
+ 10433,
+ 10434,
+ 10435,
+ 10436,
+ 10437,
+ 10438,
+ 10439,
+ 10440,
+ 10442,
+ 10443,
+ 10444,
+ 10445,
+ 10446,
+ 10447,
+ 10448,
+ 10449,
+ 10450,
+ 10451,
+ 10452,
+ 10453,
+ 10455,
+ 10456,
+ 10457,
+ 10458,
+ 10459,
+ 10460,
+ 10461,
+ 10462,
+ 10463,
+ 10464,
+ 10465,
+ 10466,
+ 10468,
+ 10469,
+ 10470,
+ 10471,
+ 10472,
+ 10473,
+ 10474
+ ],
+ "leftHand": [
+ 4597,
+ 4596,
+ 4595,
+ 4598,
+ 4602,
+ 4601,
+ 4600,
+ 4599,
+ 4604,
+ 4603,
+ 4606,
+ 4605,
+ 4607,
+ 4610,
+ 4609,
+ 4608,
+ 4611,
+ 4614,
+ 4613,
+ 4612,
+ 4615,
+ 4618,
+ 4617,
+ 4616,
+ 4621,
+ 4620,
+ 4619,
+ 4622,
+ 4625,
+ 4624,
+ 4623,
+ 4626,
+ 4629,
+ 4628,
+ 4627,
+ 4630,
+ 4634,
+ 4633,
+ 4632,
+ 4631,
+ 4637,
+ 4636,
+ 4635,
+ 4638,
+ 4640,
+ 4639,
+ 4647,
+ 4646,
+ 4645,
+ 4648,
+ 4649,
+ 4650,
+ 4655,
+ 4656,
+ 4659,
+ 4658,
+ 4657,
+ 4660,
+ 4663,
+ 4662,
+ 4661,
+ 4664,
+ 4667,
+ 4666,
+ 4665,
+ 4668,
+ 4671,
+ 4670,
+ 4669,
+ 4672,
+ 4674,
+ 4673,
+ 4677,
+ 4676,
+ 4675,
+ 4678,
+ 4679,
+ 4680,
+ 4684,
+ 4683,
+ 4685,
+ 4687,
+ 4686,
+ 4688,
+ 4689,
+ 4690,
+ 4693,
+ 4692,
+ 4691,
+ 4694,
+ 4697,
+ 4696,
+ 4695,
+ 4698,
+ 4699,
+ 4700,
+ 4702,
+ 4701,
+ 4703,
+ 4706,
+ 4705,
+ 4704,
+ 4707,
+ 4708,
+ 4710,
+ 4709,
+ 4711,
+ 4712,
+ 4713,
+ 4714,
+ 4715,
+ 4720,
+ 4723,
+ 4729,
+ 4728,
+ 4727,
+ 4730,
+ 4732,
+ 4731,
+ 4733,
+ 4735,
+ 4734,
+ 4736,
+ 4743,
+ 4744,
+ 4746,
+ 4745,
+ 4749,
+ 4748,
+ 4747,
+ 4751,
+ 4750,
+ 4752,
+ 4755,
+ 4754,
+ 4753,
+ 4756,
+ 4758,
+ 4757,
+ 4763,
+ 4764,
+ 4765,
+ 4768,
+ 4769,
+ 4776,
+ 4777,
+ 4778,
+ 4784,
+ 4786,
+ 4785,
+ 4789,
+ 4788,
+ 4787,
+ 4790,
+ 4792,
+ 4791,
+ 4793,
+ 4794,
+ 4796,
+ 4799,
+ 4798,
+ 4797,
+ 4804,
+ 4803,
+ 4805,
+ 4806,
+ 4807,
+ 4808,
+ 4810,
+ 4809,
+ 4811,
+ 4812,
+ 4813,
+ 4814,
+ 4815,
+ 4816,
+ 4817,
+ 4820,
+ 4822,
+ 4825,
+ 4824,
+ 4827,
+ 4826,
+ 4828,
+ 4835,
+ 4836,
+ 4837,
+ 4839,
+ 4838,
+ 4841,
+ 4840,
+ 4842,
+ 4843,
+ 4845,
+ 4849,
+ 4850,
+ 4851,
+ 4852,
+ 4853,
+ 4854,
+ 4861,
+ 4860,
+ 4862,
+ 4863,
+ 4866,
+ 4865,
+ 4864,
+ 4867,
+ 4868,
+ 4869,
+ 4871,
+ 4870,
+ 4872,
+ 4874,
+ 4873,
+ 4876,
+ 4877,
+ 4879,
+ 4878,
+ 4881,
+ 4880,
+ 4882,
+ 4883,
+ 4884,
+ 4885,
+ 4888,
+ 4889,
+ 4891,
+ 4890,
+ 4892,
+ 4893,
+ 4898,
+ 4899,
+ 4902,
+ 4901,
+ 4903,
+ 4904,
+ 4907,
+ 5211,
+ 5212,
+ 5221,
+ 5222,
+ 5311,
+ 5313,
+ 5312,
+ 5315,
+ 5314,
+ 5316,
+ 5318,
+ 5317,
+ 5319,
+ 5320,
+ 5321,
+ 5323,
+ 5322,
+ 5324,
+ 5325,
+ 5326,
+ 5327,
+ 5328,
+ 5329,
+ 5330,
+ 5331,
+ 5334,
+ 5333,
+ 5332,
+ 5335,
+ 5336,
+ 5337,
+ 5338,
+ 5339,
+ 5341,
+ 5340,
+ 5342,
+ 5344,
+ 5343,
+ 5345,
+ 5346,
+ 5347,
+ 5348,
+ 5351,
+ 5352,
+ 5354,
+ 5353,
+ 5355,
+ 5357,
+ 5356,
+ 5359,
+ 5358,
+ 5360,
+ 5362,
+ 5361,
+ 5363,
+ 5365,
+ 5364,
+ 5366,
+ 5367,
+ 5368,
+ 5369,
+ 5370,
+ 5371,
+ 5372,
+ 5373,
+ 5374,
+ 5375,
+ 5376,
+ 5377,
+ 5379,
+ 5378,
+ 5380,
+ 5381,
+ 5382,
+ 5385,
+ 5384,
+ 5383,
+ 5386,
+ 5387,
+ 5388,
+ 5389,
+ 5390,
+ 5391,
+ 5392,
+ 5393,
+ 5394
+ ],
+ "hips": [
+ 3263,
+ 3262,
+ 3284,
+ 3285,
+ 3292,
+ 3293,
+ 3306,
+ 3307,
+ 3308,
+ 3309,
+ 3335,
+ 3350,
+ 3428,
+ 3429,
+ 3432,
+ 3433,
+ 3434,
+ 3439,
+ 3442,
+ 3441,
+ 3440,
+ 3448,
+ 3447,
+ 3455,
+ 3454,
+ 3461,
+ 3460,
+ 3462,
+ 3465,
+ 3464,
+ 3463,
+ 3466,
+ 3469,
+ 3468,
+ 3467,
+ 3473,
+ 3472,
+ 3471,
+ 3470,
+ 3475,
+ 3474,
+ 3476,
+ 3485,
+ 3487,
+ 3486,
+ 3488,
+ 3491,
+ 3490,
+ 3489,
+ 3492,
+ 3495,
+ 3494,
+ 3493,
+ 3496,
+ 3499,
+ 3498,
+ 3497,
+ 3500,
+ 3510,
+ 3511,
+ 3515,
+ 3514,
+ 3513,
+ 3512,
+ 3517,
+ 3516,
+ 3518,
+ 3520,
+ 3519,
+ 3542,
+ 3543,
+ 3547,
+ 3546,
+ 3550,
+ 3549,
+ 3548,
+ 3562,
+ 3567,
+ 3568,
+ 3569,
+ 3798,
+ 3799,
+ 3839,
+ 3842,
+ 3841,
+ 3840,
+ 3843,
+ 3734,
+ 3735,
+ 3736,
+ 3885,
+ 3884,
+ 3903,
+ 3902,
+ 3916,
+ 3917,
+ 3804,
+ 3958,
+ 3970,
+ 3969,
+ 3972,
+ 3971,
+ 3879,
+ 3986,
+ 3993,
+ 3994,
+ 3889,
+ 3890,
+ 4081,
+ 4080,
+ 4083,
+ 4082,
+ 4084,
+ 4088,
+ 4002,
+ 4130,
+ 4144,
+ 4145,
+ 4147,
+ 4041,
+ 4165,
+ 4166,
+ 4065,
+ 4066,
+ 4292,
+ 4291,
+ 4401,
+ 4404,
+ 4403,
+ 4402,
+ 4297,
+ 4298,
+ 4405,
+ 4409,
+ 4408,
+ 4407,
+ 4406,
+ 4410,
+ 4412,
+ 4411,
+ 4414,
+ 4413,
+ 4416,
+ 4415,
+ 4417,
+ 4418,
+ 4419,
+ 4421,
+ 4420,
+ 4423,
+ 4422,
+ 4425,
+ 4424,
+ 4320,
+ 4321,
+ 5497,
+ 5492,
+ 5491,
+ 5490,
+ 5502,
+ 5498,
+ 5504,
+ 5503,
+ 5506,
+ 5505,
+ 5507,
+ 5509,
+ 5508,
+ 5511,
+ 5510,
+ 5512,
+ 5513,
+ 5515,
+ 5514,
+ 5520,
+ 5517,
+ 5516,
+ 5631,
+ 5630,
+ 5493,
+ 5494,
+ 5658,
+ 5659,
+ 5661,
+ 5660,
+ 5663,
+ 5662,
+ 5664,
+ 5665,
+ 5667,
+ 5666,
+ 5668,
+ 5669,
+ 5672,
+ 5671,
+ 5670,
+ 5673,
+ 5674,
+ 5677,
+ 5676,
+ 5675,
+ 5679,
+ 5678,
+ 5557,
+ 5680,
+ 5682,
+ 5681,
+ 5683,
+ 5686,
+ 5685,
+ 5684,
+ 5688,
+ 5687,
+ 5689,
+ 5690,
+ 5691,
+ 5692,
+ 5694,
+ 5693,
+ 5695,
+ 5574,
+ 5575,
+ 5696,
+ 5698,
+ 5697,
+ 5699,
+ 5703,
+ 5704,
+ 5705,
+ 5711,
+ 5712,
+ 5713,
+ 5714,
+ 5715,
+ 5596,
+ 5716,
+ 5718,
+ 5717,
+ 5600,
+ 5601,
+ 5719,
+ 5603,
+ 5604,
+ 5721,
+ 5720,
+ 5723,
+ 5722,
+ 5724,
+ 5725,
+ 5727,
+ 5726,
+ 5613,
+ 5614,
+ 5615,
+ 5620,
+ 5622,
+ 5931,
+ 5934,
+ 5939,
+ 5941,
+ 5942,
+ 5946,
+ 5949,
+ 6025,
+ 6026,
+ 6047,
+ 6048,
+ 6055,
+ 6056,
+ 6069,
+ 6070,
+ 6071,
+ 6072,
+ 6098,
+ 6113,
+ 6189,
+ 6190,
+ 6193,
+ 6194,
+ 6195,
+ 6200,
+ 6201,
+ 6202,
+ 6203,
+ 6208,
+ 6209,
+ 6215,
+ 6216,
+ 6221,
+ 6222,
+ 6223,
+ 6224,
+ 6225,
+ 6226,
+ 6227,
+ 6228,
+ 6229,
+ 6230,
+ 6234,
+ 6231,
+ 6232,
+ 6233,
+ 6235,
+ 6236,
+ 6237,
+ 6246,
+ 6247,
+ 6248,
+ 6249,
+ 6250,
+ 6251,
+ 6252,
+ 6253,
+ 6254,
+ 6255,
+ 6256,
+ 6257,
+ 6258,
+ 6259,
+ 6260,
+ 6261,
+ 6271,
+ 6272,
+ 6276,
+ 6273,
+ 6274,
+ 6275,
+ 6277,
+ 6278,
+ 6279,
+ 6280,
+ 6281,
+ 6303,
+ 6304,
+ 6307,
+ 6308,
+ 6309,
+ 6310,
+ 6311,
+ 6323,
+ 6328,
+ 6329,
+ 6330,
+ 6556,
+ 6557,
+ 6594,
+ 6597,
+ 6595,
+ 6596,
+ 6598,
+ 6634,
+ 6635,
+ 6650,
+ 6651,
+ 6664,
+ 6665,
+ 6706,
+ 6718,
+ 6717,
+ 6720,
+ 6719,
+ 6734,
+ 6741,
+ 6742,
+ 6824,
+ 6825,
+ 6826,
+ 6827,
+ 6828,
+ 6832,
+ 6874,
+ 6888,
+ 6889,
+ 6891,
+ 6909,
+ 6910,
+ 7137,
+ 7138,
+ 7139,
+ 7140,
+ 7141,
+ 7145,
+ 7142,
+ 7143,
+ 7144,
+ 7146,
+ 7147,
+ 7148,
+ 7149,
+ 7150,
+ 7151,
+ 7152,
+ 7153,
+ 7154,
+ 7155,
+ 7156,
+ 7157,
+ 7158,
+ 7159,
+ 7160,
+ 7161,
+ 8222,
+ 8219,
+ 8220,
+ 8221,
+ 8223,
+ 8224,
+ 8225,
+ 8226,
+ 8227,
+ 8228,
+ 8229,
+ 8230,
+ 8231,
+ 8232,
+ 8233,
+ 8234,
+ 8235,
+ 8236,
+ 8237,
+ 8238,
+ 8239,
+ 8240,
+ 8324,
+ 8325,
+ 8352,
+ 8353,
+ 8354,
+ 8355,
+ 8356,
+ 8357,
+ 8358,
+ 8359,
+ 8360,
+ 8361,
+ 8362,
+ 8363,
+ 8366,
+ 8364,
+ 8365,
+ 8367,
+ 8368,
+ 8371,
+ 8369,
+ 8370,
+ 8373,
+ 8372,
+ 8374,
+ 8375,
+ 8376,
+ 8377,
+ 8378,
+ 8379,
+ 8380,
+ 8381,
+ 8382,
+ 8383,
+ 8384,
+ 8385,
+ 8386,
+ 8387,
+ 8388,
+ 8389,
+ 8390,
+ 8391,
+ 8392,
+ 8393,
+ 8397,
+ 8398,
+ 8399,
+ 8405,
+ 8406,
+ 8407,
+ 8408,
+ 8409,
+ 8410,
+ 8411,
+ 8412,
+ 8413,
+ 8414,
+ 8415,
+ 8416,
+ 8417,
+ 8418,
+ 8419,
+ 8420,
+ 8421
+ ]
+}
diff --git a/body_models/human_model_files/smplx/smplx_vert_segmentation.npy b/body_models/human_model_files/smplx/smplx_vert_segmentation.npy
new file mode 100644
index 0000000000000000000000000000000000000000..a3e76430f7478e4996e331732cd6cb0e3bc2c22f
--- /dev/null
+++ b/body_models/human_model_files/smplx/smplx_vert_segmentation.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0710425b2b1e787596ab2fb10b6e622e11a79329381e4ee3f7eb03214d47c18a
+size 83928
diff --git a/body_models/human_model_files/smplx/version.txt b/body_models/human_model_files/smplx/version.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ac6ab56466944d45e30add02cd7607b768a66b5a
--- /dev/null
+++ b/body_models/human_model_files/smplx/version.txt
@@ -0,0 +1 @@
+This is "Version 1.0" of SMPL-X.
diff --git a/demo_mixed.py b/demo_mixed.py
new file mode 100644
index 0000000000000000000000000000000000000000..150bfc089d4022d7db794abc174a0aa8d7a8f540
--- /dev/null
+++ b/demo_mixed.py
@@ -0,0 +1,144 @@
+import os
+import torch
+import numpy as np
+from models.llama_model import LLaMAHF, LLaMAHFConfig
+import models.tae as tae
+import options.option_transformer as option_trans
+from sentence_transformers import SentenceTransformer
+import warnings
+from utils.face_z_align_util import rotation_6d_to_matrix, matrix_to_axis_angle, axis_angle_to_quaternion
+from utils import bvh, quat
+import smplx
+
+warnings.filterwarnings('ignore')
+
+# This function converts the 272-dim representation to a BVH file for visualization.
+def save_motion_as_bvh(motion_data, output_path, fps=30):
+ print(f"--- Converting to BVH: {os.path.basename(output_path)} ---")
+ try:
+ if isinstance(motion_data, torch.Tensor):
+ motion_data = motion_data.detach().cpu().numpy()
+ if motion_data.ndim == 3:
+ motion_data = motion_data.squeeze(0)
+
+ njoint = 22
+ nfrm, _ = motion_data.shape
+
+ # This complex logic correctly interprets the 272-dim vector into rotations and translations
+ rotations_matrix = rotation_6d_to_matrix(torch.from_numpy(motion_data[:, 8+6*njoint : 8+12*njoint]).reshape(nfrm, -1, 6)).numpy()
+ global_heading_diff_rot = rotation_6d_to_matrix(torch.from_numpy(motion_data[:, 2:8])).numpy()
+
+ global_heading_rot = np.zeros_like(global_heading_diff_rot)
+ global_heading_rot[0] = global_heading_diff_rot[0]
+ for i in range(1, nfrm):
+ global_heading_rot[i] = np.matmul(global_heading_diff_rot[i], global_heading_rot[i-1])
+
+ velocities_root_xy = motion_data[:, :2]
+ height = motion_data[:, 8 : 8+3*njoint].reshape(nfrm, -1, 3)[:, 0, 1]
+
+ inv_global_heading_rot = np.transpose(global_heading_rot, (0, 2, 1))
+ rotations_matrix[:, 0, ...] = np.matmul(inv_global_heading_rot, rotations_matrix[:, 0, ...])
+
+ velocities_root_xyz = np.zeros((nfrm, 3))
+ velocities_root_xyz[:, 0] = velocities_root_xy[:, 0]
+ velocities_root_xyz[:, 2] = velocities_root_xy[:, 1]
+ velocities_root_xyz[1:, :] = np.matmul(inv_global_heading_rot[:-1], velocities_root_xyz[1:, :, None]).squeeze(-1)
+ root_translation = np.cumsum(velocities_root_xyz, axis=0)
+ root_translation[:, 1] = height
+
+ axis_angle = matrix_to_axis_angle(torch.from_numpy(rotations_matrix)).numpy().reshape(nfrm, -1)
+ poses_24_joints = np.zeros((nfrm, 72))
+ poses_24_joints[:, :66] = axis_angle
+
+ model = smplx.create(model_path="body_models/human_model_files", model_type="smpl", gender="NEUTRAL")
+ parents = model.parents.detach().cpu().numpy()
+ rest_pose = model().joints.detach().cpu().numpy().squeeze()[:24,:]
+ offsets = rest_pose - rest_pose[parents]
+ offsets[0] = np.array([0,0,0])
+
+ rotations_quat = axis_angle_to_quaternion(torch.from_numpy(poses_24_joints.reshape(-1, 24, 3))).numpy()
+ rotations_euler = np.degrees(quat.to_euler(rotations_quat, order="zyx"))
+ positions = np.zeros_like(rotations_quat[..., :3])
+ positions[:, 0] = root_translation
+
+ joint_names = ["Pelvis", "Left_hip", "Right_hip", "Spine1", "Left_knee", "Right_knee", "Spine2", "Left_ankle", "Right_ankle", "Spine3", "Left_foot", "Right_foot", "Neck", "Left_collar", "Right_collar", "Head", "Left_shoulder", "Right_shoulder", "Left_elbow", "Right_elbow", "Left_wrist", "Right_wrist", "Left_hand", "Right_hand"]
+
+ bvh.save(output_path, {
+ "rotations": rotations_euler, "positions": positions, "offsets": offsets,
+ "parents": parents, "names": joint_names, "order": "zyx", "frametime": 1.0 / fps,
+ })
+ print(f"✅ BVH file saved successfully to {output_path}")
+
+ except Exception as e:
+ print(f"❌ BVH Conversion Failed. Error: {e}")
+ import traceback
+ traceback.print_exc()
+
+
+if __name__ == '__main__':
+ comp_device = torch.device('cuda')
+ args = option_trans.get_args_parser()
+ torch.manual_seed(args.seed)
+
+ # --- Load Models ---
+ print("Loading models for MotionStreamer...")
+ t5_model = SentenceTransformer('sentencetõ-xxl/')
+ t5_model.eval().to(comp_device)
+
+ print("Loading Causal TAE (t2m_babel) checkpoint...")
+ net = tae.Causal_HumanTAE(latent_dim=16)
+ ckpt = torch.load('Causal_TAE_t2m_babel/net_last.pth', map_location='cpu')
+ net.load_state_dict(ckpt['net'], strict=True)
+ net.eval().to(comp_device)
+
+ print("Loading YOUR trained MotionStreamer checkpoint...")
+ config = LLaMAHFConfig.from_name('Normal_size')
+ trans_encoder = LLaMAHF(config, args.num_diffusion_head_layers, args.latent_dim, comp_device)
+
+ # --- FIX 1: Manually set the missing attribute ---
+ trans_encoder.use_out_proj = True
+
+ ckpt = torch.load('Experiments/motionstreamer_model/latest.pth', map_location='cpu')
+ # Handle DataParallel wrapper if present
+ new_ckpt = {k.replace('module.', ''): v for k, v in ckpt['trans'].items()}
+ trans_encoder.load_state_dict(new_ckpt, strict=True)
+ trans_encoder.eval().to(comp_device)
+
+ print("Loading mean/std from BABEL dataset...")
+ mean = np.load('babel_272/t2m_babel_mean_std/Mean.npy')
+ std = np.load('babel_272/t2m_babel_mean_std/Std.npy')
+
+ # --- Inference ---
+ motion_history = torch.empty(0, 16).to(comp_device) # Start with no history
+ cfg_scale = 7.0
+ text_prompt = "a person is running forward"
+ desired_frames = 240 # How many frames of motion to generate
+
+ print(f"Generating motion for '{text_prompt}' with CFG scale: {cfg_scale}")
+ with torch.no_grad():
+ # Use the correct inference function for the streaming model
+ _, motion_latents = trans_encoder.sample_for_eval_CFG_babel_inference_new_demo(
+ B_text=text_prompt,
+ A_motion=motion_history,
+ tokenizer='t5-xxl',
+ clip_model=t5_model,
+ device=comp_device,
+ cfg=cfg_scale,
+ length=desired_frames
+ )
+
+ print("Decoding latents to full motion...")
+ motion_seqs = net.forward_decoder(motion_latents)
+
+ # --- Denormalize, Correct Speed, and Save ---
+ motion_denormalized = motion_seqs.detach().cpu().numpy() * std + mean
+
+ # --- FIX 2: Subsample the frames to correct the speed ---
+ motion_realtimespeed = motion_denormalized.squeeze(0)[::4, :]
+
+ output_dir = 'demo_output_streamer'
+ os.makedirs(output_dir, exist_ok=True)
+
+ safe_filename = text_prompt.replace(" ", "_").replace("'", "")
+ output_bvh_path = os.path.join(output_dir, f'{safe_filename}_final.bvh')
+ save_motion_as_bvh(motion_realtimespeed, output_bvh_path, fps=30)
\ No newline at end of file
diff --git a/demo_motionstreamer.py b/demo_motionstreamer.py
new file mode 100644
index 0000000000000000000000000000000000000000..9785d99df25c12f02e0723a52d2ddb79593c35e7
--- /dev/null
+++ b/demo_motionstreamer.py
@@ -0,0 +1,157 @@
+import os
+import torch
+import numpy as np
+from models.llama_model import LLaMAHF, LLaMAHFConfig
+import models.tae as tae
+import options.option_transformer as option_trans
+import warnings
+
+import smplx
+from utils import bvh, quat
+from utils.face_z_align_util import rotation_6d_to_matrix, matrix_to_axis_angle, axis_angle_to_quaternion
+from sentence_transformers import SentenceTransformer
+warnings.filterwarnings('ignore')
+
+def save_motion_as_bvh(motion_data, output_path, fps=30):
+ """
+ Saves a denormalized 272-dim motion numpy array to a BVH file.
+ """
+ print(f"--- Starting direct conversion to BVH: {os.path.basename(output_path)} ---")
+ try:
+ if isinstance(motion_data, torch.Tensor):
+ motion_data = motion_data.detach().cpu().numpy()
+ if motion_data.ndim == 3 and motion_data.shape[0] == 1:
+ motion_data = motion_data.squeeze(0)
+ elif motion_data.ndim != 2:
+ raise ValueError(f"Input motion data must be 2D, but got shape {motion_data.shape}")
+
+ njoint = 22
+ nfrm, _ = motion_data.shape
+
+ rotations_matrix = rotation_6d_to_matrix(torch.from_numpy(motion_data[:, 8+6*njoint : 8+12*njoint]).reshape(nfrm, -1, 6)).numpy()
+
+ global_heading_diff_rot_6d = torch.from_numpy(motion_data[:, 2:8])
+ global_heading_diff_rot = rotation_6d_to_matrix(global_heading_diff_rot_6d).numpy()
+ global_heading_rot = np.zeros_like(global_heading_diff_rot)
+ global_heading_rot[0] = global_heading_diff_rot[0]
+ for i in range(1, nfrm):
+ global_heading_rot[i] = np.matmul(global_heading_diff_rot[i], global_heading_rot[i-1])
+
+ velocities_root_xy = motion_data[:, :2]
+ height = motion_data[:, 8 : 8+3*njoint].reshape(nfrm, -1, 3)[:, 0, 1]
+
+ inv_global_heading_rot = np.transpose(global_heading_rot, (0, 2, 1))
+ rotations_matrix[:, 0, ...] = np.matmul(inv_global_heading_rot, rotations_matrix[:, 0, ...])
+
+ velocities_root_xyz = np.zeros((nfrm, 3))
+ velocities_root_xyz[:, 0] = velocities_root_xy[:, 0]
+ velocities_root_xyz[:, 2] = velocities_root_xy[:, 1]
+ velocities_root_xyz[1:, :] = np.matmul(inv_global_heading_rot[:-1], velocities_root_xyz[1:, :, None]).squeeze(-1)
+ root_translation = np.cumsum(velocities_root_xyz, axis=0)
+ root_translation[:, 1] = height
+
+ axis_angle = matrix_to_axis_angle(torch.from_numpy(rotations_matrix)).numpy().reshape(nfrm, -1)
+ poses_24_joints = np.zeros((nfrm, 72))
+ poses_24_joints[:, :66] = axis_angle
+
+ model = smplx.create(model_path="body_models/human_model_files", model_type="smpl", gender="NEUTRAL")
+ parents = model.parents.detach().cpu().numpy()
+ rest_pose = model().joints.detach().cpu().numpy().squeeze()[:24,:]
+ offsets = rest_pose - rest_pose[parents]
+ offsets[0] = np.array([0,0,0])
+
+ rotations_quat = axis_angle_to_quaternion(torch.from_numpy(poses_24_joints.reshape(-1, 24, 3))).numpy()
+ rotations_euler = np.degrees(quat.to_euler(rotations_quat, order="zyx"))
+ positions = np.zeros_like(rotations_quat[..., :3])
+ positions[:, 0] = root_translation
+
+ joint_names = [
+ "Pelvis", "Left_hip", "Right_hip", "Spine1", "Left_knee", "Right_knee", "Spine2",
+ "Left_ankle", "Right_ankle", "Spine3", "Left_foot", "Right_foot", "Neck",
+ "Left_collar", "Right_collar", "Head", "Left_shoulder", "Right_shoulder",
+ "Left_elbow", "Right_elbow", "Left_wrist", "Right_wrist", "Left_hand", "Right_hand"
+ ]
+
+ bvh.save(output_path, {
+ "rotations": rotations_euler, "positions": positions, "offsets": offsets,
+ "parents": parents, "names": joint_names, "order": "zyx", "frametime": 1.0 / fps,
+ })
+ print(f"✅ BVH file saved successfully to {output_path}")
+
+ except Exception as e:
+ print(f"❌ BVH Conversion Failed. Error: {e}")
+ import traceback
+ traceback.print_exc()
+
+
+if __name__ == '__main__':
+ comp_device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
+ args = option_trans.get_args_parser()
+ torch.manual_seed(args.seed)
+
+ # --- Load Models ---
+ print("Loading models for MotionStreamer...")
+ t5_model = SentenceTransformer('sentencet5-xxl/')
+ t5_model.eval()
+ for p in t5_model.parameters():
+ p.requires_grad = False
+
+ print("Loading Causal TAE (t2m_babel) checkpoint...")
+ tae_net = tae.Causal_HumanTAE(
+ hidden_size=1024, down_t=2, stride_t=2, depth=3, dilation_growth_rate=3,
+ latent_dim=16, clip_range=[-30, 20]
+ )
+ tae_ckpt = torch.load('Causal_TAE_t2m_babel/net_last.pth', map_location='cpu')
+ # The TAE checkpoint has weights stored under the 'net' key
+ tae_net.load_state_dict(tae_ckpt['net'], strict=True)
+ tae_net.eval()
+ tae_net.to(comp_device)
+
+ config = LLaMAHFConfig.from_name('Normal_size')
+ config.block_size = 78
+ trans_encoder = LLaMAHF(config, args.num_diffusion_head_layers, args.latent_dim, comp_device)
+ print("Loading your trained MotionStreamer checkpoint from 'Experiments/motionstreamer_model/latest.pth'...")
+ trans_ckpt = torch.load('Experiments/motionstreamer_model/latest.pth', map_location='cpu')
+ trans_encoder.load_state_dict(trans_ckpt['trans'], strict=True)
+ trans_encoder.eval()
+ trans_encoder.to(comp_device)
+
+ print("Loading mean/std from BABEL dataset...")
+ mean = np.load('babel_272/t2m_babel_mean_std/Mean.npy')
+ std = np.load('babel_272/t2m_babel_mean_std/Std.npy')
+
+ # --- Inference ---
+ # The history must be a 2D tensor for the model's unsqueeze operation to work
+ motion_history = torch.empty(0, 16).to(comp_device)
+
+ # --- KEY PARAMETER TO TUNE ---
+ # The author often uses a higher CFG scale for more dynamic motions.
+ # Let's try 7.0, which is a common value in their code.
+ cfg_scale = 7.0
+
+ print(f"Generating motion for text: '{args.text}' with CFG scale: {cfg_scale}")
+ with torch.no_grad():
+ # REVERTED to the correct streaming-native inference function
+ _, motion_latents = trans_encoder.sample_for_eval_CFG_babel_inference_new_demo(
+ B_text=args.text,
+ A_motion=motion_history,
+ tokenizer='t5-xxl',
+ clip_model=t5_model,
+ device=comp_device,
+ cfg=cfg_scale, # Use the tuned CFG scale
+ length=240 # Generate a longer sequence for "run"
+ )
+
+ print("Decoding latents to full motion...")
+ motion_seqs = tae_net.forward_decoder(motion_latents)
+
+ motion = motion_seqs.detach().cpu().numpy()
+ motion_denormalized = motion * std + mean
+
+ # --- Save Output ---
+ output_dir = 'demo_output_streamer'
+ if not os.path.exists(output_dir):
+ os.makedirs(output_dir)
+
+ output_bvh_path = os.path.join(output_dir, f'{args.text.replace(" ", "_")}_cfg{cfg_scale}.bvh')
+ save_motion_as_bvh(motion_denormalized, output_bvh_path, fps=30)
\ No newline at end of file
diff --git a/demo_output_final/He_runs_forward.bvh b/demo_output_final/He_runs_forward.bvh
new file mode 100644
index 0000000000000000000000000000000000000000..532fa89772dd83e6433eda7753f032b5d09b4020
--- /dev/null
+++ b/demo_output_final/He_runs_forward.bvh
@@ -0,0 +1,204 @@
+HIERARCHY
+ROOT Pelvis
+{
+ OFFSET 0.000000 0.000000 0.000000
+ CHANNELS 6 Xposition Yposition Zposition Zrotation Yrotation Xrotation
+ JOINT Left_hip
+ {
+ OFFSET 0.069520 -0.091406 -0.006815
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_knee
+ {
+ OFFSET 0.034277 -0.375199 -0.004496
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_ankle
+ {
+ OFFSET -0.013596 -0.397961 -0.043693
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_foot
+ {
+ OFFSET 0.026358 -0.055791 0.119288
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ }
+ }
+ JOINT Right_hip
+ {
+ OFFSET -0.067670 -0.090522 -0.004320
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_knee
+ {
+ OFFSET -0.038290 -0.382569 -0.008850
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_ankle
+ {
+ OFFSET 0.015774 -0.398415 -0.042312
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_foot
+ {
+ OFFSET -0.025372 -0.048144 0.123348
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ }
+ }
+ JOINT Spine1
+ {
+ OFFSET -0.002533 0.108963 -0.026696
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Spine2
+ {
+ OFFSET 0.005487 0.135180 0.001092
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Spine3
+ {
+ OFFSET 0.001457 0.052922 0.025425
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Neck
+ {
+ OFFSET -0.002778 0.213870 -0.042857
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Head
+ {
+ OFFSET 0.005152 0.064970 0.051349
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ JOINT Left_collar
+ {
+ OFFSET 0.078845 0.121749 -0.034090
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_shoulder
+ {
+ OFFSET 0.090977 0.030469 -0.008868
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_elbow
+ {
+ OFFSET 0.259612 -0.012772 -0.027456
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_wrist
+ {
+ OFFSET 0.249234 0.008986 -0.001171
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_hand
+ {
+ OFFSET 0.084042 -0.008162 -0.014945
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ }
+ }
+ }
+ JOINT Right_collar
+ {
+ OFFSET -0.081759 0.118833 -0.038615
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_shoulder
+ {
+ OFFSET -0.096012 0.032551 -0.009143
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_elbow
+ {
+ OFFSET -0.253742 -0.013329 -0.021401
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_wrist
+ {
+ OFFSET -0.255298 0.007772 -0.005559
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_hand
+ {
+ OFFSET -0.084622 -0.006117 -0.010315
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
+MOTION
+Frames: 60
+Frame Time: 0.033333
+-0.006716 0.635439 0.003921 2.236882 0.448901 -9.392633 11.237519 0.087215 -48.269565 -9.494220 12.077923 95.056491 1.998155 8.029927 -36.930053 -0.040168 0.251556 -0.028917 -10.174984 0.063807 -45.374479 -0.155104 -6.881973 98.782346 2.172367 -6.910757 -38.449578 -0.050705 -0.007687 -0.110204 -1.396152 2.216200 53.116523 0.736695 -1.111145 -8.354277 1.028739 -0.630867 -0.575556 -3.471198 6.641937 -18.889516 1.860218 1.516704 -5.738316 -21.532545 -12.727135 -2.211161 -37.872853 -10.394502 6.329837 65.275876 -78.319630 -56.664406 14.192607 -8.832402 -33.749006 0.000000 0.000000 0.000000 21.649491 13.899351 -2.474835 41.701586 8.926254 9.108270 -69.478430 64.730283 -58.026946 -3.630931 10.170789 -11.144960 0.000000 0.000000 0.000000
+-0.015468 0.790521 0.010676 -0.901549 0.164762 -2.009776 14.794430 6.355408 -39.563821 -8.185178 10.085548 75.876609 -1.577523 4.580413 -27.657551 0.005157 0.204101 0.072600 -7.320245 -5.693256 -40.049647 -0.838544 -13.012720 86.561683 5.571892 4.081987 -26.021319 0.055357 0.080670 0.026436 -6.069710 2.969811 42.565759 1.410087 -2.407506 -8.537236 1.574130 -1.035380 -0.872248 -0.512791 2.913172 -10.123848 4.152964 -3.778817 -4.789230 -20.609692 -9.110492 -1.474121 -37.579540 -12.999181 7.171378 67.908342 -74.412551 -64.595785 23.028560 -6.598860 -42.867364 0.000000 0.000000 0.000000 20.320146 9.393200 -3.446945 43.404170 10.364641 9.216390 -98.738168 71.394501 -91.437992 -17.626919 10.199984 -33.974209 0.000000 0.000000 0.000000
+-0.021614 0.805154 0.018089 -5.904640 1.179227 7.291055 20.124138 11.329897 -44.139343 -3.766625 11.700407 73.501453 0.936016 10.594030 -31.792227 0.007932 -1.058257 0.021954 -9.523014 -13.975652 -56.532020 -0.695653 -22.171158 89.815800 10.252301 6.044424 -11.615166 -0.044474 -0.659118 0.025836 -7.157518 2.026258 38.605547 -0.325789 -1.647864 -9.840915 1.281004 -1.304904 -2.144245 0.263582 1.379076 -15.855220 6.270245 -2.840567 -7.883615 -20.994784 -11.151172 0.027098 -33.902527 -16.842598 0.201645 72.157591 -67.705839 -65.383396 24.559930 -8.820302 -39.358499 0.000000 0.000000 0.000000 18.037174 15.956853 -2.352729 37.974016 22.373251 2.930601 -72.859360 70.801983 -70.800108 -25.407215 9.769678 -47.714266 0.000000 0.000000 0.000000
+-0.029578 0.798006 0.028840 -7.633632 1.619420 9.678626 22.110859 10.997476 -45.043158 -4.335721 8.065811 68.819193 -2.174162 12.479670 -31.527530 -0.015939 -0.919018 0.058358 -8.404105 -13.188047 -62.202503 -0.209348 -21.800323 78.019040 10.098317 3.434166 -9.395387 0.038588 -0.534889 0.080185 -6.774853 0.700049 37.699967 -0.581471 -1.848721 -10.656804 3.039308 -2.008480 0.266981 1.489724 6.192963 -21.187359 6.450639 2.726099 -8.460598 -20.490786 -12.552115 0.157015 -32.420368 -14.874639 -3.262025 69.516846 -65.014274 -64.474781 31.297353 -9.019010 -44.249337 0.000000 0.000000 0.000000 15.466627 18.407063 -0.888850 33.780958 28.343636 1.258998 -78.328324 70.921368 -72.369248 -26.798877 13.812342 -44.687416 0.000000 0.000000 0.000000
+-0.040069 0.791551 0.043329 -8.181504 1.739811 8.174828 22.534833 10.961924 -41.551780 -3.843331 5.085792 68.501751 -2.286186 10.790492 -32.121539 0.055643 0.058032 0.028519 -9.951308 -10.627386 -60.643204 1.308721 -14.594527 63.312850 9.102596 -1.375435 -7.629981 0.101083 0.112946 -0.032811 -6.599449 0.359103 44.513856 -0.463749 -1.833956 -8.672377 4.360551 -2.429303 -0.645217 -1.436040 8.316198 -22.529152 4.516637 9.073640 -8.830016 -20.127040 -15.011463 2.608518 -28.263345 -12.016042 -4.045352 66.764249 -67.282533 -66.360438 40.871460 -6.921064 -43.805491 0.000000 0.000000 0.000000 18.059795 20.277571 3.789775 28.366604 24.599402 2.790414 -91.719393 74.754535 -83.360799 -31.808109 17.737420 -36.740271 0.000000 0.000000 0.000000
+-0.054087 0.778157 0.066854 -6.951795 1.995982 7.333425 22.908136 9.442274 -35.536217 -3.408977 2.008247 66.165503 -4.418037 11.886924 -35.521687 0.073284 -0.193298 -0.020331 -13.358360 -10.069401 -56.140037 2.011253 -10.343699 45.806594 12.048042 -3.096060 -1.353951 0.109217 -0.064809 0.009566 -3.578657 0.057560 47.411935 -0.977243 -1.548276 -6.464995 4.673824 -2.520208 -1.189264 -7.309519 5.936703 -21.443878 0.590848 9.985613 -12.391350 -21.249448 -17.636212 5.651185 -28.609128 -8.970605 -1.046206 44.223280 -70.421354 -47.054864 34.309395 -7.324202 -37.755215 0.000000 0.000000 0.000000 18.102601 22.606559 5.321590 28.755786 19.918155 9.468167 -75.471852 86.020166 -68.120679 -26.974963 16.855294 -23.843060 0.000000 0.000000 0.000000
+-0.074271 0.748144 0.095206 -2.992638 1.425642 3.452444 24.872956 4.256251 -19.028446 -2.670089 -4.570838 57.372919 -6.385501 14.525208 -37.455168 0.081532 0.032838 -0.011552 -16.724384 -11.471824 -55.328073 0.373524 -11.492035 61.129055 7.786902 -6.155919 -10.122550 0.029240 0.123104 -0.065789 -1.983224 -2.944616 44.218286 -0.909099 -0.543142 -3.879588 2.444851 -3.097327 -1.577648 -9.155888 14.491955 -17.878176 -3.185500 15.150320 -5.640596 -22.860927 -17.471702 4.925197 -36.766931 -10.919172 3.245728 20.201809 -74.557641 -15.168956 22.270031 -7.962979 -29.768675 0.000000 0.000000 0.000000 19.210083 21.313852 3.837647 33.478449 22.009051 11.696339 -150.322944 79.160363 -136.452827 -18.284495 19.544598 -16.489372 0.000000 0.000000 0.000000
+-0.095310 0.711878 0.124217 0.613005 0.686933 1.884396 25.370994 2.928184 -14.803837 -2.006046 -5.602145 62.856996 -6.129454 16.544574 -24.060383 0.026006 0.092295 0.061630 -16.860180 -9.468767 -51.290327 -0.697203 -11.461967 77.814963 2.349603 -7.379950 -25.941046 0.189568 0.107946 0.053088 -1.348113 -3.069506 40.626332 0.446163 -0.263212 0.868051 1.771312 -2.779235 -0.488540 -7.072409 18.095042 -15.336098 -4.475680 14.064834 -6.684208 -22.885083 -13.942446 3.652205 -36.718733 -4.067110 5.613480 0.415705 -76.913266 8.990182 19.261173 -9.518900 -18.336519 0.000000 0.000000 0.000000 24.164778 18.144521 5.559240 27.624418 14.804378 8.853861 -144.182917 77.764796 -129.692994 -12.122954 20.693626 -4.912433 0.000000 0.000000 0.000000
+-0.113724 0.698228 0.151737 3.084784 0.116318 -2.943541 23.142988 -1.065479 -17.207831 -4.853597 -7.463104 84.894477 -6.456914 15.918399 -2.934513 -0.019621 0.262206 0.022082 -12.356251 -3.208497 -45.102915 -3.366033 -11.810606 84.726940 -1.595596 -12.238459 -35.024313 0.079170 0.205614 0.033038 -0.420954 -3.863570 43.961438 -0.248930 0.895234 4.275723 0.149087 -1.048683 0.139163 -9.217348 20.712943 -14.562363 -8.544370 16.278197 -4.483090 -23.829577 -9.981374 2.287017 -38.863925 0.980098 5.197720 9.870440 -74.639363 0.861378 21.153057 -9.231791 -22.920324 0.000000 0.000000 0.000000 22.158840 19.273035 3.827583 26.374854 18.968865 4.352852 -93.398469 75.821759 -79.663344 -15.497680 20.134697 0.755851 0.000000 0.000000 0.000000
+-0.132055 0.718886 0.180284 7.349191 1.021006 -8.571811 14.340513 -6.170849 -27.516061 -3.412982 -3.009405 90.508120 -5.680121 11.526170 -9.379837 0.076006 0.571405 -0.082650 -5.702146 -0.101799 -27.599538 -3.363690 -9.534888 80.937509 -0.307394 -13.976316 -38.991391 0.000891 0.409773 0.027082 0.136089 0.760344 47.463022 -3.935193 1.008978 0.646113 -1.503633 1.631712 1.239574 -7.286422 17.431366 -7.781291 -5.121733 16.365464 2.491847 -24.114711 -9.452708 -1.541897 -40.236722 -3.152424 4.291228 25.890248 -73.385369 -9.048964 19.925987 -15.105212 -16.013240 0.000000 0.000000 0.000000 18.899346 19.533050 1.677318 28.213331 16.858498 0.841483 -58.955665 68.638500 -48.259003 -20.847196 18.823890 -3.041316 0.000000 0.000000 0.000000
+-0.148102 0.717365 0.210837 5.506260 0.968670 -12.252759 8.263709 -2.967523 -39.723167 -0.590577 10.708640 80.833435 -3.032851 8.264070 -20.649656 0.036493 0.816697 -0.130642 2.841119 -0.256504 -13.109033 -2.634987 -5.928007 82.139577 0.076702 -15.341206 -35.725376 -0.137997 0.488396 -0.128388 0.064030 5.633129 45.768569 -2.880318 0.152030 -1.120610 -0.861711 2.932075 0.972118 -4.969860 7.525181 -5.315452 -2.943773 8.256830 5.889126 -24.734216 -8.121360 -2.796472 -40.845807 -1.025005 1.533656 28.642884 -69.115047 -6.676576 15.077423 -16.868750 1.774512 0.000000 0.000000 0.000000 18.668357 17.742627 -0.228687 30.269342 13.594732 -0.510083 -66.637747 63.983478 -51.615482 -20.483005 19.332615 -1.896602 0.000000 0.000000 0.000000
+-0.163187 0.727922 0.245168 3.529295 0.573151 -11.787611 3.771482 0.999412 -43.953244 3.173632 25.143288 60.935205 -2.598804 8.412690 -10.327806 -0.002007 0.931417 -0.122176 8.387335 -4.027878 1.422886 -3.209007 -3.334072 71.328646 -1.699637 -14.372196 -32.623627 -0.026662 0.607843 -0.117168 -1.046195 8.611630 40.433026 -2.904729 -1.160762 0.105970 0.385415 3.544511 0.428046 -7.647537 5.447667 -8.037361 -3.019389 9.970832 5.968643 -23.949678 -8.466173 -4.694092 -43.528488 -0.749450 0.982339 43.951862 -70.592810 -19.744854 12.619292 -15.851391 8.544065 0.000000 0.000000 0.000000 16.842799 16.271195 -1.428815 28.651368 11.986634 -4.223998 -80.188887 59.586805 -63.408949 -15.848314 19.504940 3.352958 0.000000 0.000000 0.000000
+-0.177063 0.738045 0.280430 1.998799 0.150445 -8.403791 3.299917 -3.565755 -43.231415 -1.541691 22.021636 48.348283 1.546571 7.930074 -7.657278 0.022813 0.609535 -0.053472 8.011380 -7.265205 8.702590 3.083344 -2.824879 61.723591 1.742610 -1.987288 -14.846212 0.023649 0.389294 -0.022635 -1.558699 11.779331 32.545582 -3.838881 -0.515180 -0.082944 0.189554 5.389549 0.319595 -7.248804 8.072905 -8.384403 0.277382 10.317407 1.017218 -23.203255 -7.134694 -5.956992 -41.332404 -0.370013 1.750391 68.791799 -74.958278 -48.458108 15.336426 -15.894133 2.817315 0.000000 0.000000 0.000000 18.812383 13.092418 -0.138447 30.936360 7.964247 -1.415058 -89.690257 63.887928 -73.231584 -16.470230 20.418491 0.889028 0.000000 0.000000 0.000000
+-0.190370 0.746959 0.314713 6.802330 0.243292 -2.665432 3.899501 -9.941778 -43.043937 -6.521082 13.570135 52.595079 4.522006 6.281225 -19.330381 0.006336 0.293921 -0.028974 4.166673 -5.300817 6.267904 3.453629 0.270862 59.577629 12.657905 5.285283 5.259532 0.005831 0.199061 0.049878 -7.490422 15.463894 25.833031 -4.527321 0.024564 -0.001538 -1.395729 4.586540 0.238476 -4.349834 5.084606 -10.785203 2.798490 1.700224 -4.238834 -25.420958 -3.194351 -4.762178 -36.033126 -0.954343 5.082885 115.518585 -76.185971 -94.818270 18.182764 -14.643158 -1.229015 0.000000 0.000000 0.000000 25.179099 8.269099 0.836450 39.238142 4.204877 4.989991 -92.605601 65.053713 -76.326310 -17.981706 19.814914 -1.575554 0.000000 0.000000 0.000000
+-0.207381 0.747242 0.343522 5.607158 0.598025 -5.467685 4.398422 -8.784530 -30.794516 -9.556879 4.874698 55.053493 5.537703 7.434143 -30.389357 -0.030848 0.244370 0.026091 -0.610469 -1.078235 -9.067154 -0.427351 -3.571986 83.599022 10.327516 1.520326 2.342679 0.061976 0.271292 0.047217 -8.580949 11.460181 28.288189 -0.609505 0.126702 1.488051 -0.668324 2.281131 0.971810 -2.471349 2.680805 -15.157861 2.064837 -6.502241 -4.950911 -24.821178 -7.716024 -3.547332 -40.229477 -10.579684 9.593613 143.547856 -74.530703 -120.715066 19.484025 -15.933044 -5.810672 0.000000 0.000000 0.000000 28.712623 9.490720 -0.522628 47.427979 3.103727 8.988705 -86.476938 61.629834 -71.610121 -13.182006 17.152409 -5.167007 0.000000 0.000000 0.000000
+-0.225702 0.752299 0.374323 1.253729 0.250105 -10.985093 7.022513 -4.652559 -16.656926 -10.355047 -2.034062 60.045125 2.672412 9.361185 -39.100727 -0.033800 0.149869 -0.028246 -9.232537 -0.975937 -25.257636 -2.055911 -3.795465 86.925473 6.065584 -4.303347 -16.690798 0.053271 0.148476 -0.022263 -4.062135 4.862130 33.707542 2.028489 -1.633588 2.303976 -0.121749 -0.573658 1.592429 -5.707874 6.790838 -10.986157 -0.697189 -5.325102 0.549232 -19.955573 -16.885852 -2.189748 -41.111270 -26.954694 10.963555 152.732487 -76.873001 -128.696123 17.213162 -14.835314 -9.450724 0.000000 0.000000 0.000000 27.288635 9.872046 0.326896 47.997042 -0.666256 8.409854 -81.081957 61.085983 -64.175139 -11.959964 15.604783 -2.940154 0.000000 0.000000 0.000000
+-0.245132 0.763675 0.412814 -1.407045 -0.644272 -11.546427 9.073928 -2.314644 0.596864 -9.396275 -9.657582 58.639245 -1.853276 11.928263 -40.081106 0.032285 0.177816 -0.017185 -13.612646 -2.528511 -36.025684 -1.825970 -3.539300 53.679215 8.457223 -6.676484 -16.581537 -0.021630 0.228747 0.010166 -1.572179 -0.992729 30.079771 2.693082 -2.117373 1.831097 0.286782 -2.997640 3.580581 -9.410852 13.694098 -6.109480 -2.555359 2.394494 4.242002 -14.016455 -21.594734 -3.681704 -41.515121 -38.591893 14.075537 148.776333 -78.583169 -124.925412 13.670182 -8.338765 -13.478430 0.000000 0.000000 0.000000 23.740120 5.154498 1.702852 43.958867 -6.211585 10.963237 -77.592497 68.023827 -59.589814 -8.748016 9.113778 -4.586092 0.000000 0.000000 0.000000
+-0.266877 0.775400 0.456794 -1.235556 -0.451135 -8.221697 11.905115 -0.825545 12.846804 -7.445748 -17.911976 46.804369 -4.517033 7.181045 -16.872399 0.057578 0.358639 -0.142280 -17.382439 -3.613732 -38.147615 1.450517 -4.051313 31.223027 8.344701 -3.531844 -5.082900 0.097427 0.251620 -0.037028 -0.730035 -5.647928 20.963997 2.607734 -2.457194 4.980185 1.093292 -4.295624 2.768402 -4.048526 11.508476 -4.604062 -0.363664 5.122342 5.505701 -16.822884 -16.185172 -2.189169 -48.064308 -35.783132 20.085843 163.408611 -76.244578 -139.482032 15.337400 -8.654379 -15.836742 0.000000 0.000000 0.000000 22.507494 -1.061221 0.609017 41.313466 -4.734361 7.201930 -81.301608 64.096012 -67.116647 -10.421899 4.958717 -14.369719 0.000000 0.000000 0.000000
+-0.289017 0.760856 0.495535 0.627818 -0.525044 -5.715790 13.436113 -1.607598 14.713399 -6.296522 -18.552788 51.104427 -4.783258 9.808175 1.943076 -0.027199 0.345573 -0.145950 -19.499512 -3.774881 -41.559180 2.196261 -11.245646 47.046024 5.772784 -4.978174 -7.312835 0.062040 0.153636 0.001800 0.770419 -9.140660 21.887066 5.391434 -4.854728 4.813189 2.020836 -6.079846 0.488692 0.327739 6.877185 -12.194334 0.004200 -1.597503 1.148647 -20.642608 -14.667169 2.368577 -48.429495 -26.298867 20.650676 177.032041 -78.320388 -151.999015 9.758838 -7.987990 -19.827293 0.000000 0.000000 0.000000 22.523577 3.649143 -0.660625 38.264980 1.144529 1.709270 -78.880786 54.519720 -67.689995 -17.004096 3.434191 -19.435745 0.000000 0.000000 0.000000
+-0.305488 0.741900 0.528271 -0.744216 -1.730811 -6.394457 12.090197 -3.502299 12.614745 -7.171303 -15.297656 70.456730 -8.628433 11.346763 5.629571 -0.025024 0.537887 -0.012656 -13.566462 0.950586 -43.537074 -1.235496 -14.283364 65.666986 -0.173034 -5.646255 -20.947677 0.025311 0.394815 0.039061 1.737821 -11.627606 28.273641 6.712971 -2.989761 5.200771 2.333062 -4.936957 -1.731122 0.224629 4.738252 -19.727035 -2.651440 -4.210923 -8.724390 -25.543406 -13.898435 4.871404 -50.021904 -16.589003 18.170603 158.212477 -82.649979 -134.287048 7.294588 -9.781985 -21.801811 0.000000 0.000000 0.000000 26.284862 10.733051 1.448885 36.982467 7.282007 -1.097566 -69.796804 48.636779 -65.990271 -19.777999 4.943522 -26.418113 0.000000 0.000000 0.000000
+-0.319599 0.742849 0.556888 1.575374 -2.512801 -4.667279 8.915517 -6.464650 -6.134679 -8.771071 -9.033962 90.611361 -11.403646 5.172322 8.421425 -0.109486 0.122678 0.029801 -9.794021 3.999542 -40.110464 -1.152029 -12.681191 68.498670 -4.361199 -7.206895 -31.091801 -0.026198 0.078238 0.068352 2.246471 -8.564060 31.024679 3.323071 -0.116337 2.452840 0.686827 -1.836894 -2.582289 0.649330 -0.964630 -22.068769 -0.819341 -5.348989 -12.261439 -26.264154 -12.662854 4.873238 -51.973413 -10.209530 18.782540 136.296911 -81.549270 -115.088757 15.368409 -10.671446 -26.529138 0.000000 0.000000 0.000000 24.914485 15.831614 0.994767 40.203734 13.704881 -1.420731 -64.008470 43.156570 -64.647815 -23.593563 7.951879 -25.700104 0.000000 0.000000 0.000000
+-0.330255 0.759589 0.586079 3.559711 -3.488498 -6.695235 4.554199 -10.394798 -27.456772 -3.562992 0.366128 98.802483 -4.988087 4.174920 -5.365738 -0.131660 -0.046582 0.077670 -5.125494 5.278812 -30.064452 2.924748 -8.438457 69.524676 -5.212254 -7.714776 -34.565365 -0.000654 0.027442 0.085107 2.151370 -1.834091 33.844665 1.606335 0.721129 1.181095 -0.484444 0.015146 -0.860362 0.431990 -4.454879 -19.486452 -0.436380 -5.109892 -12.069205 -23.170699 -10.247355 2.253951 -52.113143 -5.823750 17.177936 134.759135 -76.259550 -112.113188 17.592773 -11.180138 -26.350988 0.000000 0.000000 0.000000 21.654135 17.358518 -0.612918 42.067610 15.664758 0.467440 -65.052684 46.466834 -62.180470 -17.350818 9.841745 -19.454019 0.000000 0.000000 0.000000
+-0.337826 0.800029 0.618826 4.517922 -4.483086 -9.766161 2.359783 -9.469621 -38.817875 -3.467466 9.358871 79.244421 0.137753 5.734416 -15.636220 0.035358 0.281145 0.003154 -1.612908 2.106351 -14.231120 4.261359 -2.976533 66.339060 -1.380206 -5.051916 -31.324162 -0.006750 0.168816 -0.035560 2.966440 3.516087 34.793205 2.154251 0.353949 3.775554 0.001275 2.519546 1.119986 -0.622539 -0.646265 -16.963786 -2.644055 -2.775932 -10.217740 -22.780301 -7.723566 0.117870 -52.907651 -2.470178 14.350706 113.918769 -80.168042 -88.003003 19.227745 -10.692161 -21.426336 0.000000 0.000000 0.000000 21.016865 19.056578 0.860006 40.664287 19.726385 2.140073 -67.823663 50.614677 -58.394472 -14.956850 10.559081 -17.220404 0.000000 0.000000 0.000000
+-0.343106 0.839139 0.659679 3.133229 -5.563747 -9.533584 -1.998040 -6.415301 -32.481090 -2.091360 8.646357 31.603994 -4.092619 3.818827 -10.243423 -0.106317 -0.046987 0.013563 0.662238 -0.442746 5.324764 10.114826 6.389563 52.078168 0.189823 -3.348401 -24.102150 -0.065846 -0.032906 -0.042868 6.184991 5.002399 28.201548 0.653215 3.608201 5.292411 -0.077370 5.074223 2.979909 -0.919821 -1.699395 -12.412337 -4.139544 0.000538 -7.993555 -23.910346 -4.023813 1.096249 -54.735141 1.198706 14.156711 58.357604 -76.656486 -34.315333 9.225120 -13.040573 -16.602639 0.000000 0.000000 0.000000 22.283983 13.127529 1.225651 46.540603 23.347443 5.700233 -68.280718 60.009680 -53.165907 -13.728111 13.332423 -14.107036 0.000000 0.000000 0.000000
+-0.346613 0.851731 0.703028 1.425434 -6.435280 -3.116728 -4.790224 -8.096529 -28.189749 1.812322 9.153995 10.009747 -6.120323 7.205466 -8.832591 -0.090232 0.014420 -0.002977 -0.382610 -1.415361 17.499051 12.967884 16.179333 36.749557 4.642354 -2.621192 -13.369909 -0.031867 0.061920 0.096166 7.171928 7.315159 18.260588 -0.219790 5.481792 3.016823 0.604422 7.423603 3.380419 -4.041449 -4.031801 -10.291435 -5.167044 0.718060 -3.734816 -24.508525 -0.965733 1.166427 -54.971584 3.395920 15.246545 43.155539 -67.161132 -23.685054 3.436126 -15.542565 -18.540165 0.000000 0.000000 0.000000 25.342550 5.193097 3.242799 52.098100 20.495831 11.205769 -64.522230 68.260664 -46.283004 -11.663734 17.037393 -13.878792 0.000000 0.000000 0.000000
+-0.349793 0.832144 0.746366 4.575636 -6.275769 -1.550857 -5.161445 -11.899230 -32.136471 0.118973 10.380155 37.430670 2.425344 9.796455 -13.231528 -0.150679 0.035814 0.021549 -2.503895 1.104365 18.069238 14.418947 16.423889 42.200367 9.415180 -3.514946 7.857975 -0.051538 0.109305 0.136073 4.902142 10.927168 16.705180 -3.319473 4.763565 5.154927 -0.095585 7.993259 1.597532 -3.471423 -6.815994 -10.869334 -0.978993 -2.820892 -5.092346 -24.992323 -0.518085 -0.178300 -49.678777 1.125854 16.062044 48.488276 -67.039398 -31.007356 5.864378 -16.237054 -23.082857 0.000000 0.000000 0.000000 26.092006 0.823024 3.449238 53.898755 12.877012 13.615370 -48.099826 70.599408 -30.941455 -14.230855 14.576463 -19.819676 0.000000 0.000000 0.000000
+-0.354306 0.804376 0.782639 4.540325 -6.051139 -5.305328 -4.869247 -11.137413 -26.170226 -0.511834 7.266318 56.131594 4.781034 8.217765 -26.418107 -0.120164 -0.043327 -0.004682 -1.959071 1.831800 4.027151 13.951634 0.586800 72.384922 5.477306 -8.350715 -1.772684 -0.037417 -0.025084 0.156967 2.359011 6.782921 21.602075 -5.113331 3.870051 5.306575 -1.579629 5.701287 0.502621 -0.919397 -7.440039 -13.104650 3.500098 -5.814775 -8.239965 -25.159877 -4.214891 -1.356215 -47.288024 -2.574744 17.498141 70.570612 -75.857467 -51.166418 4.583581 -16.232673 -22.120078 0.000000 0.000000 0.000000 27.096974 2.294942 2.890660 54.889564 6.798212 9.979898 -29.404218 65.786049 -13.981834 -11.928687 11.718851 -21.433318 0.000000 0.000000 0.000000
+-0.360300 0.797166 0.817639 0.819530 -5.935782 -9.664602 -4.958302 -6.146962 -13.731486 0.657134 3.354520 58.630440 5.491068 9.744276 -35.239918 -0.134594 0.032294 -0.019432 -2.546652 3.733751 -14.580613 8.551563 -9.195097 81.481694 2.799516 -7.971812 -12.261938 -0.037592 -0.012180 0.090420 0.056181 1.851575 24.327776 -2.728046 1.543474 5.607374 -0.747419 1.088080 0.681345 0.655313 -4.680171 -12.270306 4.508208 -5.272192 -11.446216 -23.103701 -9.498511 -0.114069 -48.527735 -11.129399 16.658709 96.077998 -79.122956 -77.676653 2.688008 -16.882094 -20.889176 0.000000 0.000000 0.000000 26.806042 -1.092297 3.070564 55.023787 -4.123355 6.361540 -20.558287 68.000480 -4.459492 -7.938343 12.381075 -22.943522 0.000000 0.000000 0.000000
+-0.369507 0.821552 0.855199 -1.676305 -6.092801 -9.810831 -2.829151 -1.386000 0.703041 -0.540108 -2.108611 50.316778 1.104209 8.289352 -29.977302 -0.018030 -0.014012 -0.051614 -5.763182 5.296154 -31.061817 8.217410 -12.727746 71.595181 0.448251 -11.185239 -19.123266 -0.012998 -0.062467 0.060211 0.458406 -5.888762 20.175452 -1.259080 -1.118362 6.996269 0.391206 -3.300758 0.850708 -0.077240 -4.500839 -9.674414 4.480673 -6.511748 -8.368248 -22.404725 -11.558961 0.785996 -47.005377 -19.005072 16.133554 84.140223 -79.425780 -67.737258 -2.111312 -17.354276 -18.197949 0.000000 0.000000 0.000000 26.893277 -7.225697 2.449329 52.745911 -13.496648 5.383754 -12.360533 69.504669 1.784303 -12.138644 10.462110 -28.569323 0.000000 0.000000 0.000000
+-0.379917 0.874034 0.895663 0.485192 -5.900098 -5.598733 0.990730 1.486084 7.739559 -4.701480 -7.961187 40.788125 -3.053247 0.926428 -16.152504 -0.015152 0.104151 -0.070967 -7.410933 5.670298 -34.498523 8.338139 -5.529578 35.147447 -1.317929 -11.988800 -14.108610 -0.026364 0.011617 0.013636 -0.068139 -9.690355 14.162256 -0.987064 -2.573783 4.703216 0.272131 -5.298389 0.819050 1.534132 -6.441746 -8.668416 3.463797 -6.991394 -7.062468 -20.831022 -12.178130 1.765819 -52.932528 -22.118395 19.420001 70.148929 -78.665286 -59.477674 1.963753 -17.361860 -24.190037 0.000000 0.000000 0.000000 23.407567 -10.308709 3.268571 50.830753 -19.374598 5.663505 -9.729744 68.324888 1.528791 -19.944315 8.575618 -33.413748 0.000000 0.000000 0.000000
+-0.391845 0.881428 0.936556 4.537941 -5.683400 -2.705466 1.901403 4.187128 12.233601 -6.063346 -11.004773 33.127843 -8.874453 -6.350776 -4.792316 -0.013686 0.143603 -0.116040 -6.814471 3.056803 -29.694592 1.542449 -9.171008 5.802579 -0.480970 -13.083878 -5.354008 -0.057812 -0.003947 0.001652 -0.356864 -11.088926 8.830004 -1.436228 -3.714249 3.854892 -0.749679 -6.612703 1.497758 2.839923 -7.698613 -6.599684 2.381717 -8.331280 -9.062284 -17.316961 -11.379785 0.942306 -60.051029 -25.518403 23.485877 45.533946 -80.262055 -38.811577 4.486572 -15.623884 -25.799737 0.000000 0.000000 0.000000 16.351245 -13.726564 3.323869 50.871135 -22.353426 4.336531 -9.452230 71.647180 -0.354364 -28.090602 5.984500 -36.324222 0.000000 0.000000 0.000000
+-0.404659 0.862138 0.974609 2.788938 -5.834542 -0.134031 6.609905 3.400396 13.628783 -6.955133 -12.908649 36.318065 -13.497486 -10.811358 4.088955 -0.026002 0.050780 -0.078942 -7.664515 3.956707 -33.437468 2.641737 -15.112949 15.442366 -3.976999 -12.496154 -4.200438 -0.045373 -0.045705 -0.023027 2.382356 -12.866488 5.101823 -0.988904 -3.268374 3.382733 0.362896 -7.012613 -0.124509 4.287139 -6.334503 -7.612473 1.545179 -7.497285 -9.278832 -19.485574 -11.520973 2.604061 -61.918499 -23.326610 25.902414 46.433329 -85.253486 -35.772367 3.458557 -19.724097 -21.537957 0.000000 0.000000 0.000000 16.252941 -12.982580 3.480601 52.471043 -21.353666 3.466815 -22.545975 68.308160 -13.955273 -29.238429 10.452376 -37.008477 0.000000 0.000000 0.000000
+-0.416338 0.824516 1.008056 -1.925798 -7.490550 -0.215923 11.046000 2.032758 8.620070 -6.922294 -9.049222 57.025885 -15.503185 -6.561627 10.188628 0.043468 0.018234 -0.061204 -5.960918 9.219641 -39.976991 4.536120 -16.514155 41.847195 -9.175474 -13.098958 -16.672658 -0.072399 -0.006326 -0.012288 5.699667 -14.136659 8.249556 0.845025 -2.284022 3.721769 2.198282 -6.717269 -1.077612 6.925753 -7.273477 -14.336526 2.700876 -6.651354 -12.349717 -21.980091 -12.659222 4.749052 -59.295776 -16.530752 26.254427 138.518052 -83.520902 -123.277251 4.303684 -24.815809 -20.358107 0.000000 0.000000 0.000000 18.427252 -7.090007 2.198584 53.035186 -14.143921 4.919777 -38.172253 68.107722 -29.994408 -30.916712 15.691641 -41.448316 0.000000 0.000000 0.000000
+-0.425659 0.792175 1.037991 -2.726798 -8.739392 -3.336651 10.789168 -1.086811 0.174754 -3.801620 -3.283383 79.020315 -17.815380 -4.294887 14.946411 0.065671 0.080478 -0.032323 -1.508126 14.738261 -32.583233 4.931042 -16.833164 53.691319 -9.912333 -14.905532 -27.280475 -0.006987 0.062265 -0.054658 6.325257 -12.018751 13.058808 0.867599 -1.834163 4.343403 2.785575 -5.094588 -0.952841 4.511639 -6.268463 -15.196656 1.954838 -3.948465 -13.423757 -24.328986 -12.247288 5.042123 -59.869704 -12.320797 26.757354 116.915847 -83.240671 -100.745896 6.176457 -26.551486 -21.765772 0.000000 0.000000 0.000000 20.579130 -1.626069 0.878187 55.892957 -3.255197 8.944882 -62.525134 69.889058 -52.273743 -28.126760 20.516804 -38.589491 0.000000 0.000000 0.000000
+-0.430941 0.800245 1.066361 -1.402246 -9.968022 -6.921879 8.351349 -4.014118 -12.666405 -1.903588 2.764379 89.560263 -13.081140 -1.278861 6.043988 0.058466 0.080556 0.043992 4.628419 13.773756 -19.636685 7.309964 -9.670679 52.661407 -10.328332 -17.227231 -29.198999 0.011196 0.076481 -0.090180 4.858813 -5.919866 16.170912 -0.227378 -0.125515 2.728345 2.009053 -2.091017 0.241838 2.086172 -6.737314 -12.162924 1.678601 -4.715845 -8.591351 -22.926475 -10.800836 3.160244 -60.140077 -9.580977 26.811713 115.990477 -85.253815 -99.550806 7.009838 -25.562177 -26.280803 0.000000 0.000000 0.000000 21.111143 2.863552 0.295870 57.567339 5.714612 12.276339 -68.033316 71.322286 -54.579164 -22.099921 20.404201 -32.015847 0.000000 0.000000 0.000000
+-0.432966 0.853092 1.095183 1.413906 -10.839114 -8.201331 8.451627 -4.077135 -26.153132 -0.401492 7.549407 80.699869 -8.874754 0.386103 -2.440813 -0.010169 -0.016067 0.069253 4.979830 7.928892 -7.728850 12.196109 2.016557 46.950863 -7.860327 -14.931944 -26.628169 0.036055 0.067990 -0.094299 3.389526 0.731521 13.447184 -2.396071 1.711384 0.773713 0.666750 1.312353 1.851113 -0.919454 -9.855193 -6.609327 2.576637 -6.450956 -3.118641 -23.253158 -6.176714 2.227892 -59.293663 -7.421887 25.161238 88.608405 -85.338343 -74.616538 10.283861 -20.523072 -32.662542 0.000000 0.000000 0.000000 20.778118 1.920744 1.348970 59.042690 10.979673 13.937888 -69.082558 73.229767 -57.186302 -17.198391 17.857905 -35.583495 0.000000 0.000000 0.000000
+-0.432776 0.896460 1.128101 2.543779 -11.562615 -6.424931 7.339725 -2.574654 -28.618623 -0.874633 8.616445 48.931610 -8.600850 0.787910 -2.011660 0.029676 0.047589 -0.010178 -0.427658 1.492942 4.294279 12.776581 12.762220 36.606840 -2.445889 -7.432633 -17.922892 -0.027074 0.099910 -0.026912 1.989393 4.388682 7.895815 -3.442677 2.559520 0.393298 -0.220621 3.643819 1.203889 -0.702114 -10.724501 -4.475864 1.910899 -6.561761 -1.890937 -22.697522 -0.858951 2.363884 -59.806476 -4.663687 21.721203 73.498106 -83.042472 -59.689075 8.910812 -19.794659 -36.865372 0.000000 0.000000 0.000000 19.494642 0.298993 2.761164 62.309973 14.259783 14.565347 -54.658234 73.578079 -41.301178 -19.227198 17.900325 -37.544945 0.000000 0.000000 0.000000
+-0.430331 0.911272 1.162881 0.019259 -12.243720 -2.044931 4.435321 -1.579377 -23.791741 1.279465 6.791656 8.965923 -8.960293 3.508861 -2.572538 -0.029688 0.145736 0.026647 -2.964353 -1.406814 12.085202 9.939446 17.334258 25.339777 3.594722 -4.067406 -9.018087 -0.015489 0.108422 0.078075 3.456206 5.084394 2.808934 -2.593662 3.047371 -0.085690 -0.621798 5.043840 0.966799 0.427712 -6.875991 -4.250510 0.301826 -4.929958 -2.283187 -20.715945 3.424744 2.779982 -58.952067 -2.162462 19.177022 62.359500 -79.562695 -48.883816 3.317136 -20.931566 -38.740726 0.000000 0.000000 0.000000 18.138066 -3.334777 4.281496 63.277331 15.597017 13.914857 -49.615909 74.155447 -36.159666 -19.927172 19.007277 -38.635904 0.000000 0.000000 0.000000
+-0.424004 0.881562 1.199465 -0.734872 -12.265338 -1.319264 4.248550 -3.492041 -25.787878 0.082496 7.312710 18.417008 -4.147382 4.786080 -3.333535 0.008839 0.131721 -0.000861 -5.532867 -0.132427 13.097567 11.397223 16.588489 34.197289 6.153994 -5.228982 -3.501593 0.021252 0.110065 0.104759 2.688851 6.732977 2.525245 -2.557249 2.205778 0.595534 -0.091488 5.000992 1.280641 0.868911 -1.980732 -5.351104 0.251082 -0.968538 -2.984357 -19.762059 4.522278 2.535968 -57.065235 1.009619 20.179441 88.292180 -83.634686 -73.121381 2.339850 -21.400126 -40.724333 0.000000 0.000000 0.000000 18.695741 -6.980430 3.800929 60.574308 12.018742 13.588588 -71.606231 80.954435 -55.536250 -21.762674 17.226987 -37.013128 0.000000 0.000000 0.000000
+-0.417591 0.834631 1.232790 2.370564 -12.629970 -6.107793 0.464118 -5.917050 -24.795570 -1.786465 9.141554 41.012066 1.703821 5.940820 -12.403228 -0.021484 0.135359 0.039063 -6.700270 5.426402 5.703658 12.265781 11.811503 60.017598 3.097872 -10.976514 -1.462337 -0.006895 0.102119 0.114647 1.677350 4.414890 5.603113 -3.641563 0.694913 3.913437 0.180499 3.560475 1.614333 -0.834401 -0.322393 -6.977487 0.334560 1.414316 -2.419638 -21.861398 -1.968101 2.127384 -54.456356 -1.495047 21.099756 70.005132 -83.369635 -54.037003 1.800221 -21.514758 -38.569326 0.000000 0.000000 0.000000 22.313925 -5.928335 4.075705 58.497686 5.321366 14.291487 -48.656527 81.806147 -32.240968 -16.966353 15.045193 -37.138384 0.000000 0.000000 0.000000
+-0.415395 0.806014 1.258370 3.620146 -12.640323 -12.527626 -3.116188 -5.187077 -19.206178 -0.015757 10.247528 52.445769 4.069053 10.947682 -22.212396 -0.068053 0.024220 0.029152 -3.508175 8.115715 -3.495726 11.032158 3.559351 78.709533 -1.006956 -14.737542 -12.362033 -0.117455 -0.028907 0.070185 -0.000608 1.462826 13.195673 -3.009955 -0.300753 6.928846 0.074953 1.535457 0.172950 -1.456447 -1.360795 -7.708632 2.305262 -2.261234 -5.968192 -20.723285 -10.036359 2.501146 -52.359042 -10.787962 20.171604 89.354679 -80.553065 -71.691752 2.451096 -19.744881 -33.845291 0.000000 0.000000 0.000000 23.600988 -1.916922 4.764294 58.372352 0.022371 11.075418 -23.393114 72.440638 -6.890055 -7.448677 13.174649 -37.094016 0.000000 0.000000 0.000000
+-0.417049 0.834674 1.281976 3.158169 -12.893072 -14.484082 -4.031103 -0.949466 -6.753472 0.052048 7.984084 47.068604 3.863766 11.582104 -23.662289 -0.094144 -0.019495 0.046298 -2.304943 9.202556 -17.194220 10.519133 -4.039838 75.687409 -1.284359 -13.587804 -12.510350 -0.089385 -0.085646 0.029202 -1.446277 -2.225059 16.253870 -1.009865 -1.316070 6.229822 0.520657 -1.975843 0.084422 -0.871270 -5.816589 -6.133344 3.499250 -11.021292 -3.293921 -18.330318 -14.247681 3.103776 -52.466455 -17.826181 19.089477 101.792378 -81.032066 -85.635764 1.008714 -19.649763 -36.081235 0.000000 0.000000 0.000000 24.067239 -3.270712 3.087894 59.145488 -6.047475 7.485451 -24.295256 68.618154 -6.652495 -7.567401 14.039569 -32.857819 0.000000 0.000000 0.000000
+-0.421495 0.889266 1.308287 2.034670 -14.021943 -10.442584 -3.336370 2.508825 4.495026 -2.054229 1.956693 31.039823 0.483004 8.199230 -16.647519 -0.062279 0.009086 0.005611 -2.195684 6.386170 -27.014891 11.930915 -6.907074 55.396572 -2.784657 -12.361159 -7.430218 0.002710 -0.042080 0.009804 -1.178777 -7.507128 12.569271 1.352118 -3.456976 2.774121 1.362423 -5.496938 0.592970 -0.515911 -10.154177 -3.029628 2.876493 -18.788358 1.343593 -16.071927 -13.077340 3.005215 -53.661075 -22.485913 17.071816 88.963335 -77.956873 -76.171567 -1.954730 -21.078993 -41.840527 0.000000 0.000000 0.000000 23.042550 -8.029454 2.159109 58.230930 -11.540179 6.657163 -22.226555 69.109402 -5.838201 -13.706625 14.156435 -34.068252 0.000000 0.000000 0.000000
+-0.425616 0.943552 1.336544 2.410663 -15.364707 -6.222392 -3.625208 5.362980 6.766759 -1.077085 2.910091 25.776922 -4.058822 2.644288 -5.434164 -0.028137 0.052815 -0.057567 2.230371 3.142717 -24.896246 6.650767 -8.728629 26.752844 -3.319387 -11.210166 2.722983 0.078343 -0.002986 -0.054423 0.015611 -10.884529 6.112638 2.114206 -5.576651 1.793702 0.824522 -7.660168 0.265760 -0.449191 -19.443159 2.873913 3.082346 -27.967028 1.388424 -13.249405 -9.691038 3.873236 -58.754067 -24.129640 18.179715 102.781180 -74.691822 -92.946957 0.439984 -22.122865 -49.342870 0.000000 0.000000 0.000000 18.539042 -10.966786 2.034891 57.350542 -15.601694 5.540174 -24.652118 71.601407 -8.436104 -14.512175 12.720763 -30.915084 0.000000 0.000000 0.000000
+-0.427236 0.958903 1.363218 1.402723 -16.242799 -4.511864 -1.104967 5.365037 4.060587 -3.461933 4.282529 36.751136 -8.430423 -2.648057 2.610715 -0.009393 0.086386 -0.069915 5.486822 5.210515 -16.966540 3.081764 -7.319776 18.470117 -6.734550 -11.430195 -1.230145 0.069681 0.000527 -0.017477 0.889042 -11.148293 2.751281 2.726837 -6.063081 0.556855 0.982260 -8.091021 0.901260 0.928283 -24.924040 6.470943 6.769545 -32.700783 -2.082600 -11.501556 -10.068944 4.575059 -65.218216 -25.787189 21.489739 119.941957 -73.446209 -111.137603 3.725125 -21.545936 -54.845741 0.000000 0.000000 0.000000 14.427028 -10.162792 2.283072 58.971264 -14.384407 0.599858 -26.295627 59.043988 -15.027429 -17.228331 8.531465 -28.411376 0.000000 0.000000 0.000000
+-0.425618 0.937592 1.385270 -3.125222 -17.397574 -3.018878 3.585698 3.199263 -0.153120 -3.336511 3.676857 48.947330 -9.813444 -2.945701 -3.821961 -0.023042 0.129125 -0.076460 8.980569 7.768898 -11.723676 4.628157 0.592760 22.866559 -9.109703 -12.331161 -15.128980 0.002846 0.052067 -0.043675 2.179879 -9.594165 4.331712 3.829221 -5.598447 1.378940 1.842840 -7.390330 1.587140 -0.476951 -26.078740 6.730117 8.856230 -33.416718 -1.105072 -9.939876 -12.868644 2.099567 -68.833234 -29.816091 25.525794 141.517633 -71.506117 -131.780510 0.212179 -22.602982 -50.510959 0.000000 0.000000 0.000000 15.163557 -8.176391 0.556098 60.756886 -12.341541 -2.133220 -27.899221 50.132085 -22.361767 -13.575940 5.740194 -23.903193 0.000000 0.000000 0.000000
+-0.422732 0.910338 1.402383 -5.445071 -18.801356 -3.134185 7.049543 2.799422 -5.977344 -0.717107 5.096427 55.886973 -7.880610 1.582968 -10.187740 -0.049073 0.132487 -0.121422 11.757262 8.515613 -7.410782 5.414192 3.133062 27.300874 -10.085909 -11.920818 -22.147099 0.042102 0.018134 -0.053642 -0.350572 -7.759092 7.295674 4.888863 -5.358211 2.786095 2.975653 -5.700736 2.048578 0.209930 -24.806072 7.103488 11.229129 -31.829976 -0.767308 -10.646844 -13.813777 1.928080 -64.895168 -28.485557 26.000669 134.492280 -76.283218 -123.833804 -1.230693 -20.498195 -44.756585 0.000000 0.000000 0.000000 18.522148 -4.837357 -0.376351 57.228527 -8.535379 -0.455445 -20.909692 44.095589 -15.619159 -2.415168 5.665324 -16.719492 0.000000 0.000000 0.000000
+-0.419116 0.899462 1.417319 -6.054381 -20.614558 -3.975421 9.564706 1.500139 -13.599420 -0.075099 2.827306 58.943680 -6.276506 5.909597 -13.076155 -0.031809 0.122796 -0.106797 12.290608 6.246239 -1.979581 6.721940 9.291682 25.748778 -10.079518 -12.970294 -22.899880 0.041136 0.033318 -0.089876 -1.648490 -4.547706 7.483220 4.581044 -5.097218 3.083837 3.529308 -4.236442 3.189431 1.834788 -22.548752 6.030218 11.212537 -28.249619 -0.129008 -14.358583 -10.209388 3.038332 -56.663396 -18.757416 24.234564 125.055402 -82.503252 -116.637450 -3.982316 -17.258180 -45.252929 0.000000 0.000000 0.000000 21.987530 -3.173524 -0.921870 54.240925 -4.980775 4.754438 -15.361603 43.189989 -5.730359 0.166009 4.929696 -12.957032 0.000000 0.000000 0.000000
+-0.413027 0.914599 1.430041 -4.067432 -22.618853 -4.732271 10.670767 -2.720890 -17.145520 -1.276346 -3.494184 46.647492 -6.663722 5.791126 -10.824620 -0.071956 0.051502 -0.080472 9.098615 5.458720 3.510707 7.635614 16.031361 19.827349 -7.206445 -10.831480 -20.937446 -0.036810 0.028522 -0.122379 -2.401630 -1.722118 7.017460 1.970876 -3.642967 2.605054 2.433946 -1.623702 3.189340 1.789731 -12.966727 0.906169 7.536989 -17.616456 3.983652 -16.751081 -5.277079 1.960028 -56.569204 -10.398751 26.615610 145.505088 -83.421449 -144.303830 0.760507 -13.444620 -58.669540 0.000000 0.000000 0.000000 22.595835 -5.145211 -1.112152 57.581679 -1.205801 8.892288 -14.436316 44.047460 -5.119114 -5.262877 5.040162 -16.536026 0.000000 0.000000 0.000000
+-0.404679 0.937235 1.441780 -2.284743 -25.336599 -3.938434 9.996846 -4.703979 -11.760620 -2.244024 -11.052324 23.184209 -9.538955 0.281541 -7.058663 -0.043627 0.144364 -0.077759 4.480944 4.511667 5.600931 7.162229 22.153407 12.466140 -2.914886 -5.692514 -16.211309 -0.047199 0.080397 -0.126422 -2.047005 -0.737625 5.711273 0.199841 -1.028045 3.034959 1.325690 0.492979 3.042108 2.368229 -5.320246 -0.109843 3.822672 -7.769187 4.244379 -16.376836 -0.200968 1.323084 -58.999883 -2.232812 24.310160 146.666311 -78.833968 -152.359989 4.715720 -8.976246 -73.050018 0.000000 0.000000 0.000000 21.455157 -6.269462 0.480697 60.382312 0.839567 10.199547 -14.124099 45.524623 -10.649218 -12.318917 3.079640 -22.865533 0.000000 0.000000 0.000000
+-0.393014 0.941722 1.453116 -1.549297 -28.547569 -2.118819 8.308110 -3.678058 -8.883775 -3.046031 -10.650476 18.974397 -9.089871 -1.532979 -7.327140 -0.065527 0.151092 -0.035439 -0.792091 4.545924 2.712979 5.994463 23.281269 11.829230 0.125923 -2.786440 -15.551288 -0.020473 0.080481 -0.089827 -1.267378 -0.545976 3.721887 -0.928456 1.200125 4.803741 0.582455 1.437810 2.153886 1.062473 -0.904804 0.215278 1.116465 -1.330476 1.453178 -16.494962 1.879849 1.731542 -59.377189 2.975758 20.665881 133.851056 -78.094442 -136.582675 2.246510 -8.982972 -69.656508 0.000000 0.000000 0.000000 21.754668 -4.474540 1.742566 59.847230 2.219180 10.906894 -10.254379 45.803464 -5.845828 -12.049245 4.523205 -21.141041 0.000000 0.000000 0.000000
+-0.378374 0.924355 1.461825 0.266555 -31.326131 -5.331085 3.135188 -4.090239 -6.600582 -4.235442 -8.906360 26.483542 -4.444350 -0.834881 -17.355970 -0.091895 0.040836 -0.013082 -6.774893 5.144303 -4.682383 8.199644 19.197218 27.851790 -0.220033 -4.981823 -19.923579 -0.035776 0.035089 -0.034481 -0.315113 -0.506950 7.386008 -2.050808 3.331629 7.322441 -0.102828 2.222789 1.757838 -1.417793 1.037177 -1.331636 -1.138396 2.458691 0.054456 -17.206323 -1.466927 1.760721 -58.782146 4.423774 19.466530 141.717901 -79.237595 -137.316498 -0.593079 -9.316786 -58.494452 0.000000 0.000000 0.000000 23.542935 -0.646728 2.721270 58.319529 3.213539 10.642386 -11.280262 48.153388 -3.160599 -7.007988 6.209230 -18.033867 0.000000 0.000000 0.000000
+-0.365159 0.906304 1.466523 2.639041 -33.424058 -9.902041 -1.344263 -4.534915 -7.295113 -4.712551 -5.517278 33.532146 -1.127167 2.039211 -22.221655 -0.085568 -0.035855 0.006483 -11.072736 4.291561 -10.461081 8.098747 11.644018 40.349305 -1.204730 -9.799111 -21.943529 -0.055866 -0.026950 -0.020907 1.812179 0.298469 14.247818 -3.487453 3.624718 6.753981 -1.257949 2.632409 1.964415 -3.860573 6.287995 -2.837695 -1.646234 8.250022 5.398185 -18.968590 -5.064135 -0.453259 -56.214755 0.317768 22.054125 139.713615 -84.112945 -130.322862 -2.646364 -11.143015 -48.171507 0.000000 0.000000 0.000000 25.499994 0.133365 2.615824 56.193903 4.081797 10.594896 -17.207017 52.220974 -8.074535 -3.755143 7.504095 -18.007311 0.000000 0.000000 0.000000
+-0.354675 0.902836 1.467903 0.073460 -36.126032 -7.804840 -2.256392 -3.598117 -8.970161 -2.137505 -2.946475 31.022775 0.403103 5.593942 -21.028965 -0.114792 -0.024586 0.020514 -8.081122 0.816416 -12.573426 4.904637 -0.686215 41.629649 -2.740326 -14.433292 -20.129130 -0.030949 -0.022152 -0.048004 3.218435 -0.053705 15.043140 -2.825865 3.359068 3.365973 -0.661885 2.936779 2.845909 -1.771461 8.765035 -2.733621 -0.662882 8.467454 7.461714 -20.534815 -4.945574 -0.427507 -54.641363 -3.420710 23.118662 128.452595 -85.983330 -117.004787 -4.613724 -11.605503 -41.737324 0.000000 0.000000 0.000000 25.525831 -1.196889 2.577851 56.322250 5.295624 10.246489 -19.088515 51.870346 -10.560343 -4.214239 8.844461 -17.202763 0.000000 0.000000 0.000000
+-0.346527 0.922811 1.468667 -2.248075 -38.411727 -4.756799 -3.175811 0.758265 -5.690323 0.526822 3.526337 18.896637 0.964579 7.999573 -12.938477 -0.118497 -0.035231 0.014611 -3.369137 -2.379675 -8.515961 5.894545 -9.971100 39.236836 -1.058792 -13.692181 -16.184423 -0.060381 -0.042225 -0.061487 2.230235 -0.859797 11.260542 -1.373464 3.423244 2.286747 0.192599 2.488301 3.191933 -0.398431 7.309720 -3.009540 -0.236366 5.671285 4.261045 -19.149993 -1.448372 -1.193692 -56.256508 -4.688723 21.586383 112.937821 -80.417952 -99.661153 1.908609 -9.439487 -43.910716 0.000000 0.000000 0.000000 23.389101 -3.628188 1.018807 58.978073 6.871165 9.023899 -15.731270 45.630254 -7.946799 -9.619610 9.956433 -19.792901 0.000000 0.000000 0.000000
+-0.341148 0.928539 1.468498 -2.296293 -38.884686 -1.601009 -3.717690 3.638189 -1.154372 0.095685 10.396240 8.055529 -0.085141 10.133742 -9.394589 0.016149 -0.049601 0.011139 0.174288 -2.904454 -4.757481 6.579781 -6.893961 32.353402 0.797402 -10.153834 -10.213450 -0.030176 -0.078997 -0.076301 0.718021 -0.376157 7.986429 -1.376456 5.595866 3.035556 0.625473 3.108851 3.693378 -0.979705 7.058759 0.487914 -0.696477 6.086622 3.232737 -17.094401 0.914012 -2.729746 -56.467392 -5.992464 17.388686 94.046087 -73.478308 -79.412124 6.607881 -9.900120 -37.504911 0.000000 0.000000 0.000000 22.137488 -2.616251 1.268850 58.530974 6.958840 8.378908 -11.043357 39.165046 -2.159507 -8.245291 9.621086 -17.277938 0.000000 0.000000 0.000000
+-0.341998 0.905988 1.472017 -2.650219 -39.646343 -4.277677 -1.839300 5.110087 2.892020 0.258542 6.220507 10.930007 1.130129 10.442640 -15.368427 -0.121792 -0.069292 0.058597 -1.427581 -3.875676 -1.534721 5.980660 -4.488141 29.104683 -1.542951 -10.756410 -14.168507 0.050602 -0.027685 -0.001244 -0.415898 -1.820387 9.092986 -0.457638 3.571131 6.396763 1.161360 0.852597 2.317266 0.414750 4.235243 0.000916 0.224269 5.719823 1.691593 -18.511245 -6.982152 -1.028224 -47.442311 -9.962557 14.830022 30.857270 -68.952719 -16.987550 4.017325 -10.342907 -23.409437 0.000000 0.000000 0.000000 23.284078 5.060029 0.900022 53.268831 10.147469 12.675840 -2.385425 37.004669 12.755285 -4.954276 7.163874 -6.155233 0.000000 0.000000 0.000000
+-0.336922 0.918232 1.472078 -2.562196 -41.436296 -4.326002 -1.649899 4.984454 2.269258 0.628501 7.717018 13.828351 0.454469 8.916342 -14.285577 -0.023483 -0.013781 0.035015 -1.316300 -2.378715 -1.275543 5.968704 2.520755 19.931352 -0.837863 -6.428740 -13.826655 -0.010966 -0.084425 -0.034795 0.886706 -1.925937 9.394152 -1.455924 4.848756 5.564559 -0.273710 2.113174 2.304243 0.978458 -0.519008 1.080130 1.394541 2.560735 1.956505 -19.391777 -3.505465 0.406823 -56.359267 -7.931664 18.051340 48.555731 -75.488774 -31.829473 4.049292 -11.345778 -31.656836 0.000000 0.000000 0.000000 23.208299 1.822631 3.382276 58.203544 8.240456 9.094069 -7.032933 32.003116 7.275918 -3.487323 4.903536 -14.528939 0.000000 0.000000 0.000000
+-0.330001 0.912979 1.471457 -3.287149 -42.767014 -5.004079 0.515263 3.495812 3.502840 -0.710360 5.055069 13.269257 -0.248974 6.242509 -15.468851 -0.095873 -0.056282 0.040123 -1.982512 -1.072387 -1.508954 5.353180 4.954859 16.252388 0.441354 -5.055883 -13.484060 0.005203 -0.067872 -0.053374 0.538286 -2.213113 10.473733 -1.519399 4.010545 6.264011 0.331889 1.459012 1.096048 1.201208 0.576367 0.184118 1.799888 5.336247 4.768701 -22.599876 -2.806734 2.139070 -57.098937 -5.961104 18.877210 50.105483 -76.325158 -30.986463 4.793714 -15.718895 -32.461681 0.000000 0.000000 0.000000 26.191685 0.103821 3.807795 57.582227 6.118644 7.681765 -11.816913 28.685095 2.535547 -1.591397 9.582795 -16.086018 0.000000 0.000000 0.000000
+-0.324169 0.915716 1.470282 -4.877478 -44.134806 -4.071492 0.595755 2.537328 3.162995 -0.770970 3.955205 12.162114 0.948472 6.989434 -15.028901 -0.075970 0.019892 0.023163 -1.673476 2.070134 -5.314322 5.522950 5.976709 17.228264 -0.025844 -4.833995 -12.531338 0.051891 -0.024310 0.002919 0.109987 -3.006305 10.764857 -0.947111 3.193599 5.613604 0.708121 0.863717 1.748991 2.039753 3.997099 -1.757868 0.931182 9.028795 5.513306 -23.310985 -4.620186 4.113571 -59.138536 -4.852477 18.959113 21.701625 -68.736876 -1.664160 0.148287 -15.507898 -26.242251 0.000000 0.000000 0.000000 26.538896 0.138991 4.456589 59.817852 7.674141 8.226561 -16.268441 27.075112 -2.094196 -4.648034 10.177606 -17.547306 0.000000 0.000000 0.000000
diff --git a/demo_output_streamer/He_runs_forward.bvh b/demo_output_streamer/He_runs_forward.bvh
new file mode 100644
index 0000000000000000000000000000000000000000..7ffb3760a9449505c4e99f71796b755367bbfcdc
--- /dev/null
+++ b/demo_output_streamer/He_runs_forward.bvh
@@ -0,0 +1,384 @@
+HIERARCHY
+ROOT Pelvis
+{
+ OFFSET 0.000000 0.000000 0.000000
+ CHANNELS 6 Xposition Yposition Zposition Zrotation Yrotation Xrotation
+ JOINT Left_hip
+ {
+ OFFSET 0.069520 -0.091406 -0.006815
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_knee
+ {
+ OFFSET 0.034277 -0.375199 -0.004496
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_ankle
+ {
+ OFFSET -0.013596 -0.397961 -0.043693
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_foot
+ {
+ OFFSET 0.026358 -0.055791 0.119288
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ }
+ }
+ JOINT Right_hip
+ {
+ OFFSET -0.067670 -0.090522 -0.004320
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_knee
+ {
+ OFFSET -0.038290 -0.382569 -0.008850
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_ankle
+ {
+ OFFSET 0.015774 -0.398415 -0.042312
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_foot
+ {
+ OFFSET -0.025372 -0.048144 0.123348
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ }
+ }
+ JOINT Spine1
+ {
+ OFFSET -0.002533 0.108963 -0.026696
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Spine2
+ {
+ OFFSET 0.005487 0.135180 0.001092
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Spine3
+ {
+ OFFSET 0.001457 0.052922 0.025425
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Neck
+ {
+ OFFSET -0.002778 0.213870 -0.042857
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Head
+ {
+ OFFSET 0.005152 0.064970 0.051349
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ JOINT Left_collar
+ {
+ OFFSET 0.078845 0.121749 -0.034090
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_shoulder
+ {
+ OFFSET 0.090977 0.030469 -0.008868
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_elbow
+ {
+ OFFSET 0.259612 -0.012772 -0.027456
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_wrist
+ {
+ OFFSET 0.249234 0.008986 -0.001171
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Left_hand
+ {
+ OFFSET 0.084042 -0.008162 -0.014945
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ }
+ }
+ }
+ JOINT Right_collar
+ {
+ OFFSET -0.081759 0.118833 -0.038615
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_shoulder
+ {
+ OFFSET -0.096012 0.032551 -0.009143
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_elbow
+ {
+ OFFSET -0.253742 -0.013329 -0.021401
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_wrist
+ {
+ OFFSET -0.255298 0.007772 -0.005559
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ JOINT Right_hand
+ {
+ OFFSET -0.084622 -0.006117 -0.010315
+ CHANNELS 3 Zrotation Yrotation Xrotation
+ End Site
+ {
+ OFFSET 0.000000 0.000000 0.000000
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
+MOTION
+Frames: 240
+Frame Time: 0.033333
+-0.003699 0.890770 0.002388 1.301405 0.159063 -2.705982 11.606307 6.481566 -15.660177 -5.580676 3.061191 29.978376 -3.630235 9.204192 -15.507189 0.064174 -0.067227 -0.047069 -6.695885 -6.540552 -13.826453 0.101728 -4.190211 36.070930 3.570818 -8.788021 -24.227534 -0.099290 -0.091706 -0.013556 1.890863 0.176943 18.775938 -0.020909 -2.446825 -1.271809 -0.159408 0.141657 -1.105108 -1.008853 1.598505 -4.461981 2.180089 2.359221 5.199613 -25.849895 -7.735687 0.080811 -39.169545 -8.053876 5.059787 19.051150 -56.917902 -9.350799 27.365789 -13.466353 -5.014270 0.000000 0.000000 0.000000 23.870755 13.134404 4.722909 35.201172 12.372196 11.955312 0.133638 70.219359 16.730863 -20.840405 18.705345 8.197697 0.000000 0.000000 0.000000
+-0.006758 0.889319 0.005256 0.889198 0.333913 -2.321301 12.351028 6.053690 -16.214829 -5.545906 2.906149 30.492010 -3.777671 9.016687 -15.354659 -0.041873 -0.138319 0.038504 -6.188003 -6.034034 -12.927672 -0.175359 -4.868646 34.811520 3.552792 -8.985584 -24.611845 0.032692 -0.134286 0.050255 1.423819 0.249604 18.891831 0.381751 -2.790723 -1.419326 0.177111 -0.055619 -1.021365 -1.240909 1.758753 -4.548788 2.041178 2.253565 5.030940 -25.836012 -6.777673 -0.018704 -38.711919 -7.322806 4.310577 18.254041 -54.126962 -9.620898 27.307970 -13.477548 -4.674156 0.000000 0.000000 0.000000 24.100085 11.955811 4.800220 34.411994 10.852574 11.904578 3.797767 68.112905 19.796936 -19.998800 18.860744 10.267774 0.000000 0.000000 0.000000
+-0.009475 0.890630 0.008429 1.268151 0.555164 -2.717382 11.500773 5.570620 -16.930014 -6.229857 3.066844 30.970722 -3.305208 9.045083 -15.751221 -0.024492 -0.110561 -0.000669 -7.348398 -6.874475 -11.261984 0.185587 -4.989363 35.612827 4.117415 -8.636876 -26.143153 -0.012554 -0.163147 0.061622 1.152787 0.463430 18.223050 0.294926 -2.875324 -1.503521 0.090166 0.056827 -1.212213 -0.917392 2.409660 -4.726638 1.636583 2.032820 4.063601 -24.851456 -5.308094 -1.307604 -38.462264 -6.613978 4.807654 16.311180 -54.181672 -8.502411 27.490463 -13.078486 -6.183420 0.000000 0.000000 0.000000 23.491087 11.393331 3.335503 34.415737 11.119726 12.072137 2.848969 64.968160 18.118764 -19.990871 18.856320 10.824043 0.000000 0.000000 0.000000
+-0.011606 0.890764 0.011788 1.119494 0.696764 -3.261871 11.925643 5.148927 -16.797388 -6.673528 2.626619 30.997377 -3.176284 9.239327 -16.173352 -0.089496 -0.135272 -0.001794 -7.440144 -6.731677 -10.689637 0.357921 -4.986343 35.136658 3.868902 -8.779014 -26.400467 -0.069321 -0.175138 0.043916 0.684566 0.383397 17.791701 0.375056 -2.984001 -1.756375 0.112259 0.088453 -0.775168 -1.056958 2.716028 -5.314150 1.696742 1.807436 4.177484 -24.830117 -5.167673 -0.357516 -38.875608 -5.847230 5.042236 13.735988 -54.088190 -5.889971 27.382766 -12.875616 -6.922645 0.000000 0.000000 0.000000 24.129712 10.950631 3.982004 34.169727 10.694021 11.502402 4.930376 63.697924 19.179613 -19.619488 18.003145 12.024208 0.000000 0.000000 0.000000
+-0.013807 0.888664 0.014579 1.130342 0.851354 -2.868093 10.330458 3.384025 -15.323911 -6.699910 0.275259 29.319338 -1.650806 8.818133 -17.856227 -0.078650 -0.151535 -0.016607 -6.023839 -5.808872 -10.878617 0.284215 -5.211776 35.036567 3.221946 -9.247882 -25.344216 -0.054285 -0.117931 0.068714 -0.141903 1.097337 16.178354 0.500927 -2.934377 -0.650751 0.051525 -0.317777 0.399102 -0.348380 2.359543 -9.290547 0.857075 -0.027877 3.702468 -26.576006 -5.282461 -1.768646 -39.599134 -8.265838 3.038845 20.627836 -48.536992 -14.191913 27.649670 -12.834102 -7.620048 0.000000 0.000000 0.000000 25.288293 9.709924 1.446016 35.274175 10.362324 11.744490 -13.156987 70.403169 6.054818 -16.861648 18.428939 13.076866 0.000000 0.000000 0.000000
+-0.016082 0.890650 0.017111 1.137639 0.837335 -2.928776 9.818440 2.521404 -14.110129 -6.205359 -0.068975 28.006242 -1.321305 9.291286 -18.605860 -0.095860 -0.203498 0.025637 -5.557515 -5.159593 -10.767071 0.052862 -5.177999 34.428014 3.456220 -9.645901 -24.754266 -0.017703 -0.127181 0.062579 -0.526070 1.157441 15.933714 0.457269 -2.981606 -1.064542 -0.150517 -0.366466 0.849170 -0.326239 2.550492 -9.584551 0.847645 -0.378377 3.782403 -26.021268 -5.256647 -1.824790 -39.635505 -9.397054 2.781431 22.219451 -49.852234 -15.875814 27.242881 -11.918392 -7.967691 0.000000 0.000000 0.000000 25.000180 9.428008 1.047068 35.045830 11.124353 11.640081 -23.590952 73.372126 -3.661054 -15.988936 18.071099 13.421089 0.000000 0.000000 0.000000
+-0.018252 0.888836 0.019490 1.583161 0.630963 -2.262783 10.519303 3.243519 -13.661309 -6.022878 0.186675 27.849722 -1.759478 9.279269 -17.848083 -0.087279 -0.325594 -0.019669 -5.928216 -5.526754 -11.058711 -0.487695 -5.289246 34.939134 3.562802 -9.849642 -25.610111 -0.065736 -0.264437 0.062661 -0.545066 1.536919 15.516568 0.112386 -2.808864 -1.102038 -0.586451 -0.063122 0.462032 -0.381175 3.550145 -10.038653 0.022420 0.100159 4.211592 -25.803079 -6.259959 -1.812021 -39.540972 -9.843314 2.351924 22.461338 -48.496684 -16.661003 28.665308 -12.019504 -9.399256 0.000000 0.000000 0.000000 24.102089 9.214249 0.093774 35.615101 10.917672 11.554817 -41.437577 75.656238 -19.901096 -16.080313 18.304374 12.694555 0.000000 0.000000 0.000000
+-0.020401 0.891783 0.021553 1.729726 0.737219 -2.156187 10.115337 2.702136 -12.913094 -6.124372 -0.438324 27.195314 -1.409363 9.659081 -18.324698 -0.082875 -0.378291 0.007281 -5.980123 -5.432867 -11.129901 -0.375229 -5.218230 35.054675 3.663046 -9.897201 -25.340664 -0.090663 -0.324486 0.026278 -1.005425 1.954511 15.277612 -0.054902 -2.911547 -1.125493 -0.780849 -0.144650 0.627438 -0.420529 3.895915 -10.638792 0.028717 -0.407379 4.363153 -25.100061 -6.767923 -2.100680 -38.337217 -10.642106 2.501088 22.846403 -48.729320 -17.199464 29.582474 -11.648012 -9.130708 0.000000 0.000000 0.000000 23.318494 9.393080 -1.114971 35.707673 12.687892 11.832746 -59.737879 76.096158 -37.186785 -16.405081 17.822555 12.232191 0.000000 0.000000 0.000000
+-0.022245 0.890334 0.024372 2.198064 0.772842 -2.642726 8.874322 1.537804 -11.544981 -6.359330 -2.381481 25.309566 -1.535996 8.728246 -17.246000 -0.084832 -0.564527 -0.012206 -5.209932 -5.284517 -10.073742 -0.447992 -5.132645 34.192660 3.674979 -9.722755 -25.138163 -0.083541 -0.404789 0.079695 -1.169649 2.270972 14.522761 -0.539457 -3.001515 -1.561517 -1.271142 0.247938 0.737751 -0.247597 5.797287 -11.218270 -0.622865 -0.487365 3.969349 -24.736247 -7.206950 -2.403321 -38.128146 -11.101685 2.318111 26.091544 -49.885671 -18.893468 32.328727 -12.989553 -10.809227 0.000000 0.000000 0.000000 23.226205 9.642169 -2.046975 37.315641 15.046014 11.017503 -70.148419 72.305867 -44.738663 -21.661060 19.106156 14.250558 0.000000 0.000000 0.000000
+-0.023632 0.892870 0.027763 2.387550 0.820292 -2.659182 8.727331 1.168793 -10.425937 -6.225722 -3.423902 23.375131 -1.727046 8.484993 -16.801690 -0.094408 -0.529767 0.007856 -5.158514 -5.090126 -9.366408 -0.253946 -5.101535 33.105650 3.572674 -9.559232 -24.740430 -0.024552 -0.393558 0.098849 -0.900891 2.295242 13.700741 -0.653482 -2.915910 -1.729483 -1.471207 0.357176 0.947626 0.078410 6.475918 -11.060672 -0.959125 -0.425029 4.347807 -24.265266 -7.155153 -2.846153 -38.274317 -11.488009 2.321388 28.283630 -50.709997 -20.578452 33.650887 -13.294162 -10.714244 0.000000 0.000000 0.000000 22.418439 9.887353 -2.663318 37.833440 17.099921 10.454673 -78.077637 70.918092 -51.593942 -24.115251 19.607721 14.810221 0.000000 0.000000 0.000000
+-0.024625 0.896787 0.031522 2.096501 0.801781 -2.743473 8.449401 0.111727 -9.271732 -5.551477 -4.258667 21.976196 -2.238401 8.163569 -16.446654 -0.048795 -0.500671 -0.003282 -4.919822 -4.750844 -8.011487 -0.540242 -4.623465 31.120423 3.498340 -9.387374 -22.853412 -0.043132 -0.382705 0.073335 -0.566351 2.595975 12.866282 -0.767063 -2.505306 -1.870468 -1.771464 0.925024 1.342215 0.246930 5.594363 -12.307322 -1.470542 -2.053431 4.056837 -23.720747 -6.753248 -2.699406 -38.210218 -11.851455 2.054513 34.331292 -52.605519 -24.705847 35.468436 -15.057693 -11.633412 0.000000 0.000000 0.000000 21.882580 10.963921 -2.953000 38.382720 19.036071 10.078624 -79.983946 67.793128 -52.505462 -25.789507 19.753895 13.588466 0.000000 0.000000 0.000000
+-0.025375 0.903150 0.035601 2.391789 0.739853 -2.785119 8.197349 0.031914 -7.897792 -5.283751 -4.402697 20.335925 -2.524199 7.940364 -15.639625 -0.030229 -0.485476 -0.008586 -5.237773 -4.745851 -7.145948 -0.375116 -4.423668 29.441294 3.578118 -8.740172 -21.766137 -0.043991 -0.367213 0.064485 -0.464764 2.643037 12.031084 -0.837461 -2.059885 -1.857597 -1.787736 1.238833 1.383147 0.446642 5.783621 -12.222191 -1.601351 -2.364075 4.238480 -23.126926 -6.448123 -2.885214 -38.315298 -12.003559 2.158986 38.584879 -54.907045 -28.012811 36.521334 -15.558609 -12.847922 0.000000 0.000000 0.000000 21.566041 11.754996 -2.869803 38.288779 21.114829 9.402613 -80.284349 66.098644 -53.322121 -27.292341 19.797473 12.786863 0.000000 0.000000 0.000000
+-0.025724 0.909049 0.039088 2.190351 0.707178 -3.169558 8.212545 0.510608 -5.477847 -5.059843 -4.594759 17.690319 -3.128675 7.069249 -14.921858 -0.053826 -0.500594 -0.019309 -6.372829 -5.106381 -5.391703 -0.156132 -4.085179 26.743367 4.176924 -7.108724 -19.908357 -0.063135 -0.357694 0.063695 0.417081 2.729948 11.487214 -0.749677 -1.920851 -1.943000 -1.769653 1.535878 1.215638 0.633256 5.905760 -10.109575 -2.621113 -2.600709 7.069014 -22.750144 -6.477646 -2.825187 -37.071682 -12.046545 1.695617 41.534112 -56.669565 -29.829266 34.523397 -16.768945 -11.608348 0.000000 0.000000 0.000000 21.429706 12.439023 -2.565860 36.617014 22.725391 8.208431 -81.893761 66.081502 -55.186773 -29.801110 21.326474 12.105647 0.000000 0.000000 0.000000
+-0.025703 0.911795 0.042136 2.268672 0.639435 -3.260693 8.057797 0.825018 -4.098648 -4.695225 -4.739182 15.973411 -3.347235 6.996907 -14.452274 -0.056253 -0.485347 -0.029848 -6.713454 -5.261973 -4.507918 -0.305259 -4.064412 24.981110 4.477923 -6.892753 -18.621447 -0.043416 -0.344881 0.044947 0.657473 2.755916 10.875689 -0.788157 -1.456846 -1.958058 -1.687249 1.874507 1.096667 0.753323 5.622565 -9.569623 -2.702667 -2.949351 7.508793 -22.519000 -5.959164 -2.860846 -36.366434 -11.771552 1.595583 44.255543 -58.084883 -31.345974 33.925482 -17.564137 -11.153809 0.000000 0.000000 0.000000 21.589647 12.909943 -2.248832 35.758351 23.785276 7.852636 -79.767689 66.632190 -52.946961 -30.525347 21.550454 12.586491 0.000000 0.000000 0.000000
+-0.025512 0.911146 0.044787 2.133955 0.318835 -3.142661 7.604194 1.097511 -2.742848 -4.341146 -4.290457 14.135205 -3.373490 6.604322 -14.059453 -0.053064 -0.404888 -0.016862 -6.571761 -5.257747 -3.852699 -0.214565 -3.613432 22.583314 4.656837 -6.360434 -17.349189 -0.063401 -0.266584 0.040324 0.880888 2.846292 9.712420 -0.791476 -1.090268 -1.767165 -1.651884 2.151243 1.120720 0.667808 5.507732 -9.570134 -3.167121 -3.866953 8.314176 -22.622122 -5.369707 -2.442906 -35.640988 -11.072244 1.381853 48.033333 -59.369366 -34.035689 32.674149 -18.205562 -10.471824 0.000000 0.000000 0.000000 22.479485 13.238006 -1.403045 35.083537 24.686805 7.953448 -77.017258 67.541411 -49.288823 -30.039086 23.210986 13.959568 0.000000 0.000000 0.000000
+-0.024980 0.911340 0.046795 1.989424 0.340398 -3.140732 7.629512 1.070538 -2.160325 -4.199683 -4.376469 13.091605 -3.342140 6.551394 -13.507125 -0.072134 -0.399749 -0.012449 -6.863014 -5.444490 -3.190819 -0.146247 -3.707985 21.196787 4.830402 -6.304642 -16.376147 -0.063936 -0.294884 0.058016 1.029300 2.939148 9.343450 -0.811463 -0.943631 -1.654596 -1.659573 2.338961 0.931203 0.565443 5.099127 -9.543237 -3.023519 -4.270870 8.157314 -22.612397 -5.008133 -2.219808 -35.413790 -10.806554 1.382743 49.542624 -60.060744 -34.756802 32.052819 -19.244959 -9.728977 0.000000 0.000000 0.000000 22.794672 13.333301 -0.839556 34.438754 24.517197 8.143650 -74.485384 69.241545 -46.239496 -29.448007 24.083164 14.775136 0.000000 0.000000 0.000000
+-0.024715 0.912178 0.049487 1.675662 0.183146 -3.231134 7.781785 1.258252 -1.170773 -3.932601 -3.331526 11.345140 -3.231896 6.600743 -12.877974 -0.074389 -0.382210 -0.026614 -6.739954 -5.695417 -2.278048 0.234244 -4.364510 18.923078 4.813676 -5.846000 -15.856149 -0.065262 -0.256409 0.044977 1.533928 2.812510 9.300194 -0.920510 -0.785054 -0.925060 -1.660523 2.689139 0.677883 0.348837 5.888708 -10.958214 -3.112561 -4.029043 7.282786 -22.485500 -4.485600 -2.202509 -35.645973 -10.471912 0.783308 54.168283 -59.655329 -39.000205 33.876309 -19.780951 -13.031519 0.000000 0.000000 0.000000 23.152430 13.560786 0.142842 34.805347 25.154478 8.470743 -79.868705 68.988835 -50.344589 -30.970831 24.354767 14.788735 0.000000 0.000000 0.000000
+-0.024525 0.912325 0.052540 1.619668 0.082428 -3.351754 7.819654 1.306940 -0.774374 -3.883871 -3.253266 10.863230 -3.413666 6.214641 -12.516363 -0.035509 -0.355809 -0.058289 -6.746390 -5.700485 -1.630054 0.449762 -4.240245 17.957298 4.843149 -5.601083 -15.444274 -0.076858 -0.229980 0.037782 1.802674 2.786530 9.250558 -0.929384 -0.702836 -1.114755 -1.817580 2.716521 0.618867 0.362441 5.923047 -10.866839 -3.126479 -4.046629 7.474627 -22.263708 -4.340373 -2.373036 -35.912815 -10.370620 0.286257 56.017825 -58.809437 -41.757178 33.586425 -18.990650 -14.425141 0.000000 0.000000 0.000000 22.976526 13.724013 -0.079197 35.240358 25.742811 8.612554 -84.813973 68.541354 -55.211354 -31.125835 24.060590 14.476102 0.000000 0.000000 0.000000
+-0.024380 0.914060 0.056014 1.356135 -0.055985 -2.500079 8.189063 0.769066 -0.872295 -3.796387 -3.871461 10.769204 -3.036366 6.098770 -13.741482 -0.056775 -0.315438 -0.036149 -6.982105 -5.389180 -1.632633 1.130736 -3.745365 17.105913 4.489232 -5.412579 -15.996009 -0.075454 -0.204533 0.055172 1.858294 2.903643 8.564129 -0.341096 -0.546275 -1.050909 -1.594269 2.654614 0.286153 0.994214 4.707139 -11.038243 -3.267273 -5.345929 7.238903 -21.691466 -3.808001 -2.440292 -35.673691 -9.841022 -0.337528 57.816092 -58.164182 -44.363179 33.824921 -17.186198 -15.586422 0.000000 0.000000 0.000000 22.843873 14.440760 -0.119308 36.465740 26.989335 9.185539 -90.194281 68.318950 -61.218133 -32.256219 23.506293 12.788249 0.000000 0.000000 0.000000
+-0.024217 0.914802 0.059932 1.466360 -0.197115 -2.323055 8.228558 0.840536 -0.726935 -3.645894 -3.737570 10.840835 -3.037699 6.338055 -14.006195 -0.057965 -0.281356 -0.035931 -6.959778 -5.402020 -1.683030 1.134349 -3.690719 16.804424 4.334981 -5.481555 -16.487385 -0.073125 -0.195776 0.042433 1.818948 2.820977 8.093813 -0.172166 -0.683340 -0.966482 -1.650599 2.614660 0.223491 1.191922 4.886634 -10.938352 -3.447780 -5.505879 6.940113 -21.102047 -3.850274 -2.791186 -35.339446 -9.721717 -0.610145 58.147230 -57.941366 -45.500796 34.232488 -16.284798 -16.637627 0.000000 0.000000 0.000000 22.254850 14.866236 -0.829769 37.001890 28.300014 9.343573 -95.538504 67.255522 -66.650941 -32.786880 23.472935 11.876404 0.000000 0.000000 0.000000
+-0.024096 0.913376 0.063495 1.495768 -0.279930 -2.593798 7.980562 0.561288 0.063553 -3.518878 -3.519739 10.274584 -3.571085 6.116621 -14.005580 -0.065825 -0.349158 -0.052197 -6.775687 -4.899072 -1.266198 1.476486 -3.195871 16.392716 4.194491 -4.763875 -16.380907 -0.078063 -0.204241 0.045216 2.052233 2.793815 7.687579 -0.160428 -0.443646 -1.232023 -1.562911 2.763790 0.068321 1.387614 4.863140 -11.204259 -3.288317 -4.798329 6.232605 -21.397953 -3.601083 -3.317630 -35.470610 -9.860709 -0.671005 62.637598 -57.722098 -51.640420 36.531931 -15.504174 -20.795411 0.000000 0.000000 0.000000 22.236060 15.113061 -1.169947 36.525026 29.605592 9.290596 -99.078867 67.590871 -69.866853 -34.909261 24.835836 11.943080 0.000000 0.000000 0.000000
+-0.023961 0.914449 0.066840 1.540288 -0.337916 -2.547195 7.934359 0.523792 0.159992 -3.333651 -3.415553 10.181906 -3.606173 6.173028 -14.090238 -0.070003 -0.355777 -0.051769 -6.736431 -4.839615 -1.083729 1.347897 -3.147282 16.237471 4.058967 -4.627399 -16.769960 -0.061105 -0.235839 0.064914 2.238933 2.718898 7.695757 -0.227113 -0.384533 -0.987101 -1.561330 2.917645 -0.048618 1.558489 4.848042 -10.895125 -3.417636 -4.583857 6.298282 -21.274463 -3.374837 -3.860049 -35.725962 -10.101730 -1.029034 65.512993 -57.445156 -54.695545 37.637712 -15.085469 -21.872726 0.000000 0.000000 0.000000 21.864009 15.325782 -1.740098 36.253502 30.924473 8.871850 -102.967522 66.866133 -73.486138 -36.431958 25.246016 11.640024 0.000000 0.000000 0.000000
+-0.023754 0.916708 0.069988 1.636261 -0.386720 -2.693478 8.075544 0.790813 0.532001 -3.274265 -2.267810 10.584327 -3.998315 6.010122 -14.176510 -0.048908 -0.340262 -0.051062 -6.753720 -5.183628 -0.572667 1.449995 -4.122427 15.158810 4.083893 -3.913906 -16.084203 -0.045213 -0.206756 0.073042 2.521840 2.915805 7.872293 -0.275137 -0.179662 -0.512120 -1.458015 3.262043 -0.082935 1.977403 5.404112 -11.024781 -3.274761 -3.887461 5.576478 -21.963466 -3.331544 -4.428843 -35.903870 -10.100024 -1.088220 69.081562 -58.007990 -58.898049 38.460649 -15.578156 -23.382070 0.000000 0.000000 0.000000 22.061347 15.730982 -1.811687 35.288562 32.539857 7.670485 -106.093053 65.617615 -76.964762 -36.790437 26.136894 11.484244 0.000000 0.000000 0.000000
+-0.023571 0.918982 0.073014 1.681992 -0.470646 -2.602859 8.094053 0.710781 0.518867 -3.300718 -2.053856 10.949771 -4.085665 5.809631 -14.252965 -0.060202 -0.342362 -0.040260 -6.826667 -5.095742 -0.461809 1.438883 -4.086060 14.965814 4.057766 -3.648099 -16.124159 -0.059152 -0.225539 0.057090 2.687699 2.881362 7.699848 -0.314828 -0.075355 -0.330350 -1.456908 3.373819 -0.236202 2.117727 5.190148 -11.119505 -3.265146 -3.847775 5.590351 -22.157736 -3.312804 -4.829168 -36.161350 -10.511039 -1.022715 72.258379 -58.089935 -61.873525 38.770436 -15.498005 -23.476948 0.000000 0.000000 0.000000 22.054422 15.916585 -2.012151 34.841616 33.492199 7.273489 -107.344048 64.885618 -78.360237 -37.178970 26.724419 11.137549 0.000000 0.000000 0.000000
+-0.023311 0.920485 0.075757 1.428210 -0.568660 -2.648721 8.520581 1.061870 -0.040858 -3.481032 -1.557645 12.592577 -4.046474 5.953488 -15.534092 -0.043778 -0.335788 -0.052659 -6.936091 -5.082149 -0.602058 1.771318 -3.323171 15.580814 4.435320 -2.280681 -16.771040 -0.082690 -0.243599 0.054210 3.038627 2.755016 7.548287 -0.353823 -0.001512 -0.524956 -1.252860 3.454517 -0.536370 2.475907 6.860547 -10.361568 -3.031764 -1.422544 4.633589 -21.886909 -3.307818 -5.473869 -36.134136 -10.307661 -1.237228 74.718007 -59.704650 -63.121561 37.292336 -15.340618 -21.753738 0.000000 0.000000 0.000000 21.547092 16.142026 -2.549750 35.669280 34.851306 7.483192 -110.308524 65.374247 -81.233120 -39.084639 27.292749 12.036702 0.000000 0.000000 0.000000
+-0.023007 0.921194 0.078285 1.525771 -0.576617 -2.783079 8.558049 0.987979 -0.431366 -3.606291 -1.123829 13.802440 -4.216420 5.746776 -15.922225 -0.050497 -0.338144 -0.032821 -7.154507 -5.112909 -0.414405 1.802318 -3.381481 15.715658 4.582916 -1.653679 -17.163040 -0.058027 -0.209685 0.065667 3.175923 2.849726 7.430254 -0.471111 0.065689 -0.470795 -1.405654 3.493174 -0.651841 2.652793 7.288290 -10.170293 -3.030571 -0.983017 4.567984 -21.939217 -3.296291 -5.887955 -36.339135 -10.352435 -1.242642 77.161285 -60.122755 -65.105656 37.085862 -15.103786 -21.457716 0.000000 0.000000 0.000000 21.319351 16.268677 -2.913265 35.742028 35.704824 7.139135 -111.470020 64.805266 -82.190026 -40.157235 27.370955 12.432251 0.000000 0.000000 0.000000
+-0.022674 0.919717 0.080777 1.512251 -0.633332 -3.084819 8.678949 0.979658 -1.003505 -3.644445 -0.752103 15.808767 -4.508884 5.960864 -16.278768 -0.046225 -0.321093 -0.040912 -7.253344 -4.919306 -0.176161 1.714665 -3.276168 15.814911 4.713125 -1.185668 -17.594764 -0.063429 -0.214801 0.059152 3.359447 2.792987 7.648932 -0.517112 -0.070771 -0.454441 -1.380989 3.511510 -0.513785 2.666152 7.487201 -10.215164 -2.993777 -0.610941 3.757046 -21.564342 -3.052821 -6.079445 -36.786524 -10.005087 -1.096684 80.723610 -60.909435 -67.354074 36.963409 -14.781926 -21.016794 0.000000 0.000000 0.000000 20.528849 16.277002 -3.465644 35.769819 36.739763 6.749797 -112.744153 64.708805 -83.624446 -40.681242 26.702169 12.417550 0.000000 0.000000 0.000000
+-0.022254 0.919990 0.083274 1.565359 -0.714430 -3.281885 8.726558 0.794338 -1.517570 -3.814048 -0.525602 17.381553 -4.760266 5.910866 -16.551230 -0.040672 -0.248814 -0.035676 -7.319527 -4.767479 0.108416 1.615740 -3.361806 16.095636 4.686666 -0.956347 -17.991814 -0.061493 -0.166721 0.037106 3.295068 2.882581 7.503929 -0.492130 -0.118978 -0.284582 -1.426118 3.578010 -0.405208 2.767624 7.882009 -10.244809 -3.086713 -0.546297 3.570698 -21.363977 -2.911922 -6.225956 -37.011786 -9.708962 -0.710217 82.644508 -61.458494 -68.567314 36.675743 -14.814438 -20.755497 0.000000 0.000000 0.000000 20.258574 16.469256 -3.649895 36.176903 37.357882 6.662880 -113.290693 64.215381 -84.213700 -41.312953 26.369688 12.196528 0.000000 0.000000 0.000000
+-0.021633 0.918570 0.086052 1.589226 -0.763287 -3.564254 8.850092 1.278065 -2.651942 -3.535988 1.554328 20.144177 -5.442563 6.098208 -16.996527 -0.041231 -0.284869 -0.014657 -7.496058 -5.264280 0.538498 1.547790 -4.045635 16.862520 5.067075 -0.138829 -18.621894 -0.080743 -0.193983 0.034022 3.396838 2.979010 8.021272 -0.744406 -0.247989 -0.538704 -1.452100 3.594539 -0.392487 2.494758 10.070618 -11.545790 -3.605616 1.739690 2.314054 -21.457953 -2.500535 -6.993334 -37.685131 -9.311653 -0.328491 86.794027 -62.972301 -70.574674 37.025818 -16.822876 -18.513493 0.000000 0.000000 0.000000 19.495797 15.794721 -4.656008 36.132737 38.113787 6.264183 -116.965726 63.744006 -87.776661 -41.846488 26.219645 12.275136 0.000000 0.000000 0.000000
+-0.020763 0.916930 0.089168 1.587953 -0.696146 -3.892319 9.139273 1.104356 -3.687160 -3.628275 2.011585 22.361721 -5.823569 6.086869 -16.995732 -0.051908 -0.271163 -0.035174 -7.469383 -5.263689 0.880564 1.566968 -4.086386 17.288363 4.980253 -0.073136 -19.262790 -0.062672 -0.177150 0.043734 3.386137 3.175359 8.186456 -0.809385 -0.344281 -0.647978 -1.473956 3.632694 -0.435020 2.491258 10.372623 -11.631616 -3.657052 2.179850 2.412441 -21.493545 -2.396541 -7.064423 -37.707123 -9.206413 -0.126562 89.910228 -64.073144 -72.417736 36.833102 -17.288293 -17.411936 0.000000 0.000000 0.000000 19.342802 15.806584 -4.890105 35.956741 38.311639 6.197362 -119.762107 63.719170 -90.091216 -41.865989 26.130303 12.538769 0.000000 0.000000 0.000000
+-0.019714 0.915682 0.092728 1.334849 -0.691810 -4.075306 9.176731 1.123808 -4.398026 -3.693600 2.340864 24.717800 -5.429700 6.224023 -17.908390 -0.076949 -0.381086 -0.036824 -7.289411 -5.533266 1.019810 1.720341 -4.207526 18.161847 4.446502 0.276381 -20.407191 -0.051123 -0.278756 0.029689 3.372532 3.351982 8.035161 -0.863753 -0.121815 -1.108003 -1.494270 3.871899 -0.339466 2.733600 11.086149 -11.894569 -3.290663 2.853150 1.789985 -21.447739 -2.132522 -7.470335 -38.114797 -9.102487 0.215033 96.898762 -64.878967 -77.839197 37.829716 -17.719324 -15.506653 0.000000 0.000000 0.000000 18.954687 15.781456 -4.940925 35.699741 38.517751 5.553853 -121.202425 63.724396 -91.247399 -42.083937 25.751038 12.880998 0.000000 0.000000 0.000000
+-0.018343 0.914503 0.096791 1.316223 -0.511656 -4.511412 9.372952 1.139308 -5.015654 -3.582943 2.524409 26.144312 -5.376129 6.448800 -18.527862 -0.055966 -0.387773 -0.034428 -7.127971 -5.761751 1.349247 1.661266 -4.621005 18.754719 4.194503 0.007888 -20.897797 -0.067250 -0.288651 0.033265 3.265426 3.470352 8.111663 -0.899485 -0.225100 -1.021272 -1.359803 3.857162 -0.077709 2.727753 11.151414 -12.067786 -3.329020 3.010417 1.722527 -21.330415 -2.122140 -7.556342 -38.280495 -9.220255 0.597705 102.888793 -65.129721 -82.763429 38.569690 -18.199741 -14.972136 0.000000 0.000000 0.000000 18.710087 15.805944 -5.143413 35.126571 38.238405 4.956989 -123.204066 63.147863 -93.030202 -42.515463 25.698292 12.587608 0.000000 0.000000 0.000000
+-0.017404 0.915700 0.100153 1.469562 -0.484184 -5.327704 9.535733 1.492524 -6.398915 -3.397848 3.797574 28.628576 -6.272063 6.237819 -17.240731 -0.059402 -0.570966 -0.052024 -6.717618 -5.982516 2.291857 1.379916 -4.163476 19.207771 3.652990 0.179968 -21.367974 -0.085988 -0.399626 0.041351 3.491730 3.689668 8.860580 -0.947986 -0.290585 -2.103094 -1.269538 4.062339 -0.398060 2.506929 11.990616 -11.848400 -3.140564 4.073992 1.893363 -21.070286 -2.932085 -7.655097 -36.755891 -7.971897 0.809064 105.075215 -66.525073 -83.706553 39.809129 -20.560524 -11.079484 0.000000 0.000000 0.000000 17.881134 17.160020 -5.577901 35.398332 39.089219 6.166281 -129.791902 63.676740 -98.278592 -46.100788 27.253433 13.945845 0.000000 0.000000 0.000000
+-0.016470 0.915722 0.103191 1.496283 -0.453497 -5.434063 9.920662 1.574955 -7.919643 -3.375491 4.307296 29.664117 -6.900359 5.911421 -16.904748 -0.055509 -0.693913 -0.055505 -6.616371 -6.294283 2.489937 1.234965 -4.254831 18.889416 3.539574 0.082626 -21.390612 -0.110308 -0.451196 0.039995 3.280977 3.980161 8.876815 -1.181282 -0.334417 -2.609256 -1.259677 4.250382 -0.416982 2.566655 11.983958 -11.868393 -2.889622 4.232574 1.890647 -20.717402 -3.366218 -7.686160 -35.825485 -7.631923 0.541474 107.049878 -67.037560 -85.286668 40.927279 -21.215594 -9.886168 0.000000 0.000000 0.000000 17.261819 17.976364 -5.751484 34.732359 39.859074 5.537414 -131.244619 62.809026 -99.436749 -47.725175 27.772395 14.665713 0.000000 0.000000 0.000000
+-0.015551 0.917909 0.106346 1.416605 -0.401482 -5.391527 10.242584 2.058254 -9.659559 -3.352249 5.275706 29.749814 -6.663298 5.890674 -16.932012 -0.099274 -0.716833 -0.048022 -6.388477 -7.118456 2.794311 1.288759 -4.599296 18.875397 3.364945 -0.177515 -22.219005 -0.115053 -0.489206 0.055939 3.145670 4.529621 9.403378 -1.473784 -0.291477 -3.114201 -1.195026 4.630915 -0.368931 2.182651 11.406722 -12.145330 -2.754364 3.806108 2.921537 -20.198260 -3.804814 -8.025307 -36.107760 -8.084961 0.739498 108.683091 -67.829632 -85.252290 42.397592 -22.432910 -7.172367 0.000000 0.000000 0.000000 16.409336 18.549304 -5.684111 32.954102 40.041564 3.866402 -132.344683 61.876899 -100.348503 -48.739579 28.618943 15.511641 0.000000 0.000000 0.000000
+-0.014563 0.918720 0.109687 1.529767 -0.306510 -5.006179 10.442090 2.252084 -10.954724 -3.331406 5.544406 28.995501 -6.614867 5.824068 -16.832937 -0.089312 -0.701159 -0.031373 -6.298592 -7.462451 2.942455 1.197739 -4.706663 18.297835 3.354119 -0.456714 -22.276738 -0.098825 -0.474692 0.042406 3.039993 4.900344 9.430240 -1.661094 -0.285517 -3.555283 -1.142662 4.847075 -0.312644 2.049750 11.028813 -12.333246 -2.657121 3.457882 3.061382 -19.695654 -4.146122 -8.055941 -35.384780 -8.120914 0.749642 110.160578 -67.858809 -86.082105 43.262268 -22.802435 -6.364832 0.000000 0.000000 0.000000 15.604054 19.268519 -5.775358 31.625730 40.580472 2.817057 -132.380562 61.691069 -99.947048 -49.719234 29.254800 16.221442 0.000000 0.000000 0.000000
+-0.013252 0.918420 0.113489 1.639677 -0.172705 -5.240032 10.536208 2.646127 -12.342938 -3.251334 6.564838 28.781365 -6.495557 5.554819 -16.790393 -0.065298 -0.704120 -0.043039 -6.893295 -8.219673 4.401600 0.828045 -5.441903 17.861419 3.465833 -0.660017 -23.270582 -0.111963 -0.476607 0.054916 2.951090 5.441554 9.730105 -1.686833 -0.339069 -3.929031 -1.191242 5.092773 -0.228071 2.199616 9.294367 -13.279592 -2.412389 1.219578 4.210327 -19.974788 -4.748906 -7.973013 -35.215513 -8.229936 0.864646 112.742728 -67.502050 -88.809580 42.779446 -21.995487 -6.967695 0.000000 0.000000 0.000000 15.747646 20.267771 -5.781311 31.119357 40.929968 2.028740 -131.149894 59.987740 -99.240045 -50.899230 28.833883 16.761722 0.000000 0.000000 0.000000
+-0.011624 0.916878 0.117737 1.695557 -0.035796 -5.265005 10.516356 2.656832 -13.239057 -2.970976 7.311997 28.556825 -6.668792 5.566380 -16.171504 -0.050948 -0.748562 -0.048600 -7.040445 -8.383588 5.070978 0.747276 -5.625387 17.566007 3.349691 -0.552742 -23.745571 -0.132965 -0.506942 0.050452 2.888138 5.808504 9.921208 -1.745298 -0.378461 -4.006363 -1.241068 5.137622 -0.319340 2.479725 8.861111 -13.217698 -2.338825 0.770513 4.613360 -20.145751 -5.085551 -7.859047 -35.313846 -8.397951 0.980087 113.101253 -67.564398 -89.278244 42.649562 -21.754410 -6.613743 0.000000 0.000000 0.000000 15.490079 20.575637 -5.869314 30.317273 41.347335 1.305316 -131.143231 59.137570 -99.339975 -51.300586 28.569141 16.571953 0.000000 0.000000 0.000000
+-0.009556 0.915024 0.122353 1.494111 0.270351 -5.730292 10.364287 2.321801 -13.912827 -3.505591 6.646579 29.266265 -7.128435 4.883681 -15.386174 -0.054051 -0.658023 -0.033375 -6.639520 -8.693972 5.591190 0.858444 -6.026625 18.125522 3.224481 -0.581953 -24.701699 -0.100717 -0.451026 0.038180 3.092921 6.069983 10.040825 -1.550839 -0.162901 -4.011205 -1.030415 5.274754 -0.193008 2.628273 8.671066 -12.220141 -2.227785 0.601476 4.870333 -20.483970 -6.214102 -7.719127 -35.304891 -8.249548 2.064195 112.976630 -68.269694 -90.105694 42.756531 -19.636770 -6.007431 0.000000 0.000000 0.000000 16.024956 21.708644 -5.444336 30.107492 41.757632 1.433964 -132.342122 59.104220 -101.404709 -51.251170 27.303015 17.482187 0.000000 0.000000 0.000000
+-0.007195 0.912523 0.127384 1.304463 0.452927 -6.163117 10.297341 2.285004 -14.322808 -3.834064 6.432702 30.311368 -7.222955 4.515593 -15.116143 -0.022243 -0.595350 -0.048901 -6.862878 -8.856669 6.143731 0.662351 -6.340267 19.039952 3.059600 -0.551879 -25.779699 -0.101152 -0.409247 0.015116 3.065689 6.318594 10.392414 -1.565099 -0.061617 -3.853209 -1.010841 5.337277 -0.161185 2.808064 8.431615 -12.084776 -2.258673 0.201865 5.149244 -20.995295 -6.348526 -7.769994 -35.753986 -8.040848 2.555556 112.927461 -68.730455 -90.207971 42.287006 -19.264061 -5.804003 0.000000 0.000000 0.000000 16.419123 21.985765 -5.306467 29.883140 41.924454 1.292424 -133.125082 58.991439 -102.101960 -51.077390 27.020362 17.739522 0.000000 0.000000 0.000000
+-0.004745 0.908909 0.132331 1.298693 0.782403 -5.873051 9.734859 1.263030 -14.867271 -4.022405 5.437900 30.045260 -6.266716 4.100931 -15.409060 -0.030569 -0.635323 -0.052097 -6.743048 -8.536187 6.096332 0.668084 -6.223958 19.819501 2.755438 -1.279634 -27.325747 -0.092581 -0.404510 0.044966 3.115502 6.658031 9.830037 -1.658215 0.359607 -3.440542 -1.199234 5.624901 -0.066492 1.853291 8.578996 -11.901423 -2.625016 0.577398 5.823898 -22.240692 -6.136580 -7.702612 -36.457117 -9.018542 3.031442 113.877519 -67.015053 -92.343037 41.349757 -18.132180 -7.449706 0.000000 0.000000 0.000000 18.314633 21.922870 -3.829611 27.603492 41.373735 0.552299 -135.802660 57.673351 -103.699861 -50.443120 28.148768 19.604698 0.000000 0.000000 0.000000
+-0.002164 0.905667 0.137277 1.293696 1.025448 -6.058526 9.381820 1.249398 -14.850298 -4.162436 5.430532 30.827620 -5.719908 4.263661 -15.974156 -0.035390 -0.614775 -0.067533 -6.869569 -8.504455 6.166382 0.433475 -6.146013 21.369944 2.820888 -1.580312 -28.391454 -0.077686 -0.397619 0.047846 3.031169 6.685765 9.953302 -1.805500 0.606573 -3.292566 -1.279432 5.633983 -0.083218 1.872974 8.491891 -11.836043 -2.809001 0.671790 6.123446 -23.139595 -5.826594 -7.522840 -36.762142 -8.990869 3.291708 115.933078 -66.832162 -94.779789 40.406922 -17.647330 -8.080848 0.000000 0.000000 0.000000 19.327690 21.586921 -3.431726 27.399411 40.736645 1.173333 -137.165929 57.985790 -104.790871 -49.326271 28.048863 20.840910 0.000000 0.000000 0.000000
+0.000465 0.902631 0.141881 0.972811 1.288613 -6.283094 9.425030 0.903211 -14.802462 -4.105602 5.047361 31.818758 -5.010639 4.525268 -16.992392 -0.007497 -0.579396 -0.064719 -6.821820 -8.522972 6.148132 0.414822 -5.873868 22.468224 2.583071 -3.103183 -29.533534 -0.057822 -0.337526 0.013328 2.866718 6.642423 9.684897 -1.683928 0.570435 -3.381761 -1.253621 5.601120 0.055164 1.381697 8.137408 -11.602189 -2.769216 1.035218 6.973712 -23.403926 -5.743288 -7.068142 -36.468618 -9.025772 3.220624 116.541128 -67.493967 -96.903027 39.417929 -15.591383 -9.371142 0.000000 0.000000 0.000000 20.306822 21.063735 -2.617294 26.336151 39.848093 1.363210 -141.299535 58.092283 -108.100761 -49.767663 29.274709 23.593757 0.000000 0.000000 0.000000
+0.002945 0.901514 0.146240 0.981885 1.429255 -6.251996 9.191014 0.752749 -14.473084 -4.369937 5.061260 31.977109 -4.561288 4.843028 -17.507588 -0.014675 -0.559596 -0.068951 -7.026694 -8.364747 5.695304 0.404345 -5.685158 23.518331 2.483840 -3.269235 -30.075178 -0.063900 -0.349088 0.007499 2.892615 6.610260 9.456105 -1.728289 0.635720 -3.251681 -1.301950 5.470772 0.107076 1.174941 8.292686 -11.422971 -2.819106 1.357696 6.820534 -23.747143 -5.711601 -6.730862 -36.474223 -9.131954 3.232732 118.558460 -67.276221 -99.574238 39.120667 -14.669058 -10.515571 0.000000 0.000000 0.000000 21.122740 20.571435 -1.948134 26.045852 38.733754 1.896482 -143.678098 58.468395 -110.085437 -49.008325 29.452364 24.516829 0.000000 0.000000 0.000000
+0.005489 0.895705 0.151453 0.711214 1.520645 -5.025576 9.420830 0.809524 -17.537902 -4.611395 6.901003 34.156063 -4.645681 5.372306 -18.311169 -0.064442 -0.749151 -0.073116 -6.696449 -9.205909 5.698825 1.127573 -5.697178 22.776151 2.469364 -3.881286 -31.875546 -0.153631 -0.432145 0.043830 2.939541 7.104670 9.036027 -2.067817 0.740328 -4.185400 -1.498393 5.927849 0.386949 0.309928 6.791903 -10.920406 -2.411655 0.436062 8.666640 -23.713045 -5.871858 -6.607733 -36.119979 -7.839525 3.226826 120.567458 -67.850953 -100.783891 40.134343 -15.931623 -6.176836 0.000000 0.000000 0.000000 21.091923 20.664994 -0.879624 23.471479 36.585941 1.216697 -150.306787 57.913694 -117.125040 -48.354107 30.328643 25.544041 0.000000 0.000000 0.000000
+0.008101 0.892413 0.157631 0.462024 1.595814 -4.627224 9.873181 1.214633 -19.096765 -5.021159 7.569127 35.646679 -4.513847 5.766679 -19.301991 -0.012106 -0.757548 -0.070288 -6.801581 -9.693599 5.890877 1.430296 -5.609798 22.958416 2.570398 -4.268405 -33.137156 -0.159322 -0.439859 0.023456 2.959513 7.372005 8.942779 -2.262025 0.829395 -4.457361 -1.472071 6.073000 0.425757 -0.168240 6.535856 -10.983947 -2.239125 0.853500 8.413187 -23.868984 -6.235470 -6.718112 -35.419235 -7.394239 2.660921 121.368412 -67.894826 -101.610770 40.599237 -16.745847 -4.781603 0.000000 0.000000 0.000000 20.815369 20.833884 -0.408038 21.117885 35.270207 -0.064716 -153.959468 57.129054 -120.798162 -47.760890 30.685925 25.615247 0.000000 0.000000 0.000000
+0.010942 0.885717 0.165264 0.859539 1.626722 -3.991282 9.569104 1.253426 -19.995503 -6.236465 7.312196 35.584079 -3.116171 6.260505 -20.210365 -0.020276 -0.801061 -0.076302 -7.008570 -9.568553 5.634931 1.715334 -4.280933 24.420547 2.572907 -5.361183 -35.245114 -0.148697 -0.457237 0.018531 2.606245 7.777128 8.323838 -2.880100 1.481582 -4.673594 -1.729317 6.210992 0.355649 -0.720011 4.710327 -11.394218 -2.470112 0.553130 8.427618 -23.414468 -5.899651 -6.643805 -34.828185 -6.937212 1.893640 124.454423 -65.841123 -103.963362 43.705008 -16.553856 -3.034977 0.000000 0.000000 0.000000 19.937034 21.384988 -0.509181 19.961136 34.217857 -0.429085 -155.509986 57.239639 -123.929823 -47.477947 30.693294 24.683494 0.000000 0.000000 0.000000
+0.014191 0.880751 0.174406 0.800314 1.669356 -3.764435 9.589625 1.663033 -21.029899 -6.666742 7.931655 35.674172 -2.731524 6.732343 -20.770160 -0.007125 -0.778753 -0.099077 -6.962079 -9.857914 6.076718 1.610152 -4.126280 25.107088 2.562328 -6.143473 -36.831599 -0.156973 -0.449842 -0.005462 2.502788 7.928136 8.717973 -3.435066 1.503288 -4.965643 -1.929395 6.390828 0.441438 -0.891774 3.988576 -11.347477 -2.390348 0.561295 8.381471 -23.236606 -5.841520 -6.863641 -34.225805 -6.507095 1.346722 124.998270 -64.964607 -104.479205 44.796490 -16.753279 -2.070603 0.000000 0.000000 0.000000 18.809391 21.591399 -0.854924 18.549180 33.673761 -1.641622 -156.462634 56.619670 -125.235411 -47.468063 30.215048 24.229230 0.000000 0.000000 0.000000
+0.017613 0.874353 0.183360 0.652810 1.522082 -2.548442 8.972793 0.770398 -22.874392 -8.194993 5.983417 36.040453 -1.398686 6.395080 -20.221255 -0.001864 -0.651670 -0.086654 -6.330960 -9.393000 5.001924 1.220338 -3.188755 26.010572 2.066607 -7.620741 -38.039145 -0.144652 -0.395805 -0.015794 2.156285 8.458623 7.812625 -3.517657 1.824853 -6.842747 -1.837921 6.461704 0.278516 -1.193826 1.491676 -11.673198 -2.619385 -1.700070 8.566891 -21.963604 -4.660935 -6.629710 -33.273492 -5.066673 1.699208 129.479750 -64.647785 -108.631021 47.980803 -16.523965 -2.326794 0.000000 0.000000 0.000000 17.742728 21.588308 -1.706076 19.619024 32.827904 -0.430357 -159.975922 57.115960 -129.201656 -52.728540 31.417760 21.887792 0.000000 0.000000 0.000000
+0.021205 0.870473 0.192366 0.712311 1.463340 -2.453864 8.553473 0.286571 -23.321973 -8.067055 6.028704 36.764269 -0.857446 6.738302 -21.000291 -0.001868 -0.620611 -0.096978 -6.119857 -9.235330 5.082978 0.859051 -3.057042 26.894851 2.240726 -8.059120 -38.851327 -0.157259 -0.328652 -0.004373 1.708512 8.699641 7.833997 -3.851349 1.957330 -7.468119 -1.950073 6.526008 0.212108 -1.188302 0.565163 -11.671775 -2.988287 -2.722333 8.740151 -21.229227 -3.828176 -6.519260 -32.440314 -4.689325 1.760724 133.970128 -63.721002 -112.125095 50.195510 -16.658034 -2.612964 0.000000 0.000000 0.000000 17.193486 21.309215 -1.966889 20.735950 32.378651 0.601207 -160.903961 57.191833 -130.163212 -54.315231 31.505188 21.372892 0.000000 0.000000 0.000000
+0.024850 0.866847 0.201165 0.778825 1.385243 -1.521173 7.637700 -0.532237 -24.572571 -8.348968 5.262072 37.749850 -0.203725 6.122347 -21.382609 -0.028346 -0.516093 -0.074006 -6.109590 -9.675615 4.752188 0.499063 -3.135734 28.502447 2.525575 -8.193725 -39.242485 -0.135160 -0.270225 -0.010160 1.103989 9.591415 6.747375 -4.013763 2.161826 -8.856191 -1.740787 6.558492 0.378396 -1.921755 -1.497815 -10.246427 -3.328224 -4.501772 9.240062 -20.646587 -3.128380 -6.680520 -32.541682 -4.191134 2.996701 142.838007 -62.319179 -118.721872 51.034247 -16.333442 -0.969397 0.000000 0.000000 0.000000 17.410000 20.914820 -1.437658 20.877466 30.809633 1.340819 -166.774923 57.987634 -136.573892 -55.811717 31.646407 22.793947 0.000000 0.000000 0.000000
+0.028418 0.864338 0.209306 0.804351 1.495627 -1.303282 7.225559 -0.924995 -24.821712 -8.643826 5.060422 38.411143 0.383940 6.021752 -22.145729 -0.012542 -0.446030 -0.073870 -6.289627 -9.474412 4.129743 0.465727 -2.672977 30.507186 2.547541 -7.804196 -38.606155 -0.123473 -0.225262 -0.001900 0.856780 9.523832 6.705812 -3.937165 2.186704 -9.282535 -1.729078 6.406394 0.338068 -1.919613 -2.266582 -10.048738 -3.095049 -5.404855 9.412530 -20.439368 -2.500506 -6.538548 -32.641646 -4.494372 3.524292 148.186690 -60.895135 -122.597742 51.582989 -16.327826 -1.232147 0.000000 0.000000 0.000000 17.923864 20.288987 -1.002398 21.856121 29.221502 2.741265 -169.893682 59.158328 -139.731141 -55.640256 32.125936 23.709271 0.000000 0.000000 0.000000
+0.032289 0.862475 0.218069 0.189465 1.666046 -0.667014 7.124316 -1.646611 -25.534450 -8.384569 3.904833 39.322419 0.641812 5.578001 -23.296668 0.013207 -0.460050 -0.062663 -6.309812 -9.453892 4.340221 0.519965 -2.521481 31.302797 2.929019 -6.995506 -36.979034 -0.133305 -0.267938 -0.008827 0.645942 9.769113 6.908480 -3.128593 2.032858 -9.597840 -1.307416 6.261722 0.870620 -0.907872 -4.704097 -10.885833 -1.617734 -8.924058 8.369925 -21.009087 -1.008235 -6.805137 -33.750451 -5.147995 4.060133 151.000483 -59.544178 -123.871539 50.899961 -16.374072 -1.531675 0.000000 0.000000 0.000000 18.570654 18.729567 -1.474539 22.426512 28.490578 3.040475 -171.942723 59.556656 -142.266982 -54.503101 29.480052 22.004654 0.000000 0.000000 0.000000
+0.036112 0.860777 0.227060 0.079923 1.753729 -0.547671 6.690138 -2.094253 -25.263751 -8.424326 3.283513 39.224504 1.024099 5.363356 -23.800468 -0.017539 -0.488687 -0.044401 -6.581226 -9.057914 3.997187 0.538479 -2.227002 32.607108 3.163549 -6.477384 -35.198457 -0.135623 -0.270435 -0.016455 0.633309 9.709816 7.053030 -2.829614 2.162500 -9.287394 -1.352356 6.144380 0.801559 -1.207065 -5.135787 -10.777578 -1.474622 -9.695768 8.349692 -21.292944 -0.619052 -6.593667 -34.530423 -5.641054 4.761613 153.138920 -59.789471 -125.657457 50.798704 -15.587475 -1.859654 0.000000 0.000000 0.000000 19.628811 17.999939 -1.184268 23.429623 27.589263 4.283923 -173.800045 61.120942 -144.074244 -54.081496 28.930931 21.199597 0.000000 0.000000 0.000000
+0.039924 0.859693 0.235899 -0.382986 1.768027 -0.761163 5.922320 -3.043280 -24.274154 -8.285904 2.732921 39.815161 1.915851 6.105594 -24.740860 -0.060172 -0.527018 -0.042289 -6.408600 -8.136258 3.949744 0.864789 -1.340764 34.821412 3.760413 -6.181165 -31.434690 -0.156489 -0.291954 -0.013237 0.671103 9.484644 6.967929 -2.079927 2.092527 -9.630217 -0.975748 5.997332 1.520105 0.236116 -6.898526 -11.375414 -0.712640 -11.119373 8.846897 -21.307942 -0.611634 -6.237792 -35.030153 -6.200731 5.841292 153.264285 -60.866025 -127.057104 51.336920 -15.510204 -3.476047 0.000000 0.000000 0.000000 20.159736 18.220332 -1.271164 24.100662 27.646646 6.554208 -179.322751 63.715881 -150.530441 -52.908614 28.590466 19.420098 0.000000 0.000000 0.000000
+0.043577 0.860538 0.244487 -0.699308 1.757802 -0.987996 5.560973 -3.331192 -23.405544 -8.248546 2.075437 39.287964 2.012871 6.205596 -25.094578 -0.060848 -0.555777 -0.020336 -6.275489 -7.343753 3.292440 1.006081 -1.048959 37.271739 4.204218 -5.992385 -28.790548 -0.188857 -0.331096 -0.001943 0.843516 9.187157 6.895708 -1.707617 2.159785 -9.253608 -0.821172 5.829402 1.526915 0.745113 -7.656755 -11.201652 -0.250807 -11.308380 8.579754 -21.802098 -1.041832 -5.891362 -35.682462 -6.324065 6.759242 153.638947 -62.329992 -127.701495 50.781665 -15.446756 -3.785233 0.000000 0.000000 0.000000 20.721716 18.588940 -0.965089 24.407611 27.707906 7.664882 177.099159 65.337706 -154.245685 -52.033926 28.344279 19.208830 0.000000 0.000000 0.000000
+0.047442 0.858848 0.253683 -1.056758 1.788780 -0.868296 5.428955 -3.689768 -22.588375 -8.592415 1.662039 39.370571 2.565984 6.049441 -26.632759 -0.095853 -0.612039 -0.011789 -5.808316 -7.001652 2.548024 1.358200 -1.203197 39.196661 4.579438 -5.156646 -26.949039 -0.212853 -0.358502 0.033262 -0.025453 9.005960 6.806766 -1.328048 1.877685 -8.926370 -0.720307 5.481298 1.493913 1.284267 -9.586434 -10.567160 1.109489 -13.739521 8.964529 -21.625940 -1.278452 -5.556294 -36.288873 -6.507264 7.932212 157.063409 -62.773217 -130.477389 50.757503 -16.558492 -2.963709 0.000000 0.000000 0.000000 21.014049 18.689162 -0.735325 25.796256 26.771663 9.336153 173.214941 66.795484 -158.935133 -49.251316 27.967792 18.441609 0.000000 0.000000 0.000000
+0.051166 0.858631 0.263273 -1.209809 1.786303 -0.978700 5.079170 -3.802151 -21.827915 -8.486094 1.410467 39.345084 3.075291 6.291457 -27.538405 -0.113237 -0.665601 -0.013881 -5.684183 -6.503256 1.726900 1.375124 -1.233202 41.600611 4.663958 -4.798285 -25.548166 -0.208453 -0.363233 0.036206 -0.204588 8.616302 7.052705 -0.981385 1.903861 -8.574119 -0.568136 5.203577 1.419801 1.554016 -10.062751 -10.645055 1.300957 -14.346881 8.811215 -21.816940 -1.702877 -5.140589 -36.933196 -6.493402 8.898317 160.243527 -62.722921 -132.935261 50.568461 -17.241727 -2.451208 0.000000 0.000000 0.000000 21.295695 19.041559 -0.783544 26.454876 26.733745 10.455501 170.096318 66.763804 -162.261704 -48.031378 28.127670 18.085161 0.000000 0.000000 0.000000
+0.054764 0.859267 0.273275 -1.896132 1.639022 -1.187741 5.260144 -4.048895 -21.272280 -8.140263 1.290181 40.025415 3.365185 6.273242 -28.317599 -0.092454 -0.639794 -0.021179 -5.725129 -5.932774 1.101659 1.969891 -0.739239 43.462053 5.422301 -3.113988 -22.096300 -0.181535 -0.371175 0.027593 -0.349902 8.398737 7.193013 -0.284260 1.737551 -7.819899 -0.477821 4.572881 1.528643 2.505503 -10.437157 -11.365483 1.460391 -15.011177 9.413102 -22.055754 -1.423759 -5.058033 -37.869100 -7.236401 9.979910 164.634115 -62.831689 -135.657209 51.472438 -18.926466 -1.853233 0.000000 0.000000 0.000000 22.000401 18.296560 -1.208764 26.713723 26.273531 11.254208 167.926438 67.278943 -164.272608 -46.535971 28.230302 16.760011 0.000000 0.000000 0.000000
+0.058260 0.857654 0.283298 -2.161968 1.419298 -1.250639 5.184695 -4.076416 -20.769417 -7.988822 1.377856 40.511794 3.881149 6.704771 -29.172519 -0.090970 -0.637521 -0.004615 -5.810385 -5.601313 -0.225464 2.161549 -0.799892 45.533915 5.785447 -2.459230 -19.973026 -0.181349 -0.380567 0.016076 -0.540777 8.089771 7.361325 0.011547 1.706431 -7.561698 -0.462020 4.326428 1.463408 2.896479 -10.767458 -11.622727 1.255688 -15.762500 9.756240 -22.218476 -1.514001 -4.994530 -38.028065 -7.652305 10.453812 167.230870 -62.061462 -137.379651 51.642587 -19.679995 -1.323911 0.000000 0.000000 0.000000 22.562858 18.074686 -1.273008 27.367570 25.837710 12.226686 166.055194 66.969094 -165.865062 -45.736376 28.493206 16.424531 0.000000 0.000000 0.000000
+0.061479 0.858745 0.293085 -1.842462 1.275056 -1.483284 4.175880 -4.647602 -19.980027 -7.296763 2.014258 41.201636 4.765487 8.533445 -30.846764 -0.111869 -0.593031 0.004413 -5.623946 -4.972624 -2.034438 1.957160 -0.446781 49.076722 6.662736 -2.112674 -16.020792 -0.135968 -0.356296 0.048168 -0.822542 7.701282 7.551310 0.174080 1.514056 -6.276596 -0.868971 4.124235 1.067662 4.126243 -10.229797 -12.575884 1.847025 -15.709876 9.513384 -22.063508 -2.031259 -4.865798 -37.719685 -7.931933 11.378249 170.246316 -61.905963 -139.294000 54.180453 -21.952809 -1.966269 0.000000 0.000000 0.000000 22.831412 18.262297 -1.085708 30.106878 25.321760 14.272741 167.459021 68.577193 -163.532217 -45.468867 28.704705 15.335029 0.000000 0.000000 0.000000
+0.064414 0.857970 0.302891 -2.029721 1.205723 -1.458839 3.928182 -4.693771 -19.319156 -6.957372 2.031499 41.757439 5.239701 9.014732 -31.612874 -0.108796 -0.680117 0.008384 -5.374535 -4.540998 -4.237760 2.003843 -1.028404 51.933707 7.188351 -1.845911 -13.289169 -0.138797 -0.399518 0.019792 -1.300669 7.203792 7.774925 0.412099 1.530756 -5.746831 -0.831087 3.881901 0.936612 4.323704 -9.846568 -12.831332 2.117389 -15.730721 9.270627 -22.091172 -2.158503 -4.703247 -38.355572 -8.179300 11.797207 171.723867 -61.296847 -139.865826 55.279203 -22.521816 -1.976068 0.000000 0.000000 0.000000 23.204590 18.190968 -1.011423 31.425819 25.115733 14.885471 167.728245 68.823500 -162.709730 -45.356877 28.481774 15.533721 0.000000 0.000000 0.000000
+0.066686 0.860313 0.313158 -1.646428 1.169851 -1.038464 3.429814 -5.068079 -18.947652 -7.002503 1.900747 41.435800 5.802551 9.916388 -32.549337 -0.080598 -0.549198 0.010519 -5.584808 -4.394773 -6.683589 2.297241 -1.901724 55.772915 7.527009 -2.633132 -10.253712 -0.078460 -0.298084 0.018437 -1.741177 6.636562 7.445839 0.672787 1.387890 -5.657379 -0.947409 3.577952 0.240847 5.306580 -9.006665 -13.853177 2.622249 -14.726450 9.890856 -22.659264 -2.423507 -4.401273 -38.790430 -8.177285 12.597016 174.267708 -61.029905 -141.325407 57.086334 -23.860899 -2.453868 0.000000 0.000000 0.000000 23.715113 17.935104 -0.426886 32.549238 24.396055 15.802826 167.844387 69.187537 -162.351037 -44.750166 28.363141 15.027037 0.000000 0.000000 0.000000
+0.068394 0.860323 0.323898 -1.809542 1.135166 -1.014300 3.192308 -5.175710 -18.141935 -6.947171 1.717224 41.615538 6.033664 10.289704 -33.085428 -0.055945 -0.553250 0.010862 -5.298836 -4.053779 -8.888355 2.095695 -2.794249 57.718178 7.473501 -2.923451 -9.542054 -0.078334 -0.291828 0.005147 -1.944620 6.202059 7.687213 0.882055 1.409279 -5.256046 -0.871405 3.393710 0.151013 5.585777 -8.238575 -14.494379 2.773756 -14.562132 10.084825 -22.714813 -2.785360 -4.157819 -39.142824 -8.347569 12.872899 175.270756 -60.872134 -141.807698 58.008516 -24.595638 -2.867320 0.000000 0.000000 0.000000 23.953058 18.095999 -0.218172 33.684440 24.413465 16.480808 167.770375 69.355421 -161.958517 -44.939218 28.558419 14.805219 0.000000 0.000000 0.000000
+0.069749 0.861302 0.334307 -1.892275 0.901026 -0.882496 2.762200 -5.013128 -17.293825 -7.269249 1.521347 41.142527 6.662170 10.873187 -33.791413 -0.065549 -0.424306 0.011098 -4.413560 -3.125841 -11.739284 1.951823 -3.243274 59.897879 6.959771 -3.613725 -8.629614 -0.053413 -0.220712 -0.015687 -2.721391 5.388124 8.018425 0.490251 1.350252 -4.250836 -1.262416 3.047796 -0.512205 5.267846 -5.813223 -14.689397 2.893793 -11.904364 9.227391 -23.698137 -3.357046 -4.268007 -39.899601 -9.662025 13.808135 177.778245 -61.176687 -142.257685 59.056670 -26.330931 -2.805267 0.000000 0.000000 0.000000 24.062576 17.520639 -0.039939 35.085165 24.192904 17.091460 169.868231 71.359181 -158.977971 -44.272053 27.997763 12.128190 0.000000 0.000000 0.000000
+0.070891 0.861378 0.344706 -2.018727 0.736762 -0.731489 2.463110 -4.999886 -16.441863 -7.086243 1.490630 40.972070 6.934899 11.064026 -34.030743 -0.067818 -0.375179 0.012330 -3.820855 -2.437069 -14.290275 1.640847 -4.181139 61.626364 6.571522 -3.955212 -9.297609 -0.052865 -0.210841 0.014677 -2.726162 4.764188 8.345130 0.500157 1.329128 -3.950678 -1.352111 2.856863 -0.884544 5.166035 -4.594533 -15.248039 3.058611 -10.950980 9.117980 -23.900111 -4.686373 -4.011213 -40.247842 -10.622980 14.298625 178.220905 -61.671019 -142.288785 59.525335 -26.775320 -2.641834 0.000000 0.000000 0.000000 24.335091 18.106594 0.364770 36.180240 24.001392 17.754884 170.892279 72.191783 -157.614897 -43.667606 27.561591 11.652701 0.000000 0.000000 0.000000
+0.071699 0.862577 0.355254 -1.713279 0.623005 -1.200231 1.903614 -4.381003 -14.628335 -7.242722 1.152266 39.512611 7.319266 11.166249 -33.888368 -0.044316 -0.280185 0.001709 -3.706164 -1.931821 -16.679862 1.849142 -4.701624 64.334715 6.162738 -4.521384 -9.645732 -0.058150 -0.160435 0.007344 -3.183297 3.652106 8.822512 0.026867 1.070115 -2.831871 -1.793643 2.347835 -1.424201 4.242618 -3.136526 -14.851612 2.180566 -8.993365 9.605214 -24.415909 -6.011515 -3.550694 -40.098094 -11.998446 14.268580 179.876003 -62.796424 -143.375170 58.844495 -27.435560 -1.451954 0.000000 0.000000 0.000000 24.851125 18.368895 0.939171 37.828889 23.684082 18.381198 175.928640 73.050471 -151.988710 -43.710234 27.622985 10.993863 0.000000 0.000000 0.000000
+0.072235 0.863211 0.366099 -1.795627 0.483146 -1.263189 1.890562 -3.877424 -13.401295 -7.178125 0.844068 38.596699 7.321259 10.819359 -33.888135 -0.059218 -0.250840 0.011055 -3.679200 -1.664538 -19.040069 1.824232 -5.638632 64.886490 6.005984 -4.599522 -10.587719 -0.059831 -0.148855 0.005214 -3.270351 2.826201 9.380398 -0.090431 0.938627 -2.684188 -1.879757 1.982141 -1.555345 3.775963 -1.986449 -15.108328 1.989309 -8.134964 9.913799 -24.586120 -7.404253 -3.182784 -40.832350 -13.369772 14.755721 179.644548 -63.819413 -143.309930 58.264402 -28.085797 -0.399756 0.000000 0.000000 0.000000 25.192774 18.602567 1.513746 38.684343 23.320213 18.702604 177.480317 73.751546 -150.237348 -43.711586 27.804113 10.407361 0.000000 0.000000 0.000000
+0.072401 0.865317 0.377054 -1.521927 0.498219 -1.824950 1.467077 -3.101885 -10.564249 -7.044960 0.561603 36.671810 6.691977 10.217316 -32.498383 -0.056900 -0.295406 -0.016521 -3.564309 -1.034208 -21.608047 1.545203 -6.817309 65.787558 6.020645 -4.266085 -12.019780 -0.070909 -0.177536 0.034341 -3.640066 1.692952 10.771851 -0.707615 0.913245 -2.093468 -2.027883 1.553385 -1.628083 2.545913 0.529058 -14.559907 0.716665 -6.060385 10.762622 -25.647089 -8.965345 -3.051909 -41.616221 -15.522546 14.989626 178.031391 -65.484324 -142.932582 56.898276 -29.652088 -0.494641 0.000000 0.000000 0.000000 25.546156 18.933652 1.854013 40.139983 23.324656 19.486664 179.924143 74.997613 -147.718508 -42.510661 28.141368 11.028288 0.000000 0.000000 0.000000
+0.072082 0.866130 0.388464 -1.376410 0.269329 -1.999745 1.386930 -2.428740 -9.046599 -6.964773 0.241746 35.314271 6.439534 9.750664 -32.311210 -0.090279 -0.332813 -0.011480 -3.939358 -0.832612 -23.993870 1.138405 -7.281999 65.507719 6.221321 -4.407135 -12.993403 -0.093412 -0.190433 0.048477 -3.972980 1.067629 11.649313 -0.794999 0.837868 -1.850722 -1.927818 1.271081 -1.529675 1.712263 1.657482 -14.441491 0.548010 -5.024421 10.554689 -25.558050 -10.178524 -3.094850 -41.991491 -16.899959 15.325722 177.131193 -66.795800 -142.567299 56.123017 -30.220957 0.260818 0.000000 0.000000 0.000000 25.741482 19.058120 2.099374 40.914656 23.025778 20.085464 -179.230660 75.439627 -146.837499 -42.252019 28.227590 11.401341 0.000000 0.000000 0.000000
+0.071486 0.869501 0.400296 -1.538823 0.124282 -2.451855 1.408991 -2.058479 -6.994676 -6.567564 -0.906478 34.044767 5.798160 8.854594 -30.960075 -0.095988 -0.301205 -0.016734 -3.963104 0.167958 -26.180408 1.192905 -7.242348 63.593392 6.039004 -4.529009 -15.308107 -0.090560 -0.174979 0.083847 -4.047737 0.040781 12.891066 -1.318877 0.643834 -1.696302 -2.057264 0.954493 -1.199350 0.398978 4.438953 -14.320779 -0.248952 -2.545550 11.752654 -25.861337 -11.631200 -2.528068 -42.464999 -17.834890 14.661458 173.688355 -68.435066 -139.960589 53.766744 -31.557426 1.105174 0.000000 0.000000 0.000000 25.931088 19.470825 3.173282 41.662907 23.093420 19.814610 -178.294940 75.173262 -145.709519 -42.659649 28.924487 10.660327 0.000000 0.000000 0.000000
+0.070593 0.870628 0.412671 -1.507030 0.006095 -2.595357 1.451049 -1.576502 -5.835971 -6.514809 -1.620238 32.812744 5.501208 8.356415 -30.925007 -0.106106 -0.301723 -0.026378 -4.096901 0.748360 -28.102067 1.257738 -7.345200 61.325047 6.317555 -4.665826 -16.017589 -0.115780 -0.170178 0.061672 -4.049091 -0.755807 13.597187 -1.248533 0.303120 -1.703062 -1.962592 0.604435 -0.980890 0.002562 5.365953 -14.201522 -0.362827 -1.772667 12.324105 -25.639016 -12.452915 -2.329306 -42.436395 -18.353989 14.464581 171.419601 -70.236172 -138.682158 52.527512 -32.116338 1.817391 0.000000 0.000000 0.000000 26.222190 19.604506 3.597055 41.878088 23.145148 20.072682 -177.432295 74.773996 -145.018091 -43.130477 29.220167 10.404846 0.000000 0.000000 0.000000
+0.069237 0.872061 0.425562 -1.350932 -0.053716 -2.923486 1.131150 -1.262978 -3.256185 -6.178244 -3.093316 31.057106 4.379344 7.837996 -31.091594 -0.087911 -0.380565 -0.030991 -4.211632 1.628068 -30.103361 -0.344062 -7.918884 59.134039 6.357083 -5.378431 -17.896658 -0.128748 -0.177826 0.047617 -4.558099 -1.672827 14.961822 -1.738948 -0.152763 -2.002874 -1.659229 0.416770 -0.326670 -0.531993 9.583973 -14.144644 -1.126850 2.561618 14.595823 -25.889158 -13.578264 -2.643293 -43.888199 -20.215537 14.080145 165.807535 -71.501065 -135.420262 50.511104 -31.493934 2.011885 0.000000 0.000000 0.000000 26.369668 19.657817 4.427230 43.262143 23.718252 21.119284 -177.719352 74.453129 -144.743711 -42.243320 29.600272 13.652101 0.000000 0.000000 0.000000
+0.067266 0.873440 0.439006 -1.366081 -0.312324 -2.997135 1.124856 -1.067786 -1.869734 -5.772518 -4.086886 29.433703 3.760487 7.292044 -31.049123 -0.115211 -0.372359 -0.029311 -4.316934 1.986490 -31.387470 -0.841260 -8.253314 55.519096 6.385798 -5.497135 -18.582291 -0.109173 -0.183852 0.072211 -4.479724 -2.271513 15.540404 -1.635568 -0.298312 -2.297209 -1.337722 0.218649 -0.066022 -0.867042 10.444252 -14.072314 -0.917781 3.537152 14.377924 -25.467012 -13.991641 -2.710630 -45.019578 -21.398918 14.041110 161.009504 -71.835032 -131.529327 49.964211 -31.078457 2.069551 0.000000 0.000000 0.000000 26.497635 19.498862 4.589104 44.527906 23.950995 21.751678 -177.619808 73.506897 -144.405059 -41.927994 29.511952 14.023327 0.000000 0.000000 0.000000
+0.064880 0.874833 0.452982 -1.593319 -0.576441 -3.118144 1.824845 -0.745531 -0.027126 -4.882171 -3.708089 28.380933 2.595835 8.183652 -30.876467 -0.083903 -0.419559 -0.030147 -3.717468 3.437367 -32.579894 -1.215773 -7.383652 50.308331 6.277120 -5.518231 -19.682385 -0.116319 -0.203392 0.070526 -4.937700 -2.873461 15.972710 -2.037784 -0.479383 -2.748870 -1.150099 -0.020428 0.588762 -1.210132 12.141221 -13.968972 -1.485012 5.950515 15.311727 -25.771156 -14.446935 -2.790568 -46.044180 -22.830230 13.768757 156.903640 -71.781400 -128.341485 48.874361 -28.947937 1.936597 0.000000 0.000000 0.000000 26.326347 19.365096 5.007651 45.474128 24.451979 22.619840 -179.027934 72.424947 -145.074230 -41.582418 28.871114 14.306713 0.000000 0.000000 0.000000
+0.062099 0.876360 0.467798 -1.726103 -0.804569 -2.931095 1.856773 -0.519729 1.382474 -4.357097 -4.221053 27.177857 2.138968 8.075915 -31.003658 -0.087159 -0.429312 -0.035093 -3.370993 3.884502 -33.268620 -1.310673 -6.986631 45.964530 6.257325 -4.935674 -19.706352 -0.102414 -0.216485 0.071038 -4.893715 -3.469564 16.155326 -2.089673 -0.707558 -2.600514 -0.927222 -0.267189 0.391536 -1.058076 13.145730 -13.978890 -1.511601 6.929864 15.718362 -25.670983 -15.163174 -2.701784 -46.829102 -23.725073 13.772986 153.991749 -71.632169 -125.776852 48.715693 -28.707685 1.769913 0.000000 0.000000 0.000000 26.158897 19.453094 5.225480 45.722486 24.890715 22.989986 -179.514282 71.119923 -145.058742 -42.340268 28.914834 13.645378 0.000000 0.000000 0.000000
+0.059514 0.877435 0.483173 -1.935632 -1.022745 -2.913878 1.218791 -0.294802 2.561296 -3.902465 -4.640001 25.984628 1.812727 7.469347 -30.839759 -0.059739 -0.412413 -0.038197 -3.102044 4.720293 -33.464918 -1.640579 -6.269284 40.562298 6.659281 -3.888945 -17.874846 -0.106922 -0.213252 0.061458 -4.597405 -4.120400 16.734517 -2.437528 -1.223096 -2.601354 -0.939535 -0.506362 0.620965 -2.789750 16.275419 -13.890868 -2.515155 11.275083 16.270171 -25.986756 -16.544068 -2.431422 -47.611278 -24.696877 13.397054 151.706641 -72.358168 -123.702785 47.164834 -28.486267 4.499309 0.000000 0.000000 0.000000 26.167033 19.219078 5.580082 47.012321 24.847807 22.941616 -175.612904 68.867238 -140.662267 -42.632697 29.303823 14.305097 0.000000 0.000000 0.000000
+0.056901 0.877219 0.499156 -2.001228 -1.248153 -2.639172 0.958754 -0.015443 3.893049 -3.564428 -4.972895 25.039201 1.726529 7.362633 -31.133079 -0.060310 -0.396114 -0.045527 -2.602018 4.862053 -33.796574 -1.885378 -6.226459 36.837692 6.804286 -3.193639 -16.701230 -0.065100 -0.197376 0.052929 -4.520807 -4.721549 16.718795 -2.328578 -1.726680 -2.450512 -0.802351 -0.879811 0.271148 -3.132216 17.240411 -13.817318 -2.898248 12.409388 16.204143 -25.728481 -17.359612 -2.535917 -47.982737 -25.651612 13.482507 148.660348 -72.777721 -120.499578 46.809249 -28.327942 5.983079 0.000000 0.000000 0.000000 26.022239 19.380388 5.496510 47.270119 25.106650 23.142902 -174.363306 67.478305 -138.972222 -42.882664 29.047473 14.791084 0.000000 0.000000 0.000000
+0.054123 0.872736 0.515765 -1.807751 -1.587755 -2.133613 0.498122 0.345511 4.940936 -3.358399 -5.245425 24.570495 1.418855 7.115907 -31.046397 -0.051184 -0.351488 -0.057271 -2.596150 4.821306 -34.096599 -1.998165 -5.345889 32.569856 7.129546 -2.464650 -15.032202 -0.087885 -0.164467 0.052240 -4.150091 -5.128771 16.637154 -2.437750 -2.253436 -2.461074 -0.763728 -1.249682 0.647741 -4.616472 18.520014 -13.913133 -3.119559 14.295613 17.007858 -25.154725 -18.823227 -2.046027 -48.414723 -26.269343 13.279241 145.045137 -73.537477 -117.075092 46.337913 -27.451496 7.306045 0.000000 0.000000 0.000000 25.666941 19.752304 5.617845 46.983523 25.315110 22.264231 -172.561885 65.920737 -137.115143 -42.726630 28.442137 15.005406 0.000000 0.000000 0.000000
+0.051329 0.871612 0.533351 -1.940144 -1.789098 -1.762123 0.352476 0.470246 5.788027 -3.157979 -5.573505 24.070012 1.245998 7.261359 -31.158447 -0.055737 -0.303409 -0.066078 -2.437405 4.744039 -34.251004 -1.787063 -4.848957 30.031124 7.220162 -1.703214 -14.105028 -0.070031 -0.169339 0.055294 -3.710714 -5.729676 16.343392 -2.357317 -2.628999 -2.247391 -0.776505 -1.498444 0.569179 -5.304055 19.124164 -13.993981 -3.488637 15.438744 16.876253 -24.833342 -19.749740 -2.293092 -48.364954 -27.135071 13.262312 142.960347 -73.868287 -114.407423 45.783879 -27.531665 8.222585 0.000000 0.000000 0.000000 25.210778 19.988816 5.236029 46.153727 25.784530 21.587951 -171.264336 64.997414 -135.461050 -42.664972 28.214487 15.219114 0.000000 0.000000 0.000000
+0.048420 0.868388 0.552409 -1.764914 -1.870946 -1.113270 1.026483 1.263825 6.376544 -3.601186 -5.046465 23.721193 1.128998 7.393608 -31.727577 -0.033724 -0.289031 -0.057379 -2.350757 3.967922 -33.737760 -1.136577 -4.466849 28.112567 7.264729 -1.849200 -12.877964 -0.093641 -0.186637 0.042171 -3.020595 -6.398091 15.367291 -2.244097 -3.619307 -1.986107 -1.063113 -2.096298 0.678965 -7.221159 19.321525 -12.678151 -4.409074 16.977231 17.940008 -24.026384 -21.809629 -1.396578 -49.125059 -27.248032 13.660729 138.416578 -76.744010 -109.143132 43.995209 -27.875362 9.875960 0.000000 0.000000 0.000000 24.412464 20.273251 5.299172 45.294666 25.979667 19.985462 -170.422127 63.227955 -133.298802 -42.358565 28.313835 15.771166 0.000000 0.000000 0.000000
+0.045233 0.865761 0.572204 -1.747827 -1.947078 -0.715408 1.321792 1.682343 7.031799 -3.627943 -5.266481 23.690626 0.988126 7.630957 -32.010459 -0.022269 -0.263196 -0.083584 -2.455996 3.542548 -33.468131 -0.998684 -4.601139 29.017613 6.583112 -2.280911 -12.289206 -0.055388 -0.171847 0.019022 -2.257655 -7.144777 14.842118 -1.864514 -4.269711 -2.037518 -1.279192 -2.447352 0.525766 -7.541751 19.444035 -12.280060 -4.969006 17.756813 18.125694 -24.019312 -22.848350 -1.156951 -49.830749 -27.463158 14.200532 135.965011 -78.822991 -106.247791 43.237841 -27.889891 10.875378 0.000000 0.000000 0.000000 23.728426 20.371639 4.717154 44.670720 26.039248 18.946170 -169.176231 62.810353 -131.564974 -42.611275 27.939079 16.077268 0.000000 0.000000 0.000000
+0.041766 0.860990 0.592254 -1.594481 -2.155237 -0.083333 2.073231 2.626411 8.070259 -4.061608 -4.620354 24.143233 0.728283 8.154723 -32.544960 -0.037330 -0.277101 -0.096060 -2.647016 2.478152 -33.890905 -0.900354 -5.392965 31.153920 5.536394 -3.672880 -11.710611 -0.053579 -0.160173 0.040439 -1.593658 -7.583984 14.452733 -1.644219 -4.565848 -1.934614 -1.587770 -2.690364 0.350290 -8.025088 18.391543 -11.266827 -4.465533 17.239996 19.133819 -23.557912 -23.776111 -0.878077 -50.199828 -26.978558 14.924566 135.038784 -80.653726 -105.007489 42.175306 -27.796632 11.571660 0.000000 0.000000 0.000000 23.587140 20.779317 4.409149 43.900321 25.658915 18.158759 -168.676814 62.485322 -130.276689 -42.059331 27.636478 18.139330 0.000000 0.000000 0.000000
+0.037993 0.857739 0.612339 -1.657222 -2.517027 0.160371 3.120463 3.127673 8.540716 -4.391692 -4.071536 25.789949 -0.102844 8.182178 -32.538650 -0.027047 -0.283228 -0.068881 -2.826573 2.481869 -34.111339 -0.861032 -6.076962 34.024398 4.138691 -4.621601 -12.798984 -0.028868 -0.152271 0.062796 -0.416822 -8.517939 13.995468 -1.362770 -4.794926 -1.875896 -1.823772 -2.729615 0.196309 -7.922713 18.494030 -10.931427 -4.706755 17.858034 19.396767 -24.221722 -24.460289 -0.527508 -50.670487 -26.526161 15.038508 129.354398 -82.528465 -98.793524 41.049458 -27.599105 12.387012 0.000000 0.000000 0.000000 23.191044 21.104214 4.373057 43.258924 25.536869 17.085410 -168.151938 62.721347 -129.412551 -41.875277 27.304709 18.287234 0.000000 0.000000 0.000000
+0.033933 0.851595 0.633285 -1.430700 -2.927117 0.159751 3.801906 3.868232 8.668284 -4.581294 -3.112383 26.931439 -0.690176 9.165503 -32.649500 -0.008712 -0.275702 -0.067238 -2.969275 2.042362 -34.483852 -0.646214 -7.211279 37.240016 2.470094 -6.664302 -14.291065 -0.012666 -0.168301 0.083542 0.334430 -9.290212 12.754131 -0.633488 -5.172094 -1.188862 -2.001663 -3.094968 -0.028502 -6.595888 17.170386 -9.960312 -4.388128 17.191112 20.572604 -25.255119 -25.086753 0.676211 -50.133294 -26.198630 15.379187 118.706509 -83.696737 -88.231348 40.427140 -26.704396 11.577426 0.000000 0.000000 0.000000 23.872888 21.613203 4.844720 42.235557 25.873273 16.621101 -167.170420 64.547100 -128.831632 -40.212176 26.425443 18.642054 0.000000 0.000000 0.000000
+0.029647 0.848377 0.654623 -1.440690 -3.658662 0.121899 4.813877 4.345802 8.936488 -4.855561 -2.084067 29.642201 -1.443608 9.341517 -32.106610 -0.033454 -0.280133 -0.074431 -2.677543 1.774399 -34.135093 -0.535217 -8.043600 39.780084 1.162568 -7.654747 -16.125592 -0.041285 -0.184779 0.074828 0.979378 -9.802142 12.329895 -0.243587 -5.271149 -0.786208 -2.127467 -3.156196 -0.151416 -6.205664 16.896959 -9.576889 -4.521127 17.283791 20.726103 -26.107495 -25.368163 1.345278 -50.368873 -25.751386 15.431366 104.251525 -84.833959 -73.711469 39.637632 -26.105244 11.416877 0.000000 0.000000 0.000000 23.916564 21.771917 5.207587 41.894126 25.896311 15.880673 -166.153170 65.987036 -128.114337 -39.306237 26.168351 18.748367 0.000000 0.000000 0.000000
+0.025344 0.843184 0.675970 -1.450447 -4.432806 -0.049674 5.422999 4.986408 9.614064 -5.749813 -1.321907 31.556375 -1.896248 9.272802 -31.086525 -0.076662 -0.332335 -0.070639 -2.728436 1.239662 -33.358434 0.007904 -8.096171 42.271541 0.139385 -8.216128 -18.446489 -0.036034 -0.208582 0.088567 1.763074 -10.029088 11.032687 0.296788 -5.367703 0.313211 -2.354919 -3.149646 -0.194948 -5.006284 15.333243 -8.545856 -3.857441 16.334501 21.158114 -26.568487 -25.396133 1.440593 -49.938896 -25.226086 15.036354 90.529088 -84.612712 -59.954569 38.480508 -24.349601 10.339867 0.000000 0.000000 0.000000 24.443868 22.097885 5.847714 41.400491 25.892208 15.432882 -166.190165 67.435190 -129.107156 -38.314518 26.273034 18.213373 0.000000 0.000000 0.000000
+0.021088 0.840211 0.697002 -1.107189 -5.291362 -0.531024 5.661449 5.023127 9.576292 -6.397002 -0.539772 35.031076 -2.574845 8.731435 -28.497580 -0.091476 -0.358247 -0.074173 -2.532853 1.197838 -32.377531 0.026517 -8.453914 44.073953 -0.877198 -8.975294 -19.971601 -0.056670 -0.229762 0.101577 2.104597 -9.878090 10.538940 0.537379 -5.221020 0.922266 -2.376721 -3.021821 -0.283681 -4.593773 15.063838 -8.008821 -3.837213 16.115559 21.341463 -27.311636 -25.349088 1.780951 -49.818781 -24.712461 14.987354 76.032592 -84.240711 -45.860379 37.965985 -23.582729 10.055896 0.000000 0.000000 0.000000 25.042172 22.394383 6.231586 41.354805 25.896056 15.596587 -166.468041 68.748452 -129.644494 -37.562900 26.356384 18.457354 0.000000 0.000000 0.000000
+0.016617 0.839743 0.716860 -0.945337 -6.063146 -1.813325 6.063698 5.189501 8.241624 -6.922697 1.685370 40.897145 -3.902499 7.430517 -23.800260 -0.064127 -0.262884 -0.090252 -2.214636 0.794156 -29.760758 -0.326573 -8.541091 45.141164 -2.143207 -9.342481 -21.542236 -0.038254 -0.156077 0.109160 3.194470 -9.291628 10.267791 1.022874 -5.321649 1.621883 -2.644413 -2.721582 -0.573217 -3.382551 12.748477 -7.908300 -3.073538 13.270518 22.506242 -28.697267 -26.131090 2.438075 -48.878206 -24.724276 14.502948 56.516245 -80.746309 -27.515098 38.490852 -23.420993 9.303536 0.000000 0.000000 0.000000 26.672271 22.715258 7.015535 40.957647 24.832509 15.433868 -164.417960 69.104131 -127.568711 -39.728630 26.941185 16.507503 0.000000 0.000000 0.000000
+0.012414 0.840097 0.735303 -0.638658 -6.802191 -2.711682 6.434796 4.604793 5.507293 -7.887636 3.295501 47.764469 -4.971271 6.114375 -18.711918 -0.072634 -0.240518 -0.105516 -1.837291 0.679028 -28.160496 -0.427439 -8.506076 45.505244 -3.082959 -9.921285 -22.574224 -0.036698 -0.139260 0.109558 3.377627 -8.571166 10.329404 1.119668 -5.236742 1.812579 -2.707466 -2.471895 -0.450005 -3.304437 12.262983 -7.735331 -3.057928 12.657860 22.494918 -29.553425 -25.998323 2.847768 -48.196013 -24.164995 13.947345 48.912103 -78.172844 -21.294773 38.572222 -22.749451 8.768722 0.000000 0.000000 0.000000 27.170870 22.640490 7.275924 40.806047 24.459147 15.250341 -163.753450 69.570832 -127.242897 -40.614063 26.980736 16.115406 0.000000 0.000000 0.000000
+0.008673 0.840177 0.752670 -0.842235 -7.507752 -3.466093 7.424691 4.979248 2.876210 -7.700020 5.364339 54.891810 -5.325680 6.212764 -14.600107 -0.073438 0.024059 -0.106179 -1.239701 -0.035130 -25.703797 -0.126231 -8.231486 45.445152 -4.230942 -10.428829 -24.992550 0.001499 0.041573 0.118467 3.854086 -7.825336 10.624246 1.130214 -4.958052 1.373308 -2.620058 -1.990880 -0.233583 -3.633951 10.752166 -8.597224 -2.978956 10.985565 22.747956 -29.624851 -26.013625 2.560337 -48.088846 -23.966131 13.798544 42.175734 -76.316488 -15.632644 38.609653 -21.204371 6.812169 0.000000 0.000000 0.000000 27.282144 22.749416 7.145460 40.316095 23.556738 14.915483 -160.904317 70.481374 -124.898150 -42.204822 26.170715 14.469266 0.000000 0.000000 0.000000
+0.005462 0.840526 0.769091 -0.662224 -8.224966 -3.965444 7.643650 4.965295 -0.100094 -7.250341 6.560021 60.748386 -4.739740 6.746898 -14.475928 -0.032633 0.063537 -0.122122 -0.897666 -0.670000 -23.750602 0.082130 -7.678669 44.972050 -4.656813 -10.579567 -25.834538 -0.000384 0.059600 0.091337 3.817970 -6.982346 11.120201 1.327644 -4.941856 1.191916 -2.457084 -1.692768 -0.031607 -3.575363 9.779811 -8.602423 -2.838074 10.150968 23.020465 -29.774924 -25.715924 2.390865 -47.703971 -23.500982 13.108550 37.490835 -74.456411 -11.884178 38.409812 -20.408056 6.147041 0.000000 0.000000 0.000000 27.669971 22.858878 7.226379 40.117546 23.046860 14.631128 -158.659140 70.900067 -123.186696 -42.770105 26.138775 13.805298 0.000000 0.000000 0.000000
+0.002155 0.838479 0.785073 -0.660472 -9.080350 -4.191698 7.172641 4.809194 -3.827068 -5.103529 8.129543 66.867857 -3.775686 9.466936 -14.225194 -0.011434 0.177650 -0.079442 -0.150003 0.158729 -22.174949 0.473643 -6.267441 45.009560 -5.141599 -12.167429 -28.448820 0.002044 0.113988 0.088467 4.211581 -6.373389 11.481137 1.236719 -4.809881 0.489873 -2.207218 -1.248859 0.468945 -4.018144 10.611989 -9.199235 -2.309419 12.095908 22.043608 -30.268591 -25.969984 2.829525 -47.826796 -22.930724 12.357629 39.034259 -72.469684 -14.347493 39.193224 -18.648950 4.477913 0.000000 0.000000 0.000000 27.659719 23.191406 7.265244 40.157903 23.239754 13.995498 -154.951329 69.829627 -119.665140 -44.407201 23.995070 12.712082 0.000000 0.000000 0.000000
+-0.000900 0.837531 0.801006 -0.532334 -9.878677 -4.435680 6.745180 4.078088 -7.844878 -3.605988 9.289931 71.910777 -2.742535 10.556305 -15.969434 -0.037806 0.204205 -0.092859 0.225957 0.215253 -20.997343 0.535722 -5.663114 45.576952 -5.040264 -12.627679 -29.324606 -0.004048 0.136702 0.073052 3.879663 -5.527312 12.420977 1.333946 -4.858840 0.218754 -2.030182 -0.960415 0.673752 -3.985422 10.024654 -9.622657 -2.127711 11.875564 21.832826 -30.129114 -25.872472 2.904368 -47.638314 -22.554541 11.858571 39.708262 -71.863036 -15.388858 39.730929 -18.447833 3.648732 0.000000 0.000000 0.000000 27.861865 23.456195 7.223676 40.212323 23.271639 13.620527 -152.925735 69.212944 -117.904897 -45.018986 23.390979 12.264724 0.000000 0.000000 0.000000
+-0.003523 0.837043 0.817193 -0.356969 -10.529885 -4.887549 6.890974 3.900992 -12.381315 -2.506688 10.226821 76.562691 -2.505232 9.629625 -15.435965 -0.036569 0.191125 -0.107020 0.276476 0.304115 -19.773803 0.165400 -5.549857 45.728557 -5.373104 -12.778414 -30.265098 -0.016464 0.125100 0.084721 3.826598 -5.098002 14.103303 1.414349 -4.812521 0.068250 -1.865470 -0.752925 0.487037 -4.702641 10.952168 -10.421080 -2.241422 12.915705 20.997451 -31.281777 -26.312411 3.945659 -47.664891 -21.934935 11.942078 38.015791 -71.962268 -14.294003 39.071511 -18.175459 2.308861 0.000000 0.000000 0.000000 28.820544 23.474667 7.448339 39.370314 23.614624 12.841993 -152.675424 66.856097 -117.545351 -47.248037 24.052811 11.980607 0.000000 0.000000 0.000000
+-0.006120 0.834931 0.833741 -0.285652 -11.339029 -4.859742 6.736778 3.493803 -16.579738 -1.945901 10.987974 78.652448 -1.853560 9.224095 -16.485562 -0.047890 0.170817 -0.086952 0.228493 0.243053 -19.073774 -0.017776 -5.115819 46.407851 -5.371864 -12.622509 -30.995119 -0.009668 0.113504 0.039995 3.583889 -4.514664 15.159199 1.355285 -4.886512 0.056105 -1.807718 -0.413681 0.353220 -4.933666 10.959170 -10.994498 -2.474081 13.101192 20.803664 -31.592115 -26.091142 4.193220 -47.694110 -21.315065 11.902699 39.606372 -72.308894 -15.614338 38.813965 -18.206299 1.658712 0.000000 0.000000 0.000000 29.243384 23.659933 7.486843 39.399301 24.440997 12.532878 -152.257196 65.490802 -116.902252 -48.254495 24.900597 11.543559 0.000000 0.000000 0.000000
+-0.008350 0.833594 0.849613 -0.598030 -12.194818 -5.002337 6.790479 3.390847 -21.548738 -0.491616 11.862836 80.284194 -1.419022 8.172694 -18.322777 -0.044137 0.133395 -0.065375 0.546789 0.428428 -17.576063 0.633473 -4.350076 46.027048 -5.910999 -13.074581 -32.407491 -0.029957 0.079167 -0.001739 2.782331 -3.868768 16.072887 1.517478 -4.186613 0.284592 -1.586647 -0.381386 -0.066546 -4.576437 9.989784 -11.585609 -3.089283 12.510443 20.811731 -32.188185 -25.859251 5.432205 -47.891023 -21.012994 12.582561 36.575532 -73.421664 -13.362785 39.286945 -17.774607 1.483425 0.000000 0.000000 0.000000 30.322962 23.187805 6.738155 38.505980 25.102478 11.897498 -146.572286 64.778314 -111.735213 -49.213059 25.237427 11.563294 0.000000 0.000000 0.000000
+-0.010207 0.834184 0.865453 -0.555728 -13.005180 -4.712622 6.834961 3.296090 -25.944752 -0.186023 12.540209 80.102086 -0.868158 8.011035 -19.811420 -0.067127 0.089349 -0.062296 0.360392 0.461404 -16.756346 0.854212 -3.422376 45.953343 -5.790908 -12.868705 -32.774621 -0.034452 0.022636 -0.009790 2.545933 -3.217503 16.868023 1.295305 -3.921873 0.334698 -1.676528 -0.196453 -0.266762 -4.644993 9.415243 -11.764562 -3.435820 12.823837 20.593642 -32.623499 -25.786674 6.053717 -47.568292 -20.615638 12.444595 36.234111 -73.284459 -13.503501 39.493090 -17.819564 1.366327 0.000000 0.000000 0.000000 30.568568 23.421653 6.527405 38.487666 25.599830 11.628837 -142.957213 64.511836 -108.627354 -49.418839 25.377539 12.303251 0.000000 0.000000 0.000000
+-0.011643 0.833993 0.881514 -0.565107 -13.813326 -4.229948 7.465831 4.052873 -30.098663 0.555736 13.540736 78.459079 -0.668320 8.379578 -21.797597 -0.066922 0.022463 -0.087203 0.344717 0.214466 -16.476666 1.199971 -3.139660 46.754730 -5.508181 -13.624208 -33.959061 -0.041032 -0.029179 -0.017919 1.894365 -2.412248 17.982918 1.336197 -3.088861 -0.751100 -1.198766 0.296600 -0.479914 -3.898718 9.114051 -13.665345 -3.206903 12.413998 19.578280 -32.303381 -24.571417 5.846813 -47.429902 -19.670225 12.167651 36.085710 -74.053440 -14.544569 40.538930 -17.068253 1.345655 0.000000 0.000000 0.000000 31.335791 23.285499 6.400754 39.105045 26.662241 11.351339 -137.890433 66.166296 -104.903212 -49.169047 24.915394 13.441635 0.000000 0.000000 0.000000
+-0.012903 0.835429 0.898155 -0.403161 -14.734554 -3.974570 7.952076 4.163919 -33.456681 0.340108 13.994987 74.638695 -0.709287 8.878900 -23.074469 -0.064440 -0.026304 -0.068212 0.002794 -0.020639 -15.478999 1.826816 -2.207166 46.689726 -5.127729 -13.272173 -34.277696 -0.063827 -0.053790 -0.044926 1.684931 -1.491728 19.223458 0.970576 -2.645093 -1.581455 -1.091830 0.738593 -0.285745 -3.607083 8.310139 -13.876378 -3.342339 12.232505 19.436502 -32.455871 -23.717604 5.862199 -47.396729 -18.657215 12.050431 36.240232 -74.572340 -15.324157 41.265190 -16.778285 0.937562 0.000000 0.000000 0.000000 31.405090 23.310429 6.328656 39.632496 27.081183 11.292508 -133.749672 67.340318 -101.605970 -49.322033 24.763530 13.873958 0.000000 0.000000 0.000000
+-0.013626 0.838624 0.914243 0.023295 -15.703196 -3.848437 7.648278 4.855611 -36.064592 2.006764 15.471746 69.475895 -1.803288 10.326320 -22.529717 -0.094497 -0.126830 -0.017682 0.517145 -0.015677 -14.770876 1.736396 -2.229150 46.648722 -4.576129 -13.817643 -35.262105 -0.061031 -0.157015 -0.056208 1.735130 -0.571814 22.357173 0.086627 -0.671281 -2.821741 -1.159715 1.469766 0.108382 -4.331903 9.689048 -15.205810 -4.263811 13.892485 16.363923 -31.067457 -22.162952 4.501832 -46.587066 -17.357201 11.988181 37.276824 -75.350340 -16.343655 42.610342 -17.551769 1.509269 0.000000 0.000000 0.000000 30.348064 22.368409 4.803418 40.886359 28.131187 11.343977 -130.316559 67.746665 -99.170047 -50.813748 24.114062 11.434672 0.000000 0.000000 0.000000
+-0.013648 0.842069 0.930745 0.238310 -16.422138 -3.241982 7.556526 5.168370 -38.341365 1.824802 16.196624 63.464527 -2.282988 11.118306 -22.095632 -0.111520 -0.267767 0.004710 0.270646 0.044251 -14.106760 2.033774 -1.685837 46.077289 -4.168072 -14.013623 -35.601146 -0.059275 -0.193090 -0.034710 1.850515 -0.098148 23.337796 -0.449104 0.122848 -3.803141 -1.220809 1.929172 0.387067 -4.015367 9.249252 -15.907955 -4.356354 13.703841 15.252780 -30.587989 -21.053560 3.955319 -45.911669 -16.158024 11.953211 40.670929 -75.698361 -19.353782 43.879278 -17.786328 1.907620 0.000000 0.000000 0.000000 29.379183 22.412084 4.003346 40.477779 28.882217 10.892330 -126.790207 68.179395 -96.455914 -51.278420 24.116003 11.386551 0.000000 0.000000 0.000000
+-0.013510 0.843632 0.948305 0.569487 -17.138340 -2.872946 6.846326 5.122185 -40.535604 0.642372 16.532306 55.847492 -3.253096 10.793623 -19.991832 -0.106664 -0.297941 -0.003265 0.362790 -0.524253 -13.701797 1.946896 -1.453835 46.198639 -3.699495 -14.725100 -36.558880 -0.050085 -0.215669 -0.050907 1.601015 0.624505 24.615883 -1.336377 1.258663 -4.523713 -1.332091 2.313329 0.679472 -3.921720 10.175276 -16.482576 -4.289882 14.683885 13.260108 -29.698541 -20.029139 3.369313 -45.923535 -15.109826 12.150412 46.770361 -76.692655 -24.980673 45.195104 -17.575521 0.699809 0.000000 0.000000 0.000000 28.059676 21.853838 3.108326 40.142062 29.543342 10.053365 -123.411450 68.229317 -92.954142 -50.919728 24.912635 12.262919 0.000000 0.000000 0.000000
+-0.013113 0.846545 0.967580 0.660176 -17.814048 -2.423799 6.584757 5.218032 -41.288617 -0.725565 15.742626 48.097869 -4.224573 9.593928 -16.917807 -0.075404 -0.342933 0.014977 0.202643 -0.884357 -12.908849 2.094773 -1.082946 45.908214 -3.420890 -14.697902 -36.558760 -0.065132 -0.223754 -0.052387 1.558162 0.970739 25.297779 -1.906506 1.905375 -4.902195 -1.499581 2.516166 1.067357 -3.548754 10.101926 -16.682216 -4.883834 14.873858 11.687427 -29.035621 -18.766466 2.566825 -45.619795 -14.165926 12.254988 52.527037 -76.808684 -30.147043 45.780119 -17.649138 0.289564 0.000000 0.000000 0.000000 26.798413 21.652961 2.198244 39.387196 30.832082 9.681438 -120.975028 68.813172 -90.522238 -51.158647 25.287202 12.320219 0.000000 0.000000 0.000000
+-0.013000 0.849073 0.987292 0.939937 -18.394386 -2.488928 5.041171 5.525607 -42.105300 -0.663138 16.343841 42.164905 -5.169461 8.962126 -14.948273 -0.058848 -0.315329 0.003433 0.206130 -1.203271 -12.406253 2.239606 -0.836213 46.149453 -3.332064 -13.591925 -37.462207 -0.014551 -0.169009 -0.069002 2.015251 0.781863 26.614426 -2.119392 2.300522 -6.411713 -1.863812 2.403639 1.671856 -3.262530 10.476964 -14.787193 -6.802216 15.743163 10.473403 -28.422741 -16.587037 3.043657 -43.530482 -11.762457 10.314842 56.414416 -75.800183 -34.062235 45.197121 -18.411977 2.173815 0.000000 0.000000 0.000000 25.213121 21.239721 0.579370 41.799937 33.374359 11.425459 -120.574299 71.241237 -90.346871 -52.601494 26.063214 9.617445 0.000000 0.000000 0.000000
+-0.013268 0.852241 1.007897 0.627624 -18.986012 -2.488306 4.389380 5.768059 -43.000294 -0.902880 16.427933 37.157115 -5.851327 8.861780 -11.670309 -0.056548 -0.253336 0.001863 0.300522 -1.428059 -10.596304 2.276937 -0.481377 45.588527 -3.078212 -13.290546 -37.736713 -0.027012 -0.134170 -0.066444 2.449888 1.079588 26.802212 -2.309909 2.719793 -6.523199 -2.109032 2.681898 2.159017 -3.475598 10.697401 -14.430503 -7.716659 15.736811 9.191172 -28.151824 -15.055031 2.799798 -42.791772 -10.464190 9.947370 59.816294 -75.322810 -37.807494 45.637120 -18.024645 2.379681 0.000000 0.000000 0.000000 24.298870 20.411829 -0.379776 42.313178 34.094760 12.048290 -122.758823 71.175682 -92.700318 -53.143771 25.680475 8.104633 0.000000 0.000000 0.000000
+-0.013747 0.851189 1.029508 0.882925 -19.645042 -2.799084 3.341067 5.316324 -43.241951 -0.348534 15.715509 32.832280 -6.956105 8.445794 -9.566454 -0.028273 -0.145005 0.011928 -0.510269 -1.702277 -9.010005 2.598289 1.287075 45.246739 -2.093127 -12.199090 -38.170763 0.006154 -0.109424 -0.078288 2.267523 1.690487 27.281567 -2.532578 2.593577 -6.942308 -2.461065 2.671160 2.825760 -3.690826 7.899802 -14.645674 -8.099020 13.617137 8.879534 -27.425909 -13.496536 2.962373 -42.028070 -8.814600 9.725817 62.210099 -75.658345 -40.206246 46.440499 -18.292966 3.750870 0.000000 0.000000 0.000000 22.936444 19.293774 -1.743424 42.665604 34.139781 12.462380 -126.679355 72.076063 -97.620617 -54.400804 25.817295 4.728952 0.000000 0.000000 0.000000
+-0.014384 0.851972 1.052325 0.566294 -20.323910 -2.475632 2.789557 5.115682 -43.059093 0.200886 15.782587 29.812270 -7.059704 8.669344 -8.291256 -0.012401 -0.145090 0.013317 -0.656008 -2.058906 -7.506326 3.134769 2.339103 45.458208 -1.856296 -11.404950 -38.106520 0.006585 -0.081674 -0.074397 1.986037 2.345607 27.010550 -2.683188 2.764544 -6.756439 -2.503983 2.977258 3.105897 -3.788129 7.679680 -14.565238 -8.176984 13.268604 8.674896 -27.149934 -12.313596 2.882011 -41.565324 -7.215585 9.525143 63.193034 -75.142272 -41.415816 46.799423 -18.315938 3.891128 0.000000 0.000000 0.000000 22.600870 18.599381 -1.796400 43.180603 34.368737 13.211825 -130.954272 72.294749 -101.528292 -54.724839 26.055167 3.385640 0.000000 0.000000 0.000000
+-0.015846 0.850188 1.077001 0.214339 -21.150487 -2.791613 3.784562 4.106848 -43.534949 -0.892386 12.184170 28.616776 -7.632122 7.554054 -8.254127 0.018457 -0.105845 -0.007217 -1.510013 -1.868559 -4.353448 3.924164 4.590779 43.461031 -1.625911 -11.652397 -38.741640 -0.004202 -0.067383 -0.072319 1.230380 3.302187 26.410801 -2.413291 2.506981 -6.438022 -2.079077 3.043691 3.538397 -2.992450 5.373862 -14.019243 -7.963298 10.329971 9.764113 -26.929292 -11.077432 3.147914 -40.519857 -5.432541 9.146901 62.023134 -74.973438 -40.261391 45.346554 -19.216701 5.610622 0.000000 0.000000 0.000000 22.190522 18.251190 -2.004692 42.623591 34.693446 13.157183 -137.628697 72.161729 -108.133306 -56.847512 27.005132 0.893508 0.000000 0.000000 0.000000
+-0.017822 0.849036 1.102923 0.019351 -22.137952 -2.596544 4.420340 3.823254 -42.774093 -0.998862 11.375202 29.006618 -7.490899 7.825827 -8.492382 0.072414 -0.088154 -0.025529 -1.734223 -1.626359 -2.057214 4.292005 5.835440 41.999471 -1.461878 -11.903641 -38.889634 0.038056 -0.074209 -0.083351 0.322506 4.167929 25.370962 -2.487460 2.387220 -6.335593 -1.818495 3.227973 3.804952 -2.714210 5.039461 -13.568193 -7.561121 9.320878 10.003985 -26.952791 -9.673910 3.336344 -39.886324 -3.572228 8.637051 60.605623 -74.738051 -38.964913 44.681394 -19.608558 6.088900 0.000000 0.000000 0.000000 22.202239 17.609700 -2.011710 42.735846 34.976559 13.338367 -142.776976 71.800130 -112.814816 -56.994118 27.381310 -0.741800 0.000000 0.000000 0.000000
+-0.019967 0.845930 1.129710 0.014233 -23.155554 -2.568916 5.519047 3.609985 -43.088415 -1.944447 9.734696 32.133878 -7.566410 7.543168 -8.737188 0.081901 -0.089744 0.025323 -3.287447 -1.441543 1.008334 4.902359 8.097635 40.185481 -0.774972 -12.728930 -38.777080 0.044627 -0.054412 -0.075255 -0.176737 5.311334 24.850448 -2.239151 2.422356 -6.162770 -1.275931 3.362407 4.118998 -2.525100 3.261112 -12.985365 -6.592033 7.045869 10.610538 -26.439795 -8.125315 2.912134 -38.863553 -1.553273 7.964538 60.964793 -73.851807 -39.266169 43.692716 -19.951052 7.705276 0.000000 0.000000 0.000000 21.645811 17.616685 -2.655226 43.119706 35.444315 14.319552 -151.052748 72.189791 -121.024992 -57.614817 27.119436 -2.178135 0.000000 0.000000 0.000000
+-0.021982 0.842384 1.156754 0.172966 -24.029578 -2.452341 6.057797 3.525261 -42.931344 -2.612433 9.246019 35.953769 -7.028157 7.442123 -9.129419 0.069614 -0.089480 -0.003478 -4.162252 -1.014176 2.980276 4.815058 9.411404 39.302855 -0.228241 -13.121736 -38.606498 0.042803 -0.060191 -0.072165 -0.876171 6.138540 23.902612 -2.517889 2.324963 -5.650109 -1.085871 3.465612 3.839222 -2.330068 2.387366 -13.073753 -5.756271 6.237193 11.491566 -26.744356 -7.237536 3.248620 -38.287069 -0.244431 7.481660 60.383546 -73.474891 -38.934294 43.398513 -20.303550 7.794065 0.000000 0.000000 0.000000 21.827980 17.533733 -2.443787 42.545828 35.835071 14.092437 -154.670380 71.952816 -124.185646 -57.626234 27.645792 -2.593279 0.000000 0.000000 0.000000
+-0.023754 0.837320 1.185488 -0.103921 -24.826090 -3.025894 7.123410 3.918165 -42.509256 -3.308486 9.064187 40.839948 -6.356236 7.397497 -11.371023 0.071511 -0.107749 0.007848 -5.319253 -0.844893 6.138366 5.500146 10.426464 38.290804 0.528291 -14.190910 -37.346928 0.071384 -0.073069 -0.046658 -1.658391 7.335205 22.919070 -2.121139 2.528429 -4.874358 -0.235143 3.478740 3.985999 -2.124756 0.732622 -11.753814 -4.964005 4.343194 12.128872 -26.175926 -6.732562 3.506886 -37.779589 1.082892 7.206117 62.846924 -72.926368 -41.469382 42.824341 -19.573312 8.026558 0.000000 0.000000 0.000000 21.856406 18.368336 -2.439827 42.301505 35.930051 14.945815 -159.799414 72.249234 -130.550280 -58.188350 27.504791 -4.709009 0.000000 0.000000 0.000000
+-0.025186 0.835085 1.214071 0.397532 -25.363689 -3.286048 6.712955 4.186178 -41.866958 -3.959096 10.063906 45.296119 -5.427679 7.543924 -14.864334 0.092276 -0.058438 -0.022670 -6.691380 -0.609161 7.247573 5.592253 10.901609 38.515532 1.528434 -14.644972 -36.525765 0.053986 -0.031651 -0.068017 -2.439551 7.896053 21.760998 -2.263485 2.501938 -4.441271 0.089502 3.430923 3.835013 -1.963086 -0.212404 -11.429557 -4.471452 4.069703 13.294534 -26.412486 -6.441783 4.110181 -37.788036 1.776869 6.729325 62.250346 -72.680054 -40.540817 42.662376 -19.457316 8.425900 0.000000 0.000000 0.000000 22.055889 18.786459 -2.221734 42.556427 36.258411 15.135233 -161.367642 72.576173 -132.006978 -58.078914 27.437231 -4.765836 0.000000 0.000000 0.000000
+-0.025916 0.833160 1.241915 0.608296 -25.496836 -3.911976 6.003284 3.683897 -40.724614 -3.922425 10.630746 49.150881 -4.072619 8.134584 -19.556141 0.083894 -0.118900 -0.008902 -7.910498 -0.278006 8.656241 5.789890 11.674382 39.625198 2.693590 -14.709417 -34.951448 0.039366 -0.074786 -0.022018 -3.129894 8.670735 20.177256 -2.447748 2.723867 -3.230832 0.534768 3.450043 3.769549 -1.634905 -1.263756 -10.640028 -4.278930 3.729157 14.528521 -26.469429 -6.318936 4.659597 -38.404690 1.664855 5.562676 64.625681 -72.352885 -42.504157 41.682514 -19.668070 9.595224 0.000000 0.000000 0.000000 22.429887 19.475950 -1.712411 41.812504 35.676734 14.855834 -163.276372 73.159688 -134.343852 -57.989197 27.199743 -4.352014 0.000000 0.000000 0.000000
+-0.026189 0.832851 1.267918 0.908187 -25.210820 -4.529933 4.687952 3.257454 -39.769597 -3.474869 11.260347 52.188142 -3.127447 8.816003 -23.092929 0.060402 -0.113299 -0.012359 -8.946564 -0.170581 7.933858 5.828899 11.172757 42.926902 3.649337 -14.784324 -32.138984 0.056173 -0.141008 -0.005276 -3.059172 8.527427 19.680914 -2.887368 2.892771 -2.872330 0.466585 3.308782 3.364745 -1.701820 -2.060547 -10.564736 -3.931899 3.727661 15.621671 -26.881291 -6.350985 4.980515 -38.801603 1.622714 5.042313 67.913537 -72.171216 -44.966205 41.241799 -19.512312 9.591121 0.000000 0.000000 0.000000 22.801169 19.783835 -1.613677 42.362065 35.474922 15.131321 -165.840532 73.640447 -136.748023 -57.543985 26.940955 -4.080144 0.000000 0.000000 0.000000
+-0.026352 0.835219 1.293018 1.483989 -24.529133 -4.457499 3.168941 3.836247 -37.622958 -1.898040 13.070281 55.193503 -1.609431 10.021411 -28.176093 0.034463 -0.171885 0.000180 -9.732810 -0.236437 5.912507 5.289631 8.978986 48.428424 4.738190 -14.369591 -26.686030 -0.007771 -0.153376 0.006754 -2.929868 8.139218 19.990637 -3.366983 3.751893 -2.339344 0.665397 3.509583 3.499662 -0.851677 -3.425707 -7.937343 -3.318825 3.106505 18.036981 -26.952813 -6.152327 4.936172 -38.975374 1.997025 4.090186 76.519102 -72.299192 -52.445166 43.009562 -19.970327 10.426711 0.000000 0.000000 0.000000 22.733976 21.366513 -1.227767 42.633153 35.667478 16.197541 -170.342509 75.549457 -141.735361 -56.463623 25.765701 -3.387004 0.000000 0.000000 0.000000
+-0.026604 0.833543 1.317023 1.735558 -23.665317 -5.273925 1.663581 3.324904 -35.757476 -0.981789 12.960230 57.307119 -0.390500 10.757563 -31.342850 0.025292 -0.106068 0.000844 -9.961568 -0.226973 2.849813 4.749305 6.582725 55.104116 5.032592 -14.606052 -21.422318 -0.033398 -0.145192 -0.030606 -2.844722 7.502236 20.338703 -3.517884 4.253197 -2.289225 0.645366 3.377301 3.422104 -0.571661 -4.128294 -7.305434 -3.383231 2.911973 18.231074 -26.807760 -6.657817 4.920699 -40.144460 1.792956 4.055925 84.150479 -72.351649 -58.695311 43.415991 -20.447340 10.084685 0.000000 0.000000 0.000000 22.794271 22.080767 -1.278207 43.597763 35.302302 17.011982 -172.865319 76.655576 -144.182863 -55.527499 25.735329 -2.577341 0.000000 0.000000 0.000000
+-0.027243 0.835501 1.340354 2.368782 -22.793576 -5.704132 -0.179511 2.664888 -33.889936 0.574473 13.857607 59.936506 0.631243 12.281982 -35.290211 -0.003969 -0.154931 -0.024286 -10.953036 -0.755813 -0.085262 4.107992 4.023895 62.337751 5.309420 -14.112524 -17.491460 -0.044310 -0.134209 0.001833 -2.866572 6.983748 20.958693 -3.675404 4.934223 -2.193317 0.462031 3.866132 3.658443 1.055589 -5.815209 -7.615559 -3.016520 0.889062 17.917487 -26.963485 -7.065744 4.889794 -41.186353 1.160963 3.308783 92.414172 -72.545946 -65.581494 44.260782 -22.191927 11.752305 0.000000 0.000000 0.000000 22.885396 23.233956 -0.809800 43.801253 34.535949 16.789517 -176.410395 78.187033 -147.812294 -53.824628 24.612288 -1.900627 0.000000 0.000000 0.000000
+-0.028695 0.831090 1.363014 2.638292 -22.113100 -6.185751 -1.372150 2.179322 -32.130407 0.884117 13.591510 60.838160 1.248178 12.817783 -37.307678 -0.031386 -0.177365 -0.032339 -11.743792 -0.786655 -3.663167 2.886709 2.093088 67.830445 4.813619 -14.318159 -17.561826 -0.088306 -0.145029 -0.005591 -2.803123 6.531965 21.772934 -3.689416 5.505876 -2.212355 0.474059 3.888363 3.570680 1.922701 -6.707335 -7.757302 -2.702356 -0.269972 17.653471 -27.031366 -7.731990 4.821027 -42.052097 0.323509 3.142564 100.215529 -72.079647 -72.682418 45.370570 -22.958624 11.709237 0.000000 0.000000 0.000000 22.940896 24.084863 -0.707662 44.237531 34.126324 16.831146 -179.478444 80.014328 -151.340633 -53.222735 24.647275 -1.706748 0.000000 0.000000 0.000000
+-0.030068 0.828669 1.383786 2.262976 -21.718513 -5.816006 -1.305716 2.436224 -30.257134 0.758526 14.587558 62.569907 2.146192 14.042663 -37.550093 -0.069468 -0.250848 -0.028162 -11.467073 -0.988910 -6.938270 1.157081 0.688448 74.328146 3.705237 -13.996068 -17.720292 -0.130018 -0.185717 -0.023192 -2.951440 6.285854 22.809195 -3.966284 5.836755 -3.469717 -0.097209 4.525522 3.181857 2.875318 -5.890970 -7.606033 -2.088288 -1.549034 17.062213 -26.776351 -8.156690 4.187090 -43.430465 0.106424 3.311876 108.440308 -74.462410 -80.068741 46.900751 -24.709044 10.650454 0.000000 0.000000 0.000000 22.481278 25.044401 0.261179 43.221513 33.544218 15.429089 -177.526105 80.449476 -148.412066 -51.713584 25.544684 1.686021 0.000000 0.000000 0.000000
+-0.031665 0.825066 1.403336 2.222112 -21.203626 -5.885004 -1.887434 2.972137 -29.092867 0.944974 14.383530 63.266493 2.644761 13.893618 -37.830548 -0.094481 -0.268678 -0.030340 -11.393790 -1.014145 -11.022309 -0.056330 -1.164481 78.718507 3.063336 -14.036711 -18.811572 -0.118175 -0.199967 -0.015551 -2.576095 5.732623 24.165886 -4.301517 6.399127 -4.146765 -0.228087 4.725053 3.111833 3.522273 -6.284901 -7.807387 -1.837775 -2.597332 16.422458 -26.639322 -8.887178 4.366850 -43.912793 -0.040622 3.812709 114.582805 -75.146723 -85.625519 47.167324 -25.225905 10.662060 0.000000 0.000000 0.000000 21.927046 26.117871 0.471368 42.974743 33.155305 14.877169 -177.324502 81.148544 -148.426059 -50.848220 25.929362 2.542004 0.000000 0.000000 0.000000
+-0.033584 0.822695 1.422071 2.258149 -20.502441 -5.693109 -2.390576 3.411203 -27.325241 0.851170 14.374262 63.560489 3.306576 13.846746 -37.764489 -0.102402 -0.367000 -0.027150 -11.800597 -1.233885 -15.043377 -0.941691 -2.506524 83.553981 2.732309 -13.259399 -17.828282 -0.128062 -0.275986 0.001068 -1.952164 5.092774 25.511244 -4.996223 7.083059 -4.960552 -0.819903 5.154314 3.429614 3.962445 -6.052739 -7.299115 -1.711144 -2.857470 16.646671 -26.377773 -9.156226 3.593491 -43.963353 -0.490978 4.148868 123.902171 -76.308949 -94.768689 47.986336 -26.423580 10.584595 0.000000 0.000000 0.000000 20.961324 26.989662 0.386324 42.595342 33.212558 14.134335 -171.807949 81.882554 -143.121596 -49.625867 26.037549 4.757561 0.000000 0.000000 0.000000
+-0.035767 0.820565 1.440389 2.315671 -19.576543 -5.815305 -2.775577 3.530332 -25.955160 0.324300 13.665015 63.134956 3.526625 13.705265 -37.608066 -0.099385 -0.371630 -0.080669 -11.744003 -1.526562 -18.394515 -1.288590 -3.939821 85.113439 2.756496 -13.240385 -18.943816 -0.136130 -0.290002 -0.001530 -1.239751 4.253951 26.451892 -5.218182 7.211729 -5.215196 -1.142092 5.224119 3.603469 4.082702 -6.320731 -7.226162 -1.340255 -2.668144 16.340411 -26.130395 -9.492588 3.316799 -44.134873 -1.029202 4.763302 128.381785 -77.274014 -99.491543 48.168947 -27.111605 10.514667 0.000000 0.000000 0.000000 20.440652 27.745595 0.758289 41.729473 33.200834 13.581215 -170.195624 82.471893 -141.739849 -49.831994 26.619367 5.231342 0.000000 0.000000 0.000000
+-0.037923 0.821420 1.458337 2.451549 -18.483356 -5.550895 -4.453817 3.718547 -23.913033 0.238558 13.133362 61.908779 4.006074 13.892850 -39.039423 -0.121284 -0.511159 -0.030079 -11.654595 -2.018886 -22.476855 -1.919548 -5.083580 85.884675 1.849273 -13.951761 -20.538768 -0.110677 -0.378365 0.010362 -0.500449 2.869366 26.579973 -6.238919 7.618739 -5.695982 -1.541910 5.188185 3.482023 4.027789 -7.985189 -8.057336 -0.602322 -4.067309 15.457698 -26.785841 -9.838049 3.306155 -44.424071 -2.322808 4.776311 126.460768 -77.120191 -97.791423 48.384833 -27.519240 10.930329 0.000000 0.000000 0.000000 20.283256 28.155582 0.633936 42.790416 32.821263 13.778648 -172.741240 82.792561 -143.548527 -48.659585 26.304826 7.051597 0.000000 0.000000 0.000000
+-0.040152 0.822719 1.475985 2.489144 -17.326201 -5.495521 -5.060697 3.598723 -22.011672 -0.296587 11.819583 60.320877 4.070308 13.633088 -38.955610 -0.107908 -0.557261 -0.056550 -11.521951 -2.521167 -26.302011 -2.029872 -6.781664 85.954258 1.582722 -14.084990 -21.957711 -0.141665 -0.394906 0.008952 -0.064812 1.937956 27.215598 -6.540756 7.857827 -6.177555 -1.570356 4.961306 3.621500 3.991173 -7.691506 -8.041654 -0.438936 -3.532762 15.749902 -26.620934 -10.869022 3.092847 -44.907019 -3.684554 5.631318 123.837688 -77.606231 -95.484765 48.278796 -27.382702 11.237677 0.000000 0.000000 0.000000 19.957679 28.357659 0.833956 42.334499 32.577343 13.725148 -171.866883 82.636372 -142.382275 -47.923372 26.455752 8.091913 0.000000 0.000000 0.000000
+-0.042617 0.824618 1.493498 2.175334 -16.209644 -4.695164 -5.342370 3.434936 -20.274170 -0.951297 9.822607 58.361752 4.169155 12.631866 -38.715813 -0.104090 -0.571702 -0.071142 -11.077731 -3.557266 -31.209424 -2.301066 -8.756668 84.977353 0.753726 -14.196915 -22.652360 -0.161070 -0.408176 0.019151 0.273982 0.682703 27.060868 -7.015759 8.026154 -6.778925 -1.706002 4.711087 3.510457 3.753435 -7.777753 -8.344498 -0.386712 -3.851323 15.775903 -25.767332 -11.302158 2.757705 -46.003002 -5.543830 6.507437 119.274749 -78.290326 -91.106326 47.841483 -26.286920 10.609079 0.000000 0.000000 0.000000 19.743970 27.995086 0.925537 43.889275 32.418077 14.196013 -173.366473 82.898452 -143.028910 -47.021193 26.154654 9.169150 0.000000 0.000000 0.000000
+-0.045426 0.827005 1.510848 1.770185 -15.091799 -4.387827 -5.448168 3.820239 -18.457045 -1.160815 8.554963 56.409221 3.889249 12.017269 -38.563396 -0.111907 -0.578928 -0.054022 -10.411957 -4.173520 -34.451681 -2.351120 -10.744585 82.985787 0.576417 -13.770350 -22.953983 -0.178545 -0.407691 0.029093 0.681905 -0.475120 27.370277 -6.975676 8.125152 -7.129693 -1.557613 4.222386 3.796195 3.267247 -7.758873 -8.719550 -0.834328 -3.835338 16.079281 -25.679729 -12.192793 2.760956 -47.401825 -7.534431 7.277645 113.104306 -78.282777 -85.448815 47.873103 -25.611208 10.464176 0.000000 0.000000 0.000000 19.532284 27.674741 0.652457 44.212204 32.330773 14.462979 -172.673737 82.491710 -142.101201 -47.009282 26.053058 9.401925 0.000000 0.000000 0.000000
+-0.048472 0.828811 1.529168 1.373508 -14.047143 -3.489717 -6.442792 3.619861 -16.230352 -1.154922 6.543917 54.482514 3.564178 11.894506 -39.395113 -0.131504 -0.521313 -0.048857 -9.306647 -3.821516 -39.348931 -2.158080 -12.149141 79.579979 -0.296990 -12.667542 -21.898650 -0.141940 -0.369093 0.026107 0.406142 -1.793473 27.448074 -6.889901 8.277577 -7.629914 -1.465741 3.548486 4.264300 2.892274 -6.288526 -10.420800 -1.719244 -2.062251 14.550704 -24.820094 -12.312762 3.161324 -48.809171 -7.959781 6.773999 116.539155 -77.015440 -87.551317 49.154446 -25.213008 9.447685 0.000000 0.000000 0.000000 18.412205 27.218277 -0.244334 46.656128 33.163007 15.141251 -178.468784 83.473182 -146.868957 -46.795375 25.338976 9.633596 0.000000 0.000000 0.000000
+-0.051696 0.831683 1.548836 0.886825 -13.024690 -3.217057 -6.292015 4.108709 -13.664031 -1.364460 5.335220 51.977698 3.028239 11.142371 -39.638197 -0.120556 -0.578544 -0.074682 -8.475450 -3.880156 -42.050795 -1.643071 -13.648355 74.933726 -0.450854 -11.790300 -22.097813 -0.137707 -0.352910 0.049311 0.364505 -2.868824 27.563020 -6.606319 8.351433 -7.979442 -1.200905 2.999095 4.569225 2.797521 -5.724877 -10.826716 -1.760709 -1.370992 13.884823 -24.529767 -12.530911 3.216474 -49.797656 -9.098462 6.836177 118.490780 -76.287922 -89.164106 49.640471 -25.242096 9.166206 0.000000 0.000000 0.000000 17.942790 26.737012 -0.645692 47.425278 33.515367 15.155331 179.593590 82.667426 -148.414242 -46.559874 24.908659 9.733858 0.000000 0.000000 0.000000
+-0.055218 0.833421 1.569816 0.800616 -12.111506 -2.509261 -6.370210 3.994317 -11.592307 -1.870865 3.520930 50.544965 2.613210 10.278030 -39.695548 -0.130783 -0.477680 -0.043405 -7.726644 -3.461306 -44.228284 -0.200540 -15.277121 69.081088 -0.940843 -10.827199 -21.762894 -0.152472 -0.314559 0.074098 0.013545 -3.444238 27.115763 -6.129707 8.455029 -8.018081 -1.082966 2.647221 5.529904 3.105108 -6.351837 -12.051925 -1.435527 -2.181315 13.037131 -23.615426 -12.169204 3.097853 -50.782520 -10.245084 7.066428 123.320006 -74.929700 -92.945058 50.818710 -25.135914 8.864055 0.000000 0.000000 0.000000 16.657855 25.616549 -2.199172 48.714824 33.819868 15.308947 178.176019 81.667817 -149.495878 -46.545350 24.012086 8.207811 0.000000 0.000000 0.000000
+-0.058784 0.834616 1.592345 0.522903 -11.233924 -2.185076 -5.991426 4.336030 -9.419845 -2.110764 2.235523 49.335011 2.367392 9.486116 -39.601379 -0.108556 -0.445371 -0.038026 -6.977498 -3.005682 -45.666656 0.969489 -16.043390 63.363318 -0.887699 -10.001824 -20.815405 -0.161886 -0.277490 0.035951 -0.331555 -3.922422 26.914847 -5.941131 8.472081 -7.970346 -0.994453 2.329007 5.943993 3.282435 -6.144825 -12.340436 -1.429505 -1.925309 12.854499 -22.794112 -12.219145 2.989854 -51.271647 -11.131834 7.283374 127.228253 -74.360742 -96.409756 51.252660 -25.111982 8.606705 0.000000 0.000000 0.000000 15.574705 25.011987 -3.080720 49.877666 34.267175 15.769780 178.867759 80.283430 -148.320722 -47.013854 23.450409 7.215689 0.000000 0.000000 0.000000
+-0.062399 0.836518 1.615233 0.019846 -10.325648 -1.348788 -5.335020 3.977370 -7.910738 -3.210294 -0.284493 47.176972 2.220114 8.452088 -39.083322 -0.163437 -0.526171 -0.037878 -5.020125 -1.910826 -46.893451 2.260240 -16.209267 56.259959 -0.832471 -9.240114 -19.061034 -0.158366 -0.372769 0.026146 -0.994554 -4.092775 26.551098 -5.088728 7.984468 -8.455293 -0.997082 1.795449 6.129742 4.345636 -6.466472 -13.512129 -0.658977 -2.819582 11.696416 -22.295426 -11.656636 2.463412 -51.964038 -11.595872 7.740956 131.053916 -72.766683 -100.602743 55.354685 -25.925693 7.105208 0.000000 0.000000 0.000000 15.655714 24.482539 -2.878481 50.418091 34.018988 16.736164 -178.919423 78.720286 -146.322808 -48.418022 23.826064 7.330764 0.000000 0.000000 0.000000
+-0.066139 0.839056 1.638941 -0.385244 -9.401647 -0.932600 -4.793021 4.340074 -6.166466 -3.261884 -1.397170 45.679862 1.819282 7.807423 -38.677886 -0.131302 -0.579957 -0.038834 -3.769374 -1.175047 -46.807970 2.851149 -16.206315 50.534144 -0.876120 -9.027970 -17.292715 -0.166798 -0.357699 0.033346 -1.045964 -4.603439 26.087276 -4.954158 7.922762 -8.565013 -1.029615 1.541042 6.244811 4.593946 -6.498661 -13.900006 -0.635058 -2.761944 11.642477 -21.979209 -11.578631 2.334739 -52.172544 -12.040591 7.821954 132.805693 -71.937173 -102.260184 56.626561 -25.893807 7.158673 0.000000 0.000000 0.000000 15.200138 24.029512 -3.298356 50.962057 33.837573 17.227387 -179.652259 77.611687 -147.336330 -49.023266 23.426825 7.155273 0.000000 0.000000 0.000000
+-0.069869 0.840147 1.663654 -0.538392 -8.482694 -0.141735 -4.072960 4.609584 -4.225499 -4.719794 -3.056254 42.868876 1.916761 7.571892 -37.815799 -0.148012 -0.664069 -0.029684 -2.867929 -0.514646 -47.145747 3.510756 -14.790400 47.043213 -0.532745 -8.745804 -16.559597 -0.130869 -0.420911 0.021688 -0.750065 -5.515749 25.397210 -4.353188 7.225660 -9.019531 -1.032095 1.049202 6.246544 4.818642 -4.916883 -14.569060 -0.441125 -1.287668 11.956103 -21.218044 -10.678507 1.586057 -53.653911 -11.960260 7.951819 133.333450 -71.807457 -102.359097 58.201142 -25.614453 4.885819 0.000000 0.000000 0.000000 14.833171 23.685740 -2.696756 49.760320 34.344850 17.468288 -178.955768 75.950081 -145.489333 -48.713794 23.740012 8.770575 0.000000 0.000000 0.000000
+-0.073700 0.840851 1.689266 -0.708221 -7.535217 0.026760 -3.644556 4.885383 -2.408480 -4.838656 -4.055506 41.218917 1.508702 7.559444 -37.233573 -0.142406 -0.685732 -0.034029 -2.026997 0.266734 -46.308105 3.396370 -14.026332 44.384874 -0.702366 -8.733922 -15.927360 -0.151887 -0.430449 0.020085 -0.400774 -6.200305 24.706218 -4.105218 6.664024 -8.970200 -1.063186 0.861374 6.368153 4.949230 -4.716939 -14.752744 -0.507671 -1.220192 12.511824 -20.895378 -10.145408 1.060656 -54.233521 -12.463370 8.114797 133.181171 -71.694442 -101.758756 58.893744 -25.809709 4.553448 0.000000 0.000000 0.000000 14.483470 23.260580 -2.936283 49.418938 34.288760 17.732910 179.686290 75.756886 -146.534424 -48.838953 23.858867 9.219458 0.000000 0.000000 0.000000
+-0.077207 0.842252 1.716053 -0.160810 -6.510061 -0.150092 -2.669188 5.512919 -1.005910 -5.648822 -4.263339 40.546657 0.824375 6.004144 -36.808976 -0.095913 -0.640940 -0.063030 -1.664826 -0.555533 -44.429180 2.989188 -14.433428 42.318371 -1.036134 -8.846510 -13.386294 -0.143321 -0.405105 -0.013886 0.254101 -6.607533 23.800817 -3.279029 5.615247 -8.361373 -1.198240 0.378127 6.246825 4.778101 -6.573761 -10.322751 -0.013770 -2.764176 16.146453 -20.527392 -10.683293 1.821355 -54.162550 -13.005854 8.926809 132.375280 -72.490733 -102.210913 58.900074 -26.629145 2.217345 0.000000 0.000000 0.000000 14.699579 23.448609 -2.620145 48.419282 34.963434 17.311854 -177.872031 75.507647 -144.549680 -47.527636 24.678324 10.211030 0.000000 0.000000 0.000000
+-0.080564 0.839963 1.742547 -0.316476 -5.690589 -0.324017 -1.895253 5.598932 0.042563 -6.328281 -4.406819 42.152961 -0.067267 4.860940 -35.640052 -0.113542 -0.576593 -0.061567 -1.651346 -0.226420 -43.776275 1.729202 -14.703636 44.767378 -3.147886 -10.682355 -14.495095 -0.081145 -0.377946 0.016329 1.114145 -7.273197 23.237996 -2.709436 5.329986 -8.254895 -1.115693 0.274518 6.071726 4.390392 -6.556817 -9.518059 -0.271978 -2.588795 17.107820 -20.676409 -11.121500 1.799186 -54.632999 -14.060328 9.714241 132.445204 -73.056001 -101.874273 58.395238 -26.993936 2.701800 0.000000 0.000000 0.000000 15.057432 23.646802 -2.183041 47.681338 35.181790 16.821892 -177.290384 76.686485 -143.957274 -46.873882 24.418431 10.890908 0.000000 0.000000 0.000000
+-0.083798 0.838130 1.768062 -0.493510 -5.042550 -0.034785 -1.092419 5.384468 0.868693 -6.800624 -4.411994 44.198897 -1.413481 2.592009 -33.695631 -0.093106 -0.470154 -0.076251 -2.224058 -0.456407 -43.258633 0.482557 -15.639843 47.520300 -4.518049 -12.195282 -15.885341 -0.077657 -0.287497 -0.001900 2.882174 -7.890819 22.422678 -2.879837 5.497800 -8.260820 -1.168304 0.285630 5.526966 3.459590 -7.351264 -9.643161 -1.348190 -2.551095 18.122047 -21.852864 -12.534255 1.825333 -53.897530 -14.980948 10.081017 131.709624 -72.182913 -101.312567 56.571225 -27.302891 0.858076 0.000000 0.000000 0.000000 16.949182 24.558046 -0.721043 46.398681 34.583392 16.260242 -178.777292 78.274531 -145.575919 -47.015849 25.566039 11.220111 0.000000 0.000000 0.000000
+-0.086939 0.837276 1.792039 -0.454877 -4.593174 -0.256181 0.313966 5.724222 0.015222 -7.911400 -3.546088 48.487965 -3.123123 -0.527913 -30.166312 -0.124587 -0.460811 -0.075919 -2.589454 -0.747194 -42.692199 -0.090984 -15.550999 49.948884 -5.553603 -12.728334 -17.787738 -0.057494 -0.275403 -0.009787 3.959061 -8.455777 21.979987 -2.511904 5.526999 -7.824119 -1.190658 0.266985 5.136186 2.690077 -7.885938 -9.339480 -1.982636 -2.710687 19.078756 -22.179285 -13.702242 1.922736 -53.375935 -16.194482 10.365271 131.227932 -72.784052 -100.804063 55.369884 -27.775577 1.297106 0.000000 0.000000 0.000000 17.601351 25.539648 -0.257581 45.561843 34.118860 15.553723 -179.819786 79.939454 -146.639231 -46.582600 25.879805 11.474432 0.000000 0.000000 0.000000
+-0.090246 0.837158 1.815168 -0.470504 -4.271992 0.309140 1.084411 6.194145 -0.800543 -7.694064 -2.581204 51.561339 -5.305005 -1.385546 -26.067143 -0.112344 -0.309182 -0.085954 -3.307818 -0.489255 -41.747391 -0.476467 -15.110721 51.685689 -5.535373 -12.949447 -20.718316 -0.035663 -0.134396 -0.014492 5.776224 -9.173927 21.668388 -2.628652 5.289149 -7.958185 -1.253466 0.704906 4.585753 2.531131 -7.812585 -8.975343 -3.077484 -2.220537 23.291837 -24.008408 -14.215168 1.585515 -53.533058 -15.738227 10.448332 123.130628 -72.155860 -94.316562 54.136726 -25.892902 -1.018080 0.000000 0.000000 0.000000 19.521119 26.472085 1.338233 43.305773 33.787871 14.462331 -170.977761 83.100815 -137.776536 -47.416473 26.454451 12.753855 0.000000 0.000000 0.000000
+-0.093582 0.836372 1.837062 -0.249485 -4.324815 0.148939 2.094318 6.130720 -3.262095 -8.393395 -0.931261 56.698002 -7.376459 -2.329138 -21.288982 -0.108812 -0.291714 -0.104879 -3.351579 -0.109107 -40.803848 -0.378401 -14.072793 52.859566 -6.135667 -13.519951 -22.150281 -0.073899 -0.141138 -0.054847 6.707842 -9.203528 21.175715 -2.590371 5.272145 -7.688849 -1.232751 1.029241 4.414129 1.550952 -8.929282 -8.298333 -3.309531 -2.360849 23.216463 -24.397065 -14.787005 1.940767 -53.161193 -15.790077 10.897968 117.823166 -72.435128 -90.228467 53.367000 -24.806112 -1.825899 0.000000 0.000000 0.000000 20.135917 27.127557 1.617492 42.145553 33.677155 13.718216 -157.278488 85.619894 -124.796599 -47.436333 26.995063 13.609992 0.000000 0.000000 0.000000
+-0.096836 0.840465 1.858033 -0.055192 -4.360618 0.471795 2.864941 6.565950 -5.930669 -6.475645 1.521624 62.066540 -7.884959 0.288153 -18.602669 -0.096939 -0.244145 -0.111928 -3.924924 -0.306636 -39.053087 0.468486 -12.920470 52.746611 -6.059416 -14.185581 -22.685993 -0.110621 -0.153323 -0.049120 6.897418 -8.988436 21.955030 -3.236919 5.827127 -7.948827 -1.256203 1.507359 4.110199 0.393559 -9.641757 -6.177305 -3.862216 -2.212270 25.641951 -24.569881 -15.682294 1.725655 -52.864773 -16.134407 11.438900 109.828613 -72.609239 -82.667153 51.294925 -22.611419 -0.883675 0.000000 0.000000 0.000000 20.990529 27.354720 1.635938 40.155403 33.566348 12.159374 -93.632674 87.699500 -61.647830 -47.757292 26.725705 14.401495 0.000000 0.000000 0.000000
+-0.099791 0.843424 1.878135 0.305933 -4.364336 0.261583 3.169638 6.238911 -8.894739 -4.422027 3.190136 65.958113 -7.122866 3.552809 -19.714636 -0.107246 -0.342563 -0.088111 -3.887808 -0.301058 -37.427840 1.086864 -11.853248 52.684964 -5.981794 -14.905331 -23.575375 -0.099682 -0.201123 -0.033263 6.818764 -8.504906 22.210755 -3.321192 5.833737 -8.144049 -1.024746 1.680501 4.109668 0.030070 -10.436579 -5.987554 -4.216632 -1.738766 26.030088 -25.069085 -15.788233 2.160402 -52.571196 -15.306931 11.173000 99.882290 -72.722500 -73.323807 49.861300 -21.319342 -0.587138 0.000000 0.000000 0.000000 21.868762 27.804651 2.350008 38.265741 33.810036 10.862176 -40.496392 85.782457 -9.056685 -47.767282 26.908705 14.715410 0.000000 0.000000 0.000000
+-0.102827 0.845185 1.897382 0.818245 -4.413678 -0.635574 2.775554 6.140423 -12.028236 -1.855333 3.730177 70.211690 -6.232952 7.074258 -18.587681 -0.089136 -0.267714 -0.053032 -3.677144 -0.177419 -34.553866 1.805174 -10.424489 52.351493 -6.228062 -15.703430 -25.801451 -0.092618 -0.176326 -0.016106 6.792559 -7.625797 23.203241 -3.081648 5.708755 -8.216328 -0.794028 1.717881 4.158577 -0.477669 -10.199189 -6.971780 -4.592635 -0.566526 24.990632 -25.133770 -16.108069 2.148205 -50.624914 -14.628428 10.933541 92.827906 -72.558178 -65.423277 49.478687 -20.009533 0.198908 0.000000 0.000000 0.000000 21.883656 27.811454 1.424056 38.731723 34.283936 10.808135 -28.006771 82.331883 3.581201 -49.072868 26.799739 14.353101 0.000000 0.000000 0.000000
+-0.105710 0.849747 1.916019 1.253198 -4.432754 -0.783465 2.568932 5.377250 -15.849635 -0.009773 4.380334 73.477767 -5.310740 9.452202 -19.743263 -0.074942 -0.248883 -0.071159 -3.578967 -0.430294 -32.831744 2.093990 -9.513889 51.870901 -5.960486 -15.746335 -26.577743 -0.110148 -0.173270 -0.005917 6.547996 -6.536652 24.217061 -2.811564 5.398259 -8.637100 -0.511413 1.876233 4.389683 -0.774861 -9.917789 -6.771703 -4.199794 -0.036945 24.783329 -25.294504 -15.705144 2.171319 -49.924169 -13.660846 10.691398 89.304351 -72.638738 -61.991018 49.689404 -19.151593 0.585976 0.000000 0.000000 0.000000 22.485202 27.452003 1.805927 37.999521 33.490910 10.182405 -26.261700 80.627426 5.042929 -49.770269 26.739389 14.127990 0.000000 0.000000 0.000000
+-0.108187 0.851947 1.934245 1.109663 -4.412450 -0.473808 2.972322 5.767302 -18.954677 0.892849 4.707377 73.839463 -4.411843 10.923040 -19.339648 -0.064154 -0.299720 -0.041479 -3.091547 -0.697206 -31.204750 2.609536 -8.904966 51.000836 -6.364230 -16.077778 -28.310084 -0.081244 -0.210210 -0.009790 6.177819 -5.547082 24.571960 -2.160728 5.022154 -8.514130 -0.279812 2.215097 4.465665 -0.037192 -9.505056 -7.676577 -3.863030 -0.395102 23.708657 -25.492201 -14.593962 1.760164 -49.048611 -12.850665 10.888079 90.278827 -74.232337 -62.477219 50.521453 -18.044539 0.508956 0.000000 0.000000 0.000000 23.035013 26.713671 2.102067 37.311601 32.809332 9.095993 -31.847198 78.805596 -1.346382 -50.872835 25.666617 13.772127 0.000000 0.000000 0.000000
+-0.110346 0.855102 1.952280 1.531971 -4.347996 -0.572812 3.089979 5.291516 -22.469217 0.828821 5.155848 73.788130 -3.755392 11.389925 -20.464021 -0.041396 -0.300881 -0.047039 -3.034680 -1.117234 -29.377021 2.655882 -8.155446 50.101933 -6.112692 -16.100799 -28.618823 -0.091568 -0.208024 -0.030632 5.552237 -4.387001 25.471239 -1.989301 4.681855 -8.771852 -0.113111 2.315864 4.674999 0.159390 -9.100923 -7.820973 -3.374169 -0.039094 23.205168 -25.669299 -13.928185 1.763378 -48.429395 -11.948798 11.005642 91.246858 -75.016441 -63.267926 50.430072 -18.213640 0.627508 0.000000 0.000000 0.000000 23.459223 25.780394 2.130109 37.426899 31.838583 8.739735 -32.487562 77.976835 -2.657272 -51.248097 25.184122 13.123378 0.000000 0.000000 0.000000
+-0.112330 0.859178 1.970127 2.407598 -4.322952 -0.866897 2.825598 5.907121 -26.307806 1.366989 7.169311 72.642051 -3.124140 12.670028 -21.781998 -0.027146 -0.327304 -0.018290 -3.069362 -1.915270 -26.748653 3.289017 -6.294495 48.711848 -5.833025 -16.490290 -29.302275 -0.084597 -0.223013 -0.042442 4.579298 -3.288798 25.622905 -1.606100 4.155157 -8.368792 0.082862 2.334306 5.059019 -0.196294 -9.026581 -7.736693 -3.324767 -0.344941 23.399158 -25.400078 -13.119576 1.827713 -46.559577 -11.391365 11.105137 98.885502 -77.134342 -70.284385 50.907448 -17.787164 0.851459 0.000000 0.000000 0.000000 23.738086 24.610499 1.605645 36.717537 31.227820 8.479603 -27.793020 77.104244 2.215519 -52.604607 24.647843 14.526606 0.000000 0.000000 0.000000
+-0.114043 0.863440 1.987845 2.867652 -4.321640 -0.921093 2.212468 6.010719 -29.107692 1.238084 8.858156 70.055417 -2.642696 13.197317 -22.688670 -0.026945 -0.351362 0.004007 -3.103274 -2.312325 -25.074059 3.351658 -5.323137 47.883893 -5.662319 -16.521820 -29.204356 -0.063583 -0.257085 -0.085552 4.005743 -2.340589 26.103708 -1.368534 3.785503 -8.336182 0.046383 2.422775 5.395661 0.120447 -9.216313 -7.867896 -3.119873 -0.783627 23.132841 -25.333597 -12.334207 1.825340 -45.476520 -10.353903 10.818219 108.567097 -77.686749 -79.444273 52.141423 -17.941679 -0.021708 0.000000 0.000000 0.000000 24.080635 23.876743 1.807835 36.268110 30.885047 8.064854 -27.905441 76.728829 1.823202 -53.018313 25.150727 14.866268 0.000000 0.000000 0.000000
+-0.115474 0.864607 2.005643 3.272888 -4.347431 -1.266352 2.176812 6.942429 -32.089803 1.324073 12.013737 66.728573 -2.521431 14.536242 -23.271830 -0.025160 -0.466794 0.008223 -3.142032 -3.251211 -22.575848 3.649984 -3.562586 46.616522 -5.318044 -16.877981 -30.292526 -0.050285 -0.348142 -0.067976 3.684252 -1.600743 26.131273 -1.138747 3.465520 -8.415688 0.076386 2.641141 5.702968 0.269282 -8.784675 -9.365635 -3.253172 -0.179606 22.707374 -24.856254 -11.391242 1.475882 -45.026005 -10.093575 10.485987 121.277833 -78.743001 -90.718415 53.761598 -17.637753 -0.825604 0.000000 0.000000 0.000000 23.913496 22.848835 1.685409 35.644044 30.774259 7.750446 -25.183683 76.260143 4.748214 -53.319036 24.932982 16.000217 0.000000 0.000000 0.000000
+-0.116602 0.865799 2.023667 3.733741 -4.451188 -1.470105 1.737261 7.703522 -33.535961 0.868680 13.691776 62.213775 -2.506698 15.039730 -24.083620 -0.034842 -0.527914 0.032854 -3.199956 -3.807895 -20.840797 3.929706 -2.816874 45.937028 -5.180025 -16.585920 -30.566196 -0.056037 -0.365604 -0.094955 3.614779 -1.155823 26.222884 -1.235948 3.376178 -8.373425 -0.104032 2.824861 5.833154 0.182938 -8.958294 -9.583825 -3.221994 -0.263566 22.946240 -24.660964 -10.827352 1.240587 -44.535575 -9.933943 10.199111 131.894159 -78.350717 -100.749110 54.323808 -17.737301 -1.056521 0.000000 0.000000 0.000000 23.742587 22.386622 1.801151 35.296426 30.659873 7.592813 -23.517140 76.251030 6.244901 -53.491524 25.275494 16.846497 0.000000 0.000000 0.000000
+-0.117739 0.865082 2.042208 3.719072 -4.495084 -2.083686 1.804958 7.766100 -35.082520 -0.034348 16.047318 56.190340 -1.999854 14.772049 -23.453679 -0.050537 -0.589849 0.030317 -2.488872 -4.839122 -18.127715 3.329937 -2.499833 45.018388 -4.028770 -15.559192 -32.913054 -0.059563 -0.369110 -0.097589 3.891808 -0.295858 26.028792 -0.879067 2.354323 -8.325411 -0.181763 3.195882 5.847324 1.320961 -8.084424 -8.223295 -2.498642 -1.642416 24.394507 -24.373438 -10.260454 0.428611 -44.886799 -10.076500 10.544949 143.895627 -78.602536 -113.120492 55.562330 -19.009075 -1.322002 0.000000 0.000000 0.000000 24.265542 21.179071 3.464674 33.490754 29.313078 6.437240 -25.280358 77.781066 3.474434 -53.204969 26.111152 18.539516 0.000000 0.000000 0.000000
+-0.118878 0.865531 2.061373 3.737367 -4.617703 -2.296424 1.476662 7.697743 -35.726140 -0.960533 16.519229 50.412309 -1.807786 14.479847 -22.522125 -0.053896 -0.541822 0.035286 -2.565855 -5.477851 -15.832034 3.366450 -2.223264 44.100616 -3.547918 -14.890259 -33.692769 -0.027857 -0.336467 -0.081776 4.134471 0.182700 25.622120 -1.000680 2.110828 -8.194268 -0.303443 3.411618 5.889252 1.274283 -7.364821 -7.908192 -2.494267 -1.895931 24.965937 -24.410084 -9.608646 -0.249856 -44.855464 -9.729930 10.868391 152.465373 -77.159800 -121.440085 56.171686 -19.025316 -1.812793 0.000000 0.000000 0.000000 24.295206 20.279060 3.489255 33.411141 28.672965 6.779871 -27.441126 79.223778 1.087799 -53.600531 26.266146 18.643120 0.000000 0.000000 0.000000
+-0.119796 0.865999 2.081177 3.724194 -4.827322 -2.554170 0.977282 6.949127 -35.851943 -2.075639 16.833228 44.070879 -2.186060 13.568347 -20.977902 -0.063185 -0.504718 0.046700 -2.144827 -5.764005 -13.843753 3.324780 -2.021602 43.503687 -3.077422 -13.823069 -35.158311 -0.025016 -0.299008 -0.087742 3.871564 0.399253 25.315540 -0.867594 1.725498 -7.563673 -0.404528 3.547369 5.369194 2.071043 -7.914979 -7.681272 -1.593579 -3.675832 25.700972 -24.257374 -9.055816 -0.427357 -45.753840 -9.203221 11.504131 160.154937 -75.720900 -129.231484 56.069188 -18.972595 -1.783814 0.000000 0.000000 0.000000 24.542363 19.301372 3.979193 32.813622 27.003156 6.139562 -32.223936 80.705881 -3.943613 -54.346345 27.204442 18.567398 0.000000 0.000000 0.000000
+-0.120553 0.865387 2.101776 3.384347 -5.120646 -2.983942 0.643362 6.593186 -35.407277 -2.943394 16.468981 39.023379 -2.198477 12.976367 -19.320201 -0.093449 -0.452356 0.070223 -2.034037 -6.145945 -11.925747 3.433340 -2.032827 42.905279 -2.881859 -13.063518 -36.172212 -0.021828 -0.245157 -0.085567 4.075858 0.718026 24.497129 -0.732744 1.467888 -7.186151 -0.458099 3.723935 5.257573 2.238505 -7.068115 -7.299202 -1.305122 -4.032331 26.327894 -24.643158 -8.267494 -0.776493 -46.444584 -8.622221 12.039325 163.527621 -73.825857 -132.270986 56.623619 -18.872277 -2.367105 0.000000 0.000000 0.000000 24.990611 18.084701 4.507946 32.950242 25.723714 6.179751 -40.001068 82.137167 -11.485348 -54.846103 27.175403 18.224389 0.000000 0.000000 0.000000
+-0.121520 0.865464 2.123318 3.700360 -5.459794 -3.277297 0.008528 5.776115 -34.413827 -4.074352 15.425657 32.889562 -2.634273 11.559017 -18.679265 -0.092844 -0.445833 0.074451 -2.305587 -6.681905 -9.268777 3.454031 -1.595545 41.868061 -2.240946 -12.586018 -37.965968 -0.035605 -0.232309 -0.079654 3.387440 1.402911 24.302593 -1.559926 2.030307 -6.757765 -0.724628 4.096446 4.819009 2.358107 -5.694378 -6.993739 -0.731275 -3.602050 27.359241 -25.605910 -8.297820 -0.749094 -47.012292 -8.171707 12.463266 165.488346 -73.907319 -135.102984 56.438794 -19.587123 -2.655701 0.000000 0.000000 0.000000 25.552679 16.866744 5.053822 33.397922 23.241142 5.575715 -56.899367 82.650807 -29.142530 -55.889676 27.495550 16.378299 0.000000 0.000000 0.000000
+-0.122505 0.863964 2.145976 3.491100 -5.884313 -3.775035 -0.531433 5.157426 -33.391536 -4.436229 14.728367 28.315625 -2.852664 10.954710 -17.637319 -0.087833 -0.399007 0.071491 -2.280167 -7.053769 -6.821159 3.641928 -1.257025 41.047736 -2.285016 -12.228119 -38.911347 -0.021521 -0.201633 -0.082104 2.936295 1.855416 23.538108 -1.689166 2.090197 -6.549672 -0.892014 4.152650 4.774453 2.309552 -4.770310 -6.564129 -0.393853 -3.434558 27.968912 -26.107251 -8.030081 -0.813310 -47.272058 -7.949163 12.534665 165.418024 -73.823171 -135.386259 56.551306 -20.077012 -2.547410 0.000000 0.000000 0.000000 26.013353 15.696102 5.284926 33.968426 21.609524 5.597878 -70.986869 83.064335 -43.333999 -56.212115 26.834813 15.102432 0.000000 0.000000 0.000000
+-0.123325 0.861470 2.169520 3.358297 -6.358676 -4.177929 -0.605683 4.676212 -32.194505 -4.725567 14.210522 25.688715 -2.354756 9.698979 -17.158078 -0.084610 -0.317002 0.040514 -2.438140 -7.735658 -4.116355 3.034300 -1.062500 40.675572 -1.828007 -11.209053 -40.156268 -0.036458 -0.141858 -0.078543 2.817242 2.215054 22.498761 -2.013423 1.560372 -6.104182 -1.129939 4.285738 4.427133 2.479562 -2.290649 -6.865500 0.466091 -2.796326 28.198829 -27.312390 -8.353702 -1.385141 -47.394930 -7.308090 12.622023 164.860386 -74.337092 -135.923756 56.275813 -20.037134 -3.267703 0.000000 0.000000 0.000000 26.923302 15.401413 6.475038 34.109232 19.544399 5.945662 -90.825249 82.833758 -63.964235 -56.350980 26.977982 14.665060 0.000000 0.000000 0.000000
+-0.123963 0.857798 2.193864 3.156940 -6.935830 -4.275131 -0.995543 4.246381 -31.693073 -4.527681 14.691182 25.135838 -1.617679 9.935735 -16.905659 -0.096339 -0.278541 0.051469 -2.690673 -7.882759 -2.392913 2.658744 -0.976217 40.797458 -1.453057 -10.983120 -40.571850 -0.005847 -0.130986 -0.056273 2.329594 2.723054 21.498076 -2.186058 1.288711 -5.656086 -1.245784 4.272775 4.212730 2.258590 -1.209894 -6.611345 0.920879 -2.153678 28.226403 -27.986606 -8.226159 -1.134347 -47.275294 -7.141169 12.426935 162.993806 -74.734300 -134.563180 56.111122 -19.956917 -3.590800 0.000000 0.000000 0.000000 27.520687 14.830617 6.668618 34.606123 18.471041 6.532750 -103.282799 82.458659 -76.205593 -56.705843 26.659152 13.539228 0.000000 0.000000 0.000000
+-0.124777 0.852899 2.219504 3.353291 -7.500219 -4.768315 -1.250550 4.115486 -29.944989 -3.790806 15.164990 26.090916 -0.918757 10.816875 -16.830993 -0.074023 -0.225399 0.023202 -4.670922 -7.282806 -0.392475 4.265440 -0.873298 42.021141 -1.164191 -11.212953 -39.110347 0.019744 -0.120048 -0.078381 1.012068 3.215385 20.320719 -2.480880 1.671785 -5.227626 -1.506524 3.797133 4.122221 0.994921 -1.604426 -5.356347 0.451445 -1.370987 28.111925 -27.641826 -8.264629 0.033591 -46.042098 -8.049053 12.740124 166.718140 -75.820970 -135.773660 53.189805 -21.374945 0.571818 0.000000 0.000000 0.000000 27.458712 14.146459 5.677883 37.168896 17.576627 7.661654 -111.658092 81.403258 -83.713173 -55.925651 24.674165 7.375658 0.000000 0.000000 0.000000
+-0.125490 0.849970 2.245188 3.725139 -7.929067 -4.919445 -1.185757 3.983501 -29.038156 -3.353391 15.180083 28.842577 0.741608 10.924850 -16.274106 -0.064900 -0.247063 -0.002735 -5.990482 -6.971500 -0.075927 4.862151 -1.241376 44.533760 -0.545501 -11.256999 -37.686237 0.008116 -0.113950 -0.112871 -0.143222 3.620648 19.643439 -2.677611 1.646194 -5.053544 -1.493870 3.419480 4.043493 1.023472 -1.097796 -5.115562 0.195233 -0.951973 27.958313 -27.648589 -8.523347 0.757111 -45.442459 -8.496647 12.660223 169.919936 -76.796324 -138.383693 52.657051 -21.876310 1.558773 0.000000 0.000000 0.000000 27.916248 13.554385 5.593605 38.356600 16.875661 8.713157 -118.156632 80.912792 -89.584236 -56.029427 24.224386 5.640263 0.000000 0.000000 0.000000
+-0.126172 0.846057 2.269320 3.849138 -8.234055 -5.901660 -1.043469 3.946614 -28.512750 -3.351937 14.093734 33.112324 1.018081 10.242471 -18.208569 -0.049501 -0.224788 0.010138 -8.078630 -6.426281 0.335501 6.626222 -1.629214 48.017972 0.221927 -10.584901 -35.227389 0.002961 -0.149528 -0.079155 -1.619747 4.604635 19.757051 -3.115852 2.257840 -5.004157 -0.980094 2.949282 3.768133 0.014318 -3.642883 -3.994971 0.542784 -1.661217 27.202121 -28.165662 -8.853664 2.042079 -43.707077 -9.305589 13.050306 170.086930 -76.873126 -137.699538 50.148453 -23.056776 6.692064 0.000000 0.000000 0.000000 28.367162 13.362907 4.313638 40.178823 15.961685 9.610147 -115.266091 81.031139 -87.260598 -55.693515 23.227327 2.535707 0.000000 0.000000 0.000000
+-0.126740 0.845489 2.291205 4.316033 -8.457172 -6.425880 -1.242965 4.408509 -27.819567 -2.934579 14.813504 37.010192 2.100934 9.934407 -19.786199 -0.040492 -0.303503 0.011967 -9.699452 -6.120494 -1.367343 6.957063 -2.211255 52.367089 1.358340 -10.381699 -31.528222 0.017914 -0.182054 -0.052289 -2.949120 4.983251 19.535603 -3.227909 2.238116 -4.538365 -0.746708 2.488026 3.398385 -0.077426 -4.210382 -4.118550 0.374920 -2.321807 27.445095 -28.249717 -9.604617 2.756614 -42.777963 -9.821190 12.575257 175.156134 -77.758482 -141.852189 48.740751 -24.778368 8.475917 0.000000 0.000000 0.000000 28.874268 13.502641 4.066282 41.591980 15.468060 10.260635 -113.573004 81.113515 -85.492240 -55.364733 22.682262 1.776971 0.000000 0.000000 0.000000
+-0.127354 0.844543 2.312549 4.435518 -8.389360 -6.981943 -1.439494 4.252390 -26.355458 -2.636654 14.447357 38.619394 3.311754 9.906155 -22.055764 -0.080479 -0.218010 0.034604 -10.413949 -5.699386 -3.307427 7.670745 -3.488075 58.158659 2.419229 -8.887965 -24.920584 0.055523 -0.152017 -0.037396 -3.166510 4.641178 19.780865 -2.730178 2.089643 -3.862078 -0.708846 1.734416 3.124596 -0.405536 -2.603316 -3.014585 0.000341 -0.847267 26.937432 -27.718378 -10.884663 3.091731 -41.912427 -10.086528 12.536281 -178.902955 -77.868489 -147.129714 45.573000 -25.044327 10.126096 0.000000 0.000000 0.000000 28.257286 14.034247 3.399904 43.246301 15.567748 12.165953 -122.973851 81.649240 -95.264424 -52.826182 20.504551 -0.893623 0.000000 0.000000 0.000000
+-0.128425 0.844849 2.332999 4.494783 -8.236243 -7.400546 -1.649671 4.422016 -24.914386 -2.058651 13.827445 40.456132 4.027754 9.854579 -23.919871 -0.077528 -0.247451 0.046365 -11.139968 -4.997912 -6.090084 8.042037 -4.030858 63.659557 3.385018 -8.690455 -19.684869 0.024714 -0.175873 -0.095663 -3.599726 4.356305 19.821682 -2.672519 2.360425 -3.399818 -0.407871 1.412754 3.155851 -0.712896 -2.480176 -2.913336 -0.266682 -0.990229 27.087023 -27.276493 -11.928709 3.818976 -41.923903 -10.617091 12.827833 -172.374185 -77.268328 -153.090824 43.056909 -25.468327 11.208083 0.000000 0.000000 0.000000 28.277058 14.222500 3.315972 44.723084 15.735057 13.317887 -124.869044 82.982252 -97.355494 -51.754580 19.569899 -2.664647 0.000000 0.000000 0.000000
+-0.130149 0.847100 2.352101 3.952674 -8.371127 -7.846081 -1.658328 5.264956 -23.064684 -1.457787 13.456446 42.317818 4.306988 9.793973 -26.537731 -0.057741 -0.285260 0.058172 -11.374693 -4.290371 -8.138321 9.228721 -4.473833 66.683783 3.703913 -8.022991 -16.258880 0.037292 -0.189389 -0.036327 -3.655582 3.751942 20.345639 -2.721858 2.714823 -2.526187 -0.105687 1.334515 2.917178 -1.091429 -2.938087 -2.652977 -0.710237 -1.442050 25.359102 -26.985019 -12.542253 3.928476 -41.429023 -11.090610 13.175745 -168.246257 -75.155048 -156.308084 41.772626 -25.407500 13.657396 0.000000 0.000000 0.000000 27.905423 14.768072 2.689079 46.998462 16.457570 14.767550 -128.978135 83.984586 -102.502908 -50.153297 17.028199 -5.473396 0.000000 0.000000 0.000000
+-0.132555 0.846883 2.370100 3.849030 -8.458484 -8.417409 -1.869794 5.278788 -21.412985 -1.271374 12.452378 43.494997 4.672996 9.716151 -28.350504 -0.035470 -0.266457 0.044178 -11.669484 -3.617813 -10.977708 9.159846 -4.815595 69.763271 3.566320 -7.879577 -16.450861 0.024071 -0.175262 -0.026620 -3.641843 3.440142 21.055912 -2.459589 3.203824 -2.379582 0.063937 1.126980 2.864572 -0.756596 -2.758825 -3.066866 -1.126876 -1.581359 25.229733 -26.750752 -13.180138 4.180026 -41.504235 -11.579532 13.610432 -166.322336 -73.491784 -157.642272 41.067792 -25.717501 13.823535 0.000000 0.000000 0.000000 28.229327 15.633400 2.960139 48.376394 16.939143 16.067697 -127.823168 85.437509 -101.724685 -49.533606 16.513323 -6.518606 0.000000 0.000000 0.000000
+-0.135197 0.850003 2.386981 3.271524 -8.757862 -8.073084 -1.857347 4.724325 -20.324221 -1.709572 10.416931 44.368194 4.851463 8.824567 -29.634835 -0.066472 -0.263106 0.007898 -10.714484 -2.911025 -13.481669 8.455326 -5.428542 69.546833 2.710258 -7.923752 -17.900673 -0.010436 -0.190217 -0.024827 -3.721816 2.976166 20.636481 -2.144288 3.299642 -1.696452 0.361076 0.855040 1.732327 0.240237 -3.584610 -5.248320 -0.810590 -3.044939 22.515846 -27.568129 -13.222521 4.053645 -42.347809 -12.133407 15.262341 -165.143871 -72.939005 -159.361512 41.944243 -25.789320 14.303388 0.000000 0.000000 0.000000 28.660564 16.271424 2.587437 49.523455 16.427704 17.817864 -133.095828 86.461983 -108.541567 -49.299902 15.549143 -9.508544 0.000000 0.000000 0.000000
+-0.138338 0.853078 2.402963 3.086033 -9.053692 -8.359728 -2.156173 4.550455 -18.634530 -1.365423 9.309653 44.216583 4.714188 8.872271 -30.673244 -0.085437 -0.292724 0.026660 -10.418561 -2.785564 -15.762811 7.698544 -6.624007 69.122384 2.310561 -8.071154 -19.514714 -0.004149 -0.237844 0.015691 -3.543713 2.628636 21.239915 -2.116865 3.609999 -1.593728 0.492518 0.695832 1.545516 0.215252 -3.642944 -5.748587 -0.805260 -3.245639 22.103953 -27.517703 -13.674360 3.896066 -42.983114 -12.731929 16.004956 -165.624112 -73.024115 -159.178306 42.296313 -26.044380 14.585643 0.000000 0.000000 0.000000 28.798537 16.830118 2.526636 50.546107 16.270503 18.937304 -139.421300 87.090140 -115.698258 -49.312100 14.396547 -11.247512 0.000000 0.000000 0.000000
+-0.142148 0.856880 2.418401 2.091954 -9.558842 -7.813048 -1.256388 4.146685 -17.114006 -1.605655 7.701922 43.871565 4.282216 7.953514 -31.798974 -0.041334 -0.219806 0.027641 -9.687284 -2.475490 -17.842471 7.239643 -7.515860 65.955717 1.906859 -7.910404 -21.902667 -0.030198 -0.165735 0.000827 -2.902800 1.855158 20.350911 -1.743087 3.695484 -1.754562 0.557180 0.681633 1.050431 0.626460 -3.492664 -6.375572 -0.836980 -3.613115 20.445284 -27.604629 -13.569180 3.849181 -44.195335 -13.224597 16.873991 -165.288095 -73.311396 -161.378418 42.120926 -25.447605 12.770117 0.000000 0.000000 0.000000 28.810269 16.448172 2.511782 51.230663 15.679433 19.788922 -161.256155 86.765032 -138.037030 -49.210897 15.015442 -11.758006 0.000000 0.000000 0.000000
+-0.146431 0.861167 2.433376 1.480869 -10.025816 -7.445674 -0.957885 4.500214 -14.944321 -1.775266 6.799120 42.394814 3.765994 7.641179 -32.408040 -0.062740 -0.146164 0.032166 -9.054426 -2.261922 -19.648535 7.186162 -8.378338 62.107111 1.801156 -7.479614 -22.684465 -0.033891 -0.119845 0.011476 -2.623781 1.020688 20.074290 -1.649097 3.784893 -2.057473 0.673958 0.550254 1.323158 0.464579 -3.676120 -6.679227 -1.010189 -3.780921 20.085831 -27.403757 -13.435071 3.527468 -45.151504 -13.874634 17.596528 -166.095291 -73.412204 -161.371779 42.201448 -25.228573 12.132925 0.000000 0.000000 0.000000 28.570411 15.983607 2.137623 51.762350 15.597771 20.172494 -170.472518 86.019170 -147.533569 -49.869088 14.849305 -12.097077 0.000000 0.000000 0.000000
+-0.151208 0.869555 2.447707 0.681048 -10.504204 -6.419461 -0.345509 4.803158 -12.306795 -1.566775 5.513792 40.206717 2.681407 7.041441 -33.483074 -0.078703 -0.138858 0.023360 -8.170665 -1.655301 -22.539506 7.538724 -9.127895 56.771177 1.118982 -7.239680 -22.829560 -0.023189 -0.124355 -0.010821 -2.429569 -0.013218 19.790970 -2.036926 4.273324 -3.161703 0.601583 0.402306 1.696003 -1.190633 -4.384250 -7.484408 -0.959677 -2.472994 20.458551 -27.555036 -13.384846 3.398715 -46.562975 -14.665481 18.570358 -168.271667 -74.378629 -160.507272 43.369048 -23.806682 11.119420 0.000000 0.000000 0.000000 28.306020 14.686297 0.863166 53.033349 15.649226 20.303663 -177.075084 85.022897 -153.939334 -52.179235 14.750396 -13.287140 0.000000 0.000000 0.000000
+-0.156385 0.875045 2.461748 0.144436 -10.912868 -5.589991 0.192935 5.152447 -10.598784 -1.651207 4.574815 38.156260 2.179103 6.642051 -33.703659 -0.053864 -0.102466 0.033144 -7.641427 -1.449054 -24.140336 7.338516 -9.165101 51.283799 1.085897 -6.961165 -22.160758 -0.033694 -0.082292 -0.025955 -2.362844 -0.791116 19.428444 -1.834492 4.354335 -3.733318 0.588716 0.310567 2.030127 -1.121493 -4.403537 -7.981756 -0.923390 -2.023293 20.093481 -27.478844 -13.201491 3.303101 -47.316011 -15.301524 18.954504 -169.507097 -75.029594 -160.042836 43.954746 -23.477354 10.533051 0.000000 0.000000 0.000000 28.066393 13.380903 0.495936 53.217897 15.232829 20.013320 -174.294485 83.594447 -150.889760 -53.393559 14.820956 -13.409786 0.000000 0.000000 0.000000
+-0.162357 0.877907 2.476016 -0.016989 -11.228774 -4.616282 0.712733 5.181343 -8.793948 -1.726155 3.310746 36.271306 1.776225 5.915038 -33.450720 -0.062242 -0.061277 0.049377 -6.897778 -2.016574 -25.798336 7.478450 -9.390533 43.986979 1.078512 -6.453447 -20.333414 -0.030866 -0.064245 -0.019246 -2.335084 -1.139771 19.017754 -2.057492 4.615680 -4.642864 0.443669 0.264477 2.088107 -0.859585 -4.199370 -9.313070 -0.618865 -1.654800 19.613767 -27.179304 -13.418466 3.026818 -48.501179 -16.333546 19.506187 -171.374453 -75.757300 -159.724431 44.685566 -22.820889 7.871020 0.000000 0.000000 0.000000 27.935804 12.150145 0.196636 53.547117 14.421304 20.149958 -179.295181 82.156906 -154.535532 -53.856315 16.195974 -12.488976 0.000000 0.000000 0.000000
+-0.168933 0.881329 2.490779 -0.089288 -11.494794 -4.073416 1.112406 5.700255 -6.996906 -2.010448 2.592236 34.283386 1.427258 5.289793 -33.275048 -0.063524 -0.095024 0.039651 -6.542081 -2.609131 -26.299241 7.568983 -8.610497 36.828038 1.765997 -5.736910 -17.997006 -0.043491 -0.048259 -0.028544 -2.453524 -1.554320 18.639790 -1.955335 4.572309 -4.672485 0.367652 0.125637 2.053424 -0.911753 -4.397370 -9.704591 -0.514466 -1.542683 19.382545 -27.037682 -13.564970 3.137706 -48.951356 -17.664921 19.423098 -171.889981 -76.462778 -159.907586 45.088247 -22.534969 7.158929 0.000000 0.000000 0.000000 27.846425 11.070720 0.009950 53.428122 13.681947 19.680879 -178.093403 81.056015 -152.214577 -54.536224 16.795077 -11.490341 0.000000 0.000000 0.000000
+-0.175765 0.882516 2.505354 0.113394 -11.777772 -3.326817 0.528922 5.693556 -4.920732 -2.276441 1.160088 30.898228 1.354138 4.645972 -31.969355 -0.096265 -0.079095 0.036637 -5.982517 -3.341783 -27.501367 6.769556 -8.443614 30.412676 2.122860 -5.895271 -15.606655 -0.029247 -0.065457 -0.026590 -2.850053 -1.693010 18.259809 -2.022857 4.484220 -5.413150 0.317828 -0.090859 1.877675 -0.995798 -3.124267 -11.285122 -0.708280 0.188326 18.545549 -26.764492 -13.855210 3.056360 -49.606589 -18.286975 19.438156 -170.668775 -76.361730 -161.741629 48.048446 -23.048533 6.275732 0.000000 0.000000 0.000000 28.064112 10.164597 0.189375 53.364375 12.368747 19.896161 174.837281 78.858719 -157.011290 -54.121231 18.803482 -8.192657 0.000000 0.000000 0.000000
+-0.182852 0.885263 2.520268 0.204613 -12.060085 -2.716875 0.419275 6.233645 -3.237329 -2.060205 0.706258 28.234590 0.902046 4.023578 -31.096928 -0.073485 -0.083840 0.047464 -5.343602 -3.911721 -27.929609 6.415964 -8.321267 24.610138 2.538361 -5.629818 -14.141201 -0.069659 -0.043310 -0.031508 -2.977982 -2.009825 17.883162 -1.946475 4.301051 -5.564481 0.243564 -0.305194 1.796564 -1.159397 -2.940578 -11.756045 -0.345111 0.656832 18.357920 -26.310802 -13.892232 2.898631 -49.750588 -18.787867 19.338161 -170.726556 -76.569460 -161.455549 49.067095 -23.252076 6.561790 0.000000 0.000000 0.000000 27.932025 9.363688 0.087599 52.965557 11.208308 19.550272 171.154381 77.581390 -159.653313 -53.649330 19.687074 -6.888907 0.000000 0.000000 0.000000
+-0.190389 0.885729 2.535820 0.542888 -12.362077 -2.250299 0.541347 7.011024 -1.197990 -2.093055 -0.028588 25.796038 0.678211 3.508564 -30.391465 -0.122779 -0.088640 0.021099 -4.646660 -5.355856 -28.001186 5.180082 -8.800463 17.545896 2.720898 -6.229823 -12.485969 -0.102417 -0.061556 -0.030398 -3.105178 -2.192676 17.725545 -1.979295 4.054301 -6.359977 0.078935 -0.616926 1.990991 -1.473544 -2.645066 -12.291365 -0.559726 0.899805 18.298396 -25.613456 -13.665611 2.612442 -50.610149 -19.383208 19.195730 -168.440557 -76.473858 -163.227634 50.514484 -22.874386 6.539636 0.000000 0.000000 0.000000 27.760558 8.518767 0.012157 52.513081 10.437742 19.140339 167.282692 75.603230 -161.533555 -52.537373 20.432601 -4.179517 0.000000 0.000000 0.000000
+-0.198446 0.886410 2.552304 0.774936 -12.667095 -2.059999 0.521156 7.753282 0.709087 -1.824983 -0.348348 23.564522 0.296274 3.166853 -30.031144 -0.109493 -0.119569 0.029746 -3.883859 -6.039816 -27.731276 4.581923 -9.157587 12.762615 2.790983 -6.289539 -12.064619 -0.125713 -0.078276 -0.017510 -2.947520 -2.537974 17.370659 -1.934084 3.887333 -6.318240 -0.071006 -0.835991 1.605050 -1.466076 -2.533417 -12.472499 -0.546946 0.926081 18.454304 -25.231147 -13.547118 2.444668 -50.732520 -19.744017 19.133520 -167.491918 -76.521965 -164.108583 50.805994 -23.025705 7.044722 0.000000 0.000000 0.000000 27.548772 7.937235 -0.038231 52.243583 9.755194 19.003729 164.635295 74.476634 -163.543689 -51.812307 21.371399 -3.140912 0.000000 0.000000 0.000000
+-0.205963 0.883035 2.569618 1.137351 -13.104321 -1.960818 -0.092515 8.183309 2.479165 -1.805247 -0.328465 20.904314 0.290225 3.488702 -30.342004 -0.093974 -0.172080 0.034058 -2.780927 -6.224708 -26.875965 4.095146 -10.387436 8.686552 2.497344 -7.661968 -11.448136 -0.116188 -0.094667 -0.014243 -3.672881 -2.456720 16.576165 -1.486541 3.637416 -6.625200 0.014604 -0.995781 1.853188 -1.381491 -2.700370 -11.897634 -0.470280 0.346622 20.133296 -24.860208 -14.003151 2.590589 -50.106160 -19.923358 19.336886 -160.588216 -76.232821 -170.120542 50.545805 -24.112724 9.178089 0.000000 0.000000 0.000000 27.669832 7.577659 0.007799 51.503455 9.154488 18.696724 162.255489 72.555422 -165.198325 -51.173887 22.318101 -1.611625 0.000000 0.000000 0.000000
+-0.213161 0.880373 2.587515 1.302559 -13.591857 -1.977037 -0.254555 8.489763 4.217766 -1.610898 -0.245484 19.576342 0.306476 3.724426 -31.015898 -0.089926 -0.170065 0.032228 -2.195882 -6.264929 -26.631499 3.819797 -11.359997 7.620275 2.056462 -8.448980 -11.368236 -0.123365 -0.105605 -0.014271 -3.746790 -2.836424 16.022932 -1.353929 3.496123 -6.347378 -0.021250 -1.249167 1.576873 -1.451777 -2.487215 -11.560293 -0.369989 0.625102 20.605457 -24.942814 -14.403974 2.586844 -49.800232 -20.159323 19.507971 -157.507646 -76.605247 -173.130564 50.403181 -24.471764 10.797228 0.000000 0.000000 0.000000 27.635593 7.288710 -0.258908 50.916078 8.609931 18.694682 162.376420 71.857554 -165.156959 -50.666801 22.336141 -0.953385 0.000000 0.000000 0.000000
+-0.220182 0.875546 2.606200 1.353511 -14.005010 -2.272270 -0.327244 8.908651 5.690022 -1.832744 0.155494 19.559642 0.492489 3.826706 -31.897023 -0.092832 -0.160372 0.022974 -1.670569 -6.532280 -26.152610 3.605826 -12.411313 8.591891 1.412352 -9.062555 -10.833914 -0.128342 -0.093200 -0.034445 -3.882777 -3.207071 15.938019 -0.980636 3.256901 -6.670953 0.090770 -1.507488 1.501473 -1.794537 -2.612907 -11.842562 -0.132795 0.917264 20.968964 -25.333972 -14.894915 2.736975 -49.909759 -20.332926 19.478508 -153.134228 -78.028679 -177.037102 50.894352 -25.462555 12.450412 0.000000 0.000000 0.000000 28.173746 7.026936 -0.336737 50.291633 7.996281 18.501389 160.706630 70.834192 -166.230507 -49.262675 23.218693 1.610899 0.000000 0.000000 0.000000
+-0.227243 0.871634 2.625234 1.212849 -14.455246 -2.214496 -0.146125 8.841313 6.381665 -2.025159 0.612707 20.908498 0.401098 4.441250 -32.706333 -0.082156 -0.148960 0.032110 -1.595240 -6.261292 -26.482336 3.559534 -13.229925 11.027585 0.311995 -9.840432 -10.107939 -0.119002 -0.083157 -0.012449 -3.459770 -3.741609 15.586776 -0.833901 3.015679 -6.579906 0.111380 -1.683175 1.293246 -1.968360 -2.733863 -11.499518 -0.105737 1.256883 21.284754 -26.067608 -15.103542 3.009415 -49.671434 -20.476168 19.695960 -149.528183 -79.063116 179.607489 50.898502 -25.333286 13.711071 0.000000 0.000000 0.000000 28.416256 6.543110 -0.460835 49.360460 7.435909 18.215553 161.197851 70.769722 -165.311339 -49.029021 23.139612 2.116108 0.000000 0.000000 0.000000
+-0.234439 0.866247 2.644925 0.325801 -14.747280 -1.873534 1.506468 8.604370 6.642960 -2.194256 2.998333 23.837542 0.048908 6.029008 -34.503049 -0.041470 -0.176883 0.040206 -2.303319 -4.034539 -27.332761 3.970593 -11.517895 15.201391 0.071319 -9.108586 -8.560140 -0.107949 -0.080835 -0.011632 -2.783165 -4.896088 14.388906 -0.560665 2.606937 -5.653442 0.376127 -2.159779 1.423273 -2.805173 -2.338783 -9.238451 0.602740 2.761600 21.980383 -27.585033 -16.016700 4.189562 -48.922251 -21.450575 19.881256 -144.875763 -80.175970 175.370458 48.841596 -25.370595 14.516081 0.000000 0.000000 0.000000 28.866093 6.193879 0.320107 48.049281 7.091641 18.066034 165.327975 70.512613 -160.576381 -46.944348 23.671635 3.759671 0.000000 0.000000 0.000000
+-0.241736 0.860932 2.664471 -0.362367 -14.954554 -1.859667 2.441426 8.426910 6.382347 -2.126725 4.047287 27.051591 -0.070491 6.599186 -35.271223 -0.025809 -0.099506 0.024978 -2.757912 -3.000956 -28.136981 4.650860 -11.141478 19.746208 -0.497395 -8.608527 -7.823694 -0.105586 -0.078328 -0.051288 -1.921231 -5.692407 13.835668 -0.274467 2.290778 -5.292168 0.555600 -2.399204 1.087555 -3.063190 -2.092937 -8.631692 0.518502 3.616768 22.034218 -28.444415 -16.570785 4.770032 -48.892626 -21.429628 19.825391 -143.038610 -80.514512 174.204781 48.003207 -25.576082 15.139673 0.000000 0.000000 0.000000 28.913007 6.200615 0.479622 46.885233 7.097242 17.632222 168.734193 69.975523 -157.329252 -46.049043 23.365210 3.970946 0.000000 0.000000 0.000000
+-0.249039 0.857120 2.683344 -0.763684 -15.078054 -2.435028 3.275868 7.976975 6.737880 -1.968653 4.347783 30.265139 -0.437605 7.145149 -35.838058 -0.024702 -0.101897 0.049755 -2.937439 -2.015670 -28.610390 5.170337 -10.877849 24.509265 -1.502329 -8.891569 -9.675441 -0.072961 -0.075963 -0.015932 -0.953288 -6.434380 13.420007 -0.051609 2.109533 -4.974371 0.677386 -2.682759 1.127953 -3.014901 -1.911718 -7.261817 0.841648 3.675151 23.221811 -29.051637 -17.661661 5.235573 -48.557566 -21.800478 19.276291 -149.200504 -82.231930 -179.718477 46.142974 -25.827839 16.375288 0.000000 0.000000 0.000000 28.838091 6.744920 1.124331 45.465254 6.887008 17.181903 170.788026 69.820194 -155.405280 -46.183202 23.103217 4.517066 0.000000 0.000000 0.000000
+-0.256059 0.853698 2.701366 -1.176026 -15.213735 -2.671165 4.108419 7.732584 5.935190 -1.797051 4.580958 34.733922 -0.878760 6.803589 -35.362777 -0.063820 -0.110204 0.052760 -2.974841 -1.388883 -28.334599 5.497024 -10.172987 27.867499 -2.434808 -8.644246 -10.923994 -0.066084 -0.081963 -0.016862 -0.148939 -6.979524 13.184835 0.240298 1.792450 -4.898586 0.734926 -2.828257 1.144320 -2.977773 -1.504268 -6.826034 0.784288 4.035865 23.328235 -29.372731 -18.378744 5.437159 -48.478967 -22.151655 18.974525 -148.517403 -83.178987 179.443977 45.169064 -26.009086 16.836895 0.000000 0.000000 0.000000 28.729073 7.093378 1.161421 44.835417 6.907181 16.553527 173.191106 69.590410 -152.983587 -46.310186 22.785922 4.089097 0.000000 0.000000 0.000000
+-0.263151 0.852821 2.717901 -1.275752 -15.399086 -2.925854 5.127985 7.784208 5.313956 -2.025832 5.124779 38.487535 -1.848082 6.459037 -34.143104 -0.080074 -0.065435 0.039969 -2.839410 -0.912378 -27.595680 5.410255 -8.771094 31.196192 -2.319263 -8.105079 -13.019127 -0.091481 -0.054670 0.023372 1.070604 -7.510760 13.437183 0.615503 1.029874 -4.713343 0.522429 -3.006112 0.773363 -2.424364 -0.697048 -4.985953 0.420371 3.856577 24.905191 -29.609718 -18.844183 5.516544 -48.685271 -21.776640 17.913366 -164.782424 -84.638564 -166.074652 44.693810 -25.136059 14.460363 0.000000 0.000000 0.000000 28.800413 7.746399 1.730204 43.610984 7.035075 15.981741 175.405254 69.839481 -150.140068 -46.162752 24.558593 6.181216 0.000000 0.000000 0.000000
+-0.269884 0.851865 2.732922 -1.473636 -15.788238 -3.290641 6.182027 7.761859 3.677200 -2.394902 5.783846 43.137777 -2.618993 5.875695 -32.570504 -0.075746 -0.032786 0.015460 -2.658178 -0.419335 -26.848257 5.496474 -7.819297 33.273239 -2.549213 -8.058265 -14.412761 -0.078219 -0.016106 -0.003115 1.465291 -7.415860 13.757413 0.798642 0.840792 -4.594485 0.448076 -2.961580 0.865715 -2.598672 -0.398727 -4.491542 0.150461 3.755508 25.412294 -29.789285 -19.014478 5.539920 -48.874117 -21.760552 17.398762 -174.383592 -85.254097 -157.081436 44.282892 -24.517728 13.666120 0.000000 0.000000 0.000000 28.779123 8.235910 1.800143 43.223399 7.122226 15.506743 177.751138 69.114234 -147.137402 -46.736771 25.154219 7.075549 0.000000 0.000000 0.000000
+-0.275996 0.853600 2.746740 -1.266651 -16.146935 -3.156682 7.222205 7.933375 1.776887 -3.075674 6.113417 47.548551 -3.587125 5.077416 -29.159310 -0.096392 0.034042 0.006918 -2.967336 -0.546752 -26.168837 5.506188 -7.083510 35.710254 -2.733949 -8.461598 -16.408035 -0.076797 0.017109 0.012658 1.953621 -7.347844 13.981460 0.874604 0.370941 -4.738870 -0.073548 -2.977076 1.308798 -2.384365 -0.554665 -3.105623 -0.186796 2.523377 26.915692 -29.295145 -19.019398 5.399267 -49.145212 -21.241041 16.669579 -179.419055 -85.722358 -151.959124 43.134943 -23.508529 13.496933 0.000000 0.000000 0.000000 28.291530 8.816223 1.932497 42.827541 7.205160 14.536367 178.634717 68.891780 -144.630561 -46.673566 25.531049 8.559303 0.000000 0.000000 0.000000
+-0.281536 0.854545 2.759490 -0.831677 -16.526012 -3.324092 7.454059 7.998539 -0.587207 -3.556985 6.411712 51.983735 -4.400989 4.201827 -25.681042 -0.072491 0.108776 -0.005350 -3.152913 -0.853015 -25.482000 5.564022 -6.654168 36.537648 -2.993551 -8.486577 -17.642585 -0.051090 0.072083 0.001546 2.083550 -6.790782 14.487240 0.843781 0.334812 -4.695437 -0.244682 -2.787904 1.613800 -2.196621 -0.465025 -2.990733 -0.366138 2.246347 27.242404 -29.373359 -18.766489 5.312901 -49.099467 -20.841718 16.180862 173.735540 -86.394599 -145.130343 42.443214 -23.032761 13.551149 0.000000 0.000000 0.000000 28.241078 9.203484 1.930124 42.508864 7.450811 14.096464 179.003130 68.453925 -143.484515 -46.701405 25.864076 9.322509 0.000000 0.000000 0.000000
+-0.286392 0.855839 2.771417 -0.150039 -16.953812 -4.404788 8.048115 8.350600 -1.528021 -4.045713 6.409596 55.094055 -5.394144 3.220957 -21.769469 -0.066841 0.027317 -0.034089 -3.072229 -0.784698 -24.439435 5.205810 -5.966040 37.944735 -3.551839 -8.681992 -18.898610 -0.069090 0.011527 -0.005864 2.027849 -6.870809 15.175216 0.468768 0.139674 -4.223982 -0.504964 -2.630935 1.294073 -1.789587 -0.558885 -2.647464 -0.438473 1.979152 28.107857 -29.719537 -18.736601 5.480948 -49.029251 -19.692924 15.142076 135.378028 -85.825047 -108.204670 43.281870 -22.055508 11.238655 0.000000 0.000000 0.000000 28.503059 10.182668 2.133055 43.012047 8.237018 13.802270 -178.969873 68.681262 -140.892918 -47.753647 26.785670 10.693430 0.000000 0.000000 0.000000
+-0.290676 0.855949 2.782746 0.433409 -17.502433 -4.784826 7.841691 8.250165 -2.908311 -3.993249 6.602221 57.661782 -5.809554 2.874511 -19.249392 -0.065030 0.025301 -0.030324 -3.184111 -0.930897 -23.785509 5.209764 -5.701164 38.280005 -3.828843 -8.813096 -19.776634 -0.078758 0.011002 0.001827 2.002608 -6.501391 15.557659 0.270043 0.249761 -4.050152 -0.641940 -2.353443 1.304982 -1.640863 -0.881493 -2.616307 -0.766433 1.766962 28.663065 -29.911223 -18.445842 5.647759 -49.128863 -19.224534 14.766803 118.069072 -85.366486 -91.610919 43.393737 -21.380295 10.585010 0.000000 0.000000 0.000000 28.756465 10.533340 2.371342 43.227683 8.732724 13.773945 -177.633794 68.613080 -139.451323 -48.161661 27.424937 11.224767 0.000000 0.000000 0.000000
+-0.294434 0.856210 2.793516 0.837132 -18.132072 -5.274632 7.773566 8.216131 -3.802448 -4.340265 6.833323 59.189970 -6.662821 2.817959 -15.864161 -0.061738 0.022672 -0.037128 -3.509226 -0.958416 -22.766653 4.617516 -4.943462 39.339603 -4.136618 -9.029580 -21.003369 -0.058285 0.004980 0.000942 2.374856 -6.627853 16.212910 0.319032 -0.146283 -3.592890 -0.957297 -2.160817 1.154393 -1.272300 -0.988471 -2.496705 -0.879503 1.925205 29.508066 -30.167221 -17.704222 5.498008 -48.943566 -18.030971 13.731928 108.173711 -84.223797 -81.808816 42.870295 -20.497268 8.989435 0.000000 0.000000 0.000000 29.212272 11.243614 2.880589 43.400584 9.854497 13.556775 -175.825076 68.165093 -136.688172 -48.268585 27.937324 12.515141 0.000000 0.000000 0.000000
+-0.297754 0.856414 2.803705 1.335046 -18.877356 -5.372499 7.666076 8.084824 -4.618525 -4.238105 7.068099 59.684832 -6.806542 3.174907 -14.558347 -0.059488 0.002601 -0.042113 -3.496261 -1.013262 -22.435112 4.173222 -4.947107 39.574477 -4.399824 -9.421096 -21.707213 -0.052610 -0.021954 -0.007741 2.253242 -6.277958 16.516215 0.188415 0.022518 -3.315340 -1.001091 -1.899597 1.191907 -1.215037 -1.247826 -2.445235 -1.080208 1.785315 29.766928 -30.179251 -17.150258 5.549074 -49.061346 -17.359789 13.406709 104.174012 -83.686169 -77.878286 42.688894 -20.097153 8.388652 0.000000 0.000000 0.000000 29.534642 11.800415 3.241960 43.754685 10.624179 13.836243 -174.970819 68.505967 -135.750022 -48.308650 27.955619 12.905728 0.000000 0.000000 0.000000
+-0.300724 0.857696 2.813398 2.183909 -19.659178 -6.428233 7.909055 7.971585 -5.219226 -4.191624 9.096656 59.984976 -7.342464 3.913993 -11.998052 -0.081059 -0.051910 -0.014506 -3.145862 -0.944182 -20.896090 2.811133 -4.915498 39.933493 -5.159146 -9.947201 -23.246585 -0.065388 -0.034092 0.005747 2.654010 -6.324483 16.977736 0.069351 -0.702609 -2.764739 -1.711801 -1.775352 1.173301 -1.975266 0.687363 -2.436600 -0.793091 4.568243 28.347580 -30.707966 -16.629847 5.564543 -49.065722 -16.168064 12.613456 98.905738 -83.455705 -72.278914 43.723055 -21.316408 7.054536 0.000000 0.000000 0.000000 29.589348 12.429085 4.019743 44.157476 11.668956 13.863808 -172.178533 68.468418 -132.229527 -48.626942 28.752011 14.733411 0.000000 0.000000 0.000000
+-0.303257 0.860089 2.822721 2.760383 -20.492043 -6.511425 7.717036 7.831519 -6.310677 -3.941530 9.886182 59.918211 -7.163690 4.298427 -11.826326 -0.091564 -0.101534 -0.042412 -3.053930 -0.907435 -20.130123 2.168106 -4.753797 39.219328 -5.233719 -9.828576 -23.775896 -0.061974 -0.049990 0.005405 2.501224 -5.831273 17.173892 -0.006328 -0.709169 -2.873008 -1.862085 -1.530299 1.277584 -2.006576 0.953870 -2.242700 -0.643571 5.048586 27.941138 -30.931421 -15.775116 5.567046 -49.395137 -15.313929 12.393852 98.682888 -83.309126 -71.998777 44.071012 -21.380529 6.592186 0.000000 0.000000 0.000000 29.622186 12.604201 4.235646 44.705561 12.417189 14.172973 -171.234182 68.818990 -131.557310 -48.577006 28.701935 15.596276 0.000000 0.000000 0.000000
+-0.305531 0.861842 2.831648 3.031948 -21.393380 -6.561286 8.240597 7.355095 -7.615211 -3.853298 12.039339 59.320140 -5.768394 5.847782 -11.752054 -0.124327 -0.185806 -0.031374 -2.401763 -0.225898 -19.292071 0.994681 -3.418288 39.404839 -4.693189 -8.802390 -24.527086 -0.046396 -0.092975 0.045320 3.282399 -6.148652 16.908790 0.675736 -2.332989 -2.836200 -2.253919 -1.350123 1.356758 -1.653084 2.634895 -2.663482 -0.652525 6.645250 26.212859 -31.662338 -14.656919 4.555963 -49.629207 -13.471561 11.757744 106.648146 -83.587198 -79.011187 45.976868 -21.276453 4.983628 0.000000 0.000000 0.000000 29.785096 13.378844 5.736577 44.771763 13.732815 14.639873 -168.204123 68.471683 -128.853576 -48.144250 28.979584 17.830581 0.000000 0.000000 0.000000
+-0.307456 0.865523 2.840322 3.362716 -22.285200 -6.392610 8.419645 7.099383 -8.971485 -3.537925 12.864857 58.186802 -4.679404 6.749983 -13.019670 -0.110660 -0.206330 -0.034400 -2.277969 -0.163352 -18.419230 0.425457 -2.925953 38.675468 -4.167140 -8.234129 -24.549489 -0.035899 -0.134837 0.034249 3.250278 -5.802930 17.179326 0.840000 -3.015626 -3.040423 -2.233649 -1.275706 1.563040 -1.622752 3.307890 -2.996350 -0.690865 7.232835 25.903101 -31.884424 -14.099752 4.109332 -49.939270 -12.561718 11.739762 112.359691 -83.850791 -84.111613 46.198062 -21.788902 4.278913 0.000000 0.000000 0.000000 29.433153 13.642081 5.763275 45.235557 14.584065 14.889400 -167.361462 68.209180 -128.237311 -48.094037 29.278420 18.479481 0.000000 0.000000 0.000000
+-0.309162 0.867580 2.848607 3.164957 -23.200200 -5.797469 8.438905 7.034238 -11.394406 -3.445232 13.789714 56.101572 -3.345670 7.784802 -14.738625 -0.105134 -0.317969 -0.017522 -1.966335 -0.933855 -17.602538 0.062647 -2.922201 38.166160 -3.505877 -7.863862 -25.918461 -0.038088 -0.220052 0.006640 4.119065 -5.734948 17.262606 1.267598 -4.315441 -3.795996 -2.121769 -0.955696 1.849542 -0.931234 3.381200 -4.585875 -0.371430 6.946067 24.797922 -31.822244 -13.322415 2.940976 -50.827971 -11.394623 11.501877 114.772062 -84.903134 -85.324694 46.914425 -22.283851 3.506537 0.000000 0.000000 0.000000 28.654877 13.661892 6.316404 44.830014 15.179975 14.238063 -168.263088 67.603415 -129.386455 -49.428532 29.609450 18.794708 0.000000 0.000000 0.000000
+-0.310689 0.872733 2.856827 3.279065 -24.018508 -5.424848 8.436553 6.843355 -13.419682 -3.199117 14.246750 53.600621 -2.691188 8.145830 -16.301961 -0.112743 -0.373845 -0.019634 -2.235144 -1.188103 -16.683829 0.166313 -2.667246 37.118775 -3.088784 -7.192827 -26.123833 -0.028593 -0.245418 -0.001351 4.262976 -5.364607 17.431783 1.386250 -4.725365 -4.369870 -2.030658 -0.957267 2.136115 -0.697483 3.545205 -5.153987 -0.387649 7.209065 24.456939 -31.912580 -12.860054 2.571049 -51.516227 -10.881516 11.581615 122.177002 -85.293438 -92.514233 47.502782 -22.766332 2.620549 0.000000 0.000000 0.000000 28.224441 13.422276 6.023239 44.986901 15.662527 13.981579 -167.751316 67.334944 -129.003447 -49.882319 29.862584 19.259436 0.000000 0.000000 0.000000
+-0.312121 0.876588 2.864990 3.162475 -24.879574 -4.773146 8.758124 7.071962 -15.322864 -2.149212 15.584089 50.983296 -2.074155 8.846327 -17.005672 -0.095004 -0.355925 -0.018034 -2.387562 -1.360407 -16.029463 0.567771 -2.025334 36.770223 -2.572929 -6.177920 -26.127139 -0.025169 -0.215447 0.007398 4.380593 -4.973147 16.871552 1.858248 -5.044632 -4.372857 -1.530027 -1.089768 2.196285 -0.703833 3.530376 -6.209324 -0.350312 7.360165 22.273256 -31.881846 -12.555110 2.210410 -52.553609 -10.439306 11.961796 148.067358 -85.593057 -117.976013 49.158513 -22.994233 0.774770 0.000000 0.000000 0.000000 28.033545 13.191441 6.277557 44.672251 16.424692 13.452915 -166.788798 66.769614 -129.197379 -50.182943 29.792315 19.441597 0.000000 0.000000 0.000000
+-0.313433 0.880482 2.873186 3.223941 -25.686824 -4.589458 8.940931 7.081180 -16.862055 -2.033743 16.075569 47.959076 -1.945767 9.235041 -17.776767 -0.082596 -0.336121 -0.010633 -2.678453 -1.371088 -15.200319 0.925264 -1.530956 36.180928 -2.237679 -5.621770 -26.151900 -0.003424 -0.205971 -0.009895 4.384762 -4.514718 16.812434 2.116935 -5.157197 -4.607989 -1.306379 -1.061745 2.252897 -0.322779 3.529814 -6.418641 -0.355596 7.073807 22.054358 -31.797635 -12.098724 2.001467 -53.008304 -10.032791 12.047554 160.198182 -85.526731 -129.859779 49.569040 -23.371521 0.088105 0.000000 0.000000 0.000000 28.024411 13.003723 6.341135 44.728878 16.730712 13.299183 -167.002079 66.767175 -129.812342 -50.474631 29.920934 19.386726 0.000000 0.000000 0.000000
+-0.314471 0.883317 2.881087 2.553526 -26.509535 -4.225983 8.791272 6.701259 -18.901975 -2.161849 15.527867 44.795843 -1.298789 10.339250 -18.748439 -0.071542 -0.373776 -0.008558 -2.377198 -2.030677 -13.869418 1.654225 -1.234534 35.398331 -1.910746 -5.448224 -26.808178 -0.026260 -0.232804 -0.029506 4.152304 -3.719384 17.131574 2.518433 -5.104209 -4.666581 -0.721433 -0.786061 2.203356 0.657878 3.376002 -6.764984 -0.273909 5.849011 22.201189 -31.191294 -11.081361 1.385078 -53.931557 -9.683587 12.607765 174.980547 -85.864940 -144.113651 50.971243 -23.546285 -0.658416 0.000000 0.000000 0.000000 27.806676 12.627493 6.446781 44.410646 16.629384 13.315607 -167.541115 67.165692 -130.882163 -53.027153 30.221740 18.118249 0.000000 0.000000 0.000000
+-0.315339 0.885319 2.889191 2.380651 -27.261033 -4.216924 8.688870 6.645412 -20.493126 -2.156295 15.330768 41.903501 -0.998123 10.578139 -18.488005 -0.067102 -0.340128 0.001712 -2.585352 -2.425392 -12.876383 1.946444 -0.911728 35.061370 -1.770551 -5.206775 -27.146833 0.004910 -0.203212 -0.012710 4.072910 -3.148453 17.337391 2.581721 -5.043949 -4.671536 -0.491856 -0.659755 2.247580 0.928761 3.390317 -6.893760 -0.316390 5.415246 22.483191 -30.963847 -10.746868 1.165692 -54.222274 -9.436400 12.956901 -177.636150 -85.612558 -151.415119 51.459200 -23.578309 -0.857818 0.000000 0.000000 0.000000 27.634376 12.581703 6.508694 44.401267 16.446602 13.519638 -168.846896 67.374851 -132.521612 -53.956834 30.435769 17.741492 0.000000 0.000000 0.000000
+-0.316063 0.887218 2.897589 1.622898 -28.049346 -3.566450 9.192343 6.971651 -22.245378 -3.089652 14.146051 38.828683 -1.166906 10.306408 -18.640781 -0.081745 -0.487358 0.026607 -2.462425 -3.165780 -12.283382 2.610323 -0.165989 34.560771 -1.645749 -5.024254 -27.937455 -0.010662 -0.292081 -0.019881 4.053230 -2.676766 17.443503 2.998116 -5.260228 -4.804021 -0.041486 -0.430683 2.601039 1.759137 3.717946 -6.723115 0.171863 4.844756 23.169850 -30.346850 -10.137313 0.945823 -54.181227 -8.961076 12.926923 -168.992086 -85.689490 -159.753868 51.914853 -23.785634 -0.939885 0.000000 0.000000 0.000000 27.418368 12.527502 6.605415 44.330586 16.898342 13.278035 -170.282181 67.757697 -134.627609 -54.754968 30.119989 17.229050 0.000000 0.000000 0.000000
+-0.316715 0.887058 2.906455 1.276559 -28.808200 -3.395113 9.207461 6.763505 -23.161856 -3.489412 13.274222 35.869342 -1.301970 9.815597 -18.377869 -0.071316 -0.458656 0.001061 -2.483851 -3.258161 -11.473135 2.786506 0.151367 34.232657 -1.564351 -4.773651 -28.187612 -0.020978 -0.289538 -0.016553 3.904774 -2.323483 17.484772 2.976485 -5.288049 -4.835954 0.065646 -0.342685 2.657039 1.993304 3.758751 -6.567735 0.179855 4.303581 23.189417 -30.237450 -9.625532 0.824418 -54.063495 -8.455893 13.167553 -163.999175 -85.342785 -164.811960 52.358606 -23.764881 -1.539207 0.000000 0.000000 0.000000 27.495975 12.524558 6.732288 44.431978 17.297712 13.673445 -171.708528 67.582329 -136.248168 -55.271735 30.110409 16.869779 0.000000 0.000000 0.000000
+-0.316988 0.888137 2.915531 1.185559 -29.626186 -3.298230 8.899590 5.599761 -24.293567 -4.362108 10.305242 32.534572 -1.721878 8.890425 -17.925355 -0.080154 -0.445528 0.010916 -2.167297 -3.062755 -10.844737 2.959390 0.879864 33.425902 -1.291014 -4.925571 -28.571739 -0.033413 -0.287771 0.006348 3.832710 -1.743484 17.789376 3.186522 -5.068716 -5.072403 0.216897 -0.077639 3.289673 3.131119 3.094979 -5.900798 0.363167 1.732518 25.090493 -30.068018 -8.534867 0.922728 -53.609482 -7.692217 13.191296 -163.598254 -86.351231 -165.013681 53.013049 -24.068719 -1.336545 0.000000 0.000000 0.000000 27.495753 12.280890 6.674178 45.068423 17.415771 14.384667 -173.003479 67.537630 -137.326307 -56.740728 29.470768 15.037007 0.000000 0.000000 0.000000
+-0.317133 0.888751 2.924998 1.054152 -30.588699 -3.260003 9.083705 5.135693 -24.590136 -4.768320 8.666794 29.942788 -1.926967 8.250446 -16.870934 -0.073167 -0.409941 0.011141 -2.184400 -3.126707 -10.048407 3.155597 1.571297 32.977081 -1.244676 -4.634119 -28.985778 -0.019609 -0.254659 0.000162 3.631784 -1.260634 17.902261 3.010693 -4.909856 -5.109117 0.235493 0.098233 3.555840 3.379151 3.187512 -5.799497 0.337332 1.004462 25.448533 -29.949046 -7.900696 0.722670 -53.471075 -7.123267 13.264148 -163.121445 -86.491378 -165.530379 53.439320 -23.947134 -1.306549 0.000000 0.000000 0.000000 27.371205 12.015513 6.688273 45.454293 17.426545 14.856538 -173.968685 66.704203 -138.141098 -57.410719 29.266490 14.012032 0.000000 0.000000 0.000000
+-0.317119 0.889501 2.935020 1.021470 -31.654470 -3.006467 8.929531 3.957834 -25.495699 -5.129590 5.760534 28.126901 -2.507050 7.214739 -15.909104 -0.063140 -0.437679 -0.001729 -2.232872 -2.820973 -9.840430 3.238554 2.274115 32.538043 -1.274250 -4.561355 -29.597075 -0.022267 -0.305628 0.005320 3.551655 -1.015649 17.858070 3.097134 -4.765253 -5.255154 0.201433 0.296861 3.842425 3.627224 2.797927 -5.613870 0.303669 -0.713354 26.319899 -29.919556 -7.108737 0.717764 -53.050714 -6.765768 13.465009 -153.895486 -87.311878 -174.777754 53.294455 -24.429947 -0.391975 0.000000 0.000000 0.000000 27.357282 11.773907 6.375969 45.880010 17.254029 15.428883 -175.486323 65.706150 -139.616348 -58.641909 28.819664 12.256899 0.000000 0.000000 0.000000
+-0.317003 0.889220 2.945598 1.002177 -32.836147 -2.927666 9.140044 3.279926 -25.510375 -5.361989 3.821611 26.736387 -2.869453 6.649045 -14.901843 -0.064407 -0.435245 -0.010516 -2.176795 -2.551831 -9.553988 3.320196 3.120709 32.534746 -1.219421 -4.550320 -29.993943 -0.025202 -0.294716 0.005972 3.341587 -0.739327 17.821581 2.945510 -4.612762 -5.255697 0.145785 0.462539 4.058492 3.784772 2.998193 -5.598660 0.128146 -1.112141 26.786654 -29.902851 -6.483420 0.686636 -52.779611 -6.163858 13.405369 -152.915733 -87.842638 -175.822237 53.387195 -24.430935 -0.415771 0.000000 0.000000 0.000000 27.324850 11.453641 6.433623 46.197979 17.152106 15.804413 -176.745486 64.791737 -140.714675 -59.204009 28.724757 11.267601 0.000000 0.000000 0.000000
+-0.318164 0.887735 2.955572 1.146835 -33.186605 -4.587478 7.555726 2.225598 -21.571599 -4.790435 3.315166 23.293582 -2.561040 5.209400 -11.790645 -0.078583 -0.415025 -0.051877 -1.887601 -1.489130 -9.601716 2.150505 1.592016 35.203995 -1.164571 -3.774794 -28.920645 -0.028291 -0.287678 0.012753 2.887588 -0.438435 16.535408 1.760123 -3.156540 -2.398797 -0.833870 0.864700 2.542901 1.793876 6.817523 -4.207404 -0.788315 2.050426 25.622721 -29.754843 -5.983990 0.519451 -51.362386 -6.029611 12.456632 80.821157 -87.568006 -49.394336 38.769839 -22.899555 2.829703 0.000000 0.000000 0.000000 28.143415 10.900983 6.612895 47.905635 15.721361 14.640739 -156.514354 69.342480 -122.561223 -49.391292 23.248486 7.022509 0.000000 0.000000 0.000000
+-0.319498 0.889081 2.964271 1.008504 -33.022684 -5.160372 7.027613 2.285452 -19.641830 -4.634695 2.917901 22.730701 -2.485113 5.512778 -10.899968 -0.081455 -0.388768 -0.033697 -1.789058 -1.010612 -9.053318 1.450727 1.032737 36.503234 -0.669152 -4.847982 -28.099432 -0.082249 -0.261668 0.052608 2.457141 -0.597833 15.345080 1.813552 -3.311982 -1.541378 -1.026438 0.726103 2.009762 2.118122 7.108173 -3.062506 -0.301376 1.688122 25.137867 -29.865019 -5.986442 0.761349 -50.047695 -6.394453 12.241999 28.511331 -81.820404 1.983480 29.561165 -20.401963 5.425029 0.000000 0.000000 0.000000 28.782269 9.906980 7.025554 47.903196 13.713554 14.314822 -130.629040 74.853349 -99.721868 -42.780504 18.941880 5.002588 0.000000 0.000000 0.000000
+-0.321178 0.891989 2.970306 1.441386 -32.917469 -5.873139 6.455507 2.414746 -17.123305 -4.774509 2.131011 19.277634 -2.378761 4.887946 -9.205085 -0.044747 -0.281672 -0.045780 -3.441717 -0.262850 -9.651360 2.197770 0.362648 36.907178 1.159042 -2.860853 -27.191611 -0.041133 -0.226004 0.069948 1.040574 -0.649725 15.144820 1.426906 -2.647150 -1.038850 -0.822482 0.430650 1.433535 1.027388 9.144338 -3.174349 -1.587287 3.142298 21.979643 -28.350403 -5.875362 0.655527 -49.127721 -7.762809 13.329792 11.677079 -74.217468 16.034622 21.115661 -16.435172 4.706234 0.000000 0.000000 0.000000 28.494703 8.672263 5.112501 47.604132 12.511631 13.649173 -77.788804 76.655607 -52.998685 -30.187072 14.391387 2.678563 0.000000 0.000000 0.000000
+-0.323345 0.897545 2.974469 1.609127 -32.518866 -5.798587 6.071110 3.016764 -15.529435 -4.761071 1.778450 16.734275 -2.758809 5.278721 -7.873163 -0.028677 -0.349905 -0.025522 -4.221478 0.011264 -11.320624 2.634977 -0.003019 38.904492 2.247841 -3.392718 -26.266546 -0.016435 -0.185514 0.039354 0.453529 -0.940719 14.453213 1.681807 -2.562112 -1.331863 -0.699423 0.141821 1.439684 1.223449 9.618639 -2.778433 -1.575134 3.456235 21.747492 -27.526900 -6.509799 0.891305 -47.891173 -8.717179 13.025088 8.627660 -65.376324 17.457920 13.346343 -14.511944 6.829586 0.000000 0.000000 0.000000 28.429593 8.491130 4.815227 46.924655 11.931106 12.730693 -38.559350 67.923588 -17.686187 -20.796954 11.358610 0.861349 0.000000 0.000000 0.000000
+-0.325898 0.898474 2.979458 2.615107 -32.352247 -5.184260 5.016500 1.344336 -15.676671 -4.727856 -0.553239 16.330719 -2.552238 5.368082 -6.832374 0.031758 -0.301063 -0.079892 -4.495077 -0.365715 -11.121717 2.152577 0.393251 35.210023 1.590367 -5.952479 -24.294050 -0.030687 -0.236935 0.091431 -0.452396 -0.652840 12.959826 1.330242 -2.628057 0.700244 -1.079035 -0.175425 1.430283 0.113478 8.180651 -3.262593 -1.769089 2.080042 18.923443 -26.235988 -7.282297 0.404030 -46.908508 -10.153142 13.322697 6.559210 -57.820071 19.337356 5.605330 -12.599853 10.461277 0.000000 0.000000 0.000000 27.401645 8.267421 3.513160 45.741329 10.699557 13.159237 -24.424903 61.353914 -3.812986 -12.576661 8.705070 1.223573 0.000000 0.000000 0.000000
+-0.328782 0.900170 2.984630 2.518284 -32.273460 -5.154893 4.507392 1.593201 -14.512818 -4.642407 -1.190897 15.386521 -2.399995 5.901894 -6.530299 0.020495 -0.321864 -0.062390 -4.786415 -0.757516 -11.301275 2.279069 0.937284 33.934397 1.719408 -6.781057 -23.377505 -0.047458 -0.197328 0.077659 -0.336735 -0.593537 12.561416 1.219623 -2.271071 0.599882 -1.153972 -0.340435 1.680979 -0.396108 8.151646 -4.103174 -1.836016 2.425640 18.279907 -25.742194 -8.311474 0.566386 -46.183489 -10.570267 13.330581 5.141236 -52.781898 20.750909 4.074344 -11.759948 12.084740 0.000000 0.000000 0.000000 26.896288 8.606482 3.615396 44.476318 9.748906 12.921106 -18.376977 55.380545 1.842542 -8.033699 7.775236 4.284898 0.000000 0.000000 0.000000
+-0.331650 0.897207 2.989726 1.500227 -32.351553 -5.055214 3.339113 1.378594 -13.477874 -3.271559 0.085456 16.700056 -1.583706 7.767337 -8.558251 0.026395 -0.183052 -0.043558 -4.220511 -0.783849 -10.864268 2.164363 1.548853 33.289247 1.086544 -7.112936 -21.217000 -0.053700 -0.129881 -0.021438 -0.149051 -0.584208 11.596755 0.754798 -0.821384 1.603016 -0.978999 -0.262708 1.340290 -0.356763 7.271435 -5.259622 -1.032350 2.374287 15.414806 -24.803734 -9.138749 0.903311 -46.115415 -10.939725 13.250225 5.549700 -51.112542 19.164253 1.950459 -11.237736 10.527676 0.000000 0.000000 0.000000 26.396614 8.925916 3.477703 43.793557 8.952206 13.617952 -13.100079 51.230264 8.022381 -10.115361 9.119364 6.662963 0.000000 0.000000 0.000000
+-0.334896 0.899995 2.994587 0.986244 -32.369061 -4.908688 3.053487 0.907562 -12.904227 -2.909352 -0.486197 16.337979 -1.335243 7.807478 -8.954460 -0.049761 -0.214373 -0.010868 -3.994958 -0.958038 -10.178882 2.238170 1.951675 32.652735 1.212516 -7.285748 -20.185331 -0.024533 -0.142116 0.005214 -0.004280 -0.744041 11.608501 0.734739 -0.584424 1.408749 -0.844464 -0.355476 1.479673 -0.224262 6.270479 -5.934546 -0.682102 2.259213 14.104520 -25.076391 -9.213549 1.021865 -46.473238 -11.618990 13.896612 5.477873 -50.884546 18.305033 2.955727 -10.743351 9.731288 0.000000 0.000000 0.000000 26.140070 8.338296 3.273912 42.760807 8.664363 13.733516 -10.691549 49.069283 10.583913 -11.811556 9.628376 9.040286 0.000000 0.000000 0.000000
+-0.338487 0.903201 2.999963 1.164653 -32.390690 -4.871109 3.601172 1.020677 -13.056621 -3.329020 0.794170 17.841919 -0.445531 8.804543 -10.456365 -0.054396 -0.177699 -0.048851 -4.012473 -1.184112 -9.034911 2.593146 2.464942 30.201391 0.845291 -7.430212 -20.772745 0.009649 -0.106113 0.043753 0.011918 -0.340846 12.708064 0.202837 -0.289916 -0.172198 -1.068359 -0.695628 1.396314 0.325948 5.482611 -8.023086 -0.381099 2.806707 11.625859 -25.497972 -8.685136 0.790521 -47.256970 -11.576435 14.055959 4.192701 -50.426701 17.841896 4.486849 -11.061674 8.190546 0.000000 0.000000 0.000000 25.662942 7.680825 1.999365 42.056274 8.064586 13.567812 -8.159093 46.149077 12.171677 -4.900911 9.135768 9.270967 0.000000 0.000000 0.000000
+-0.342012 0.902002 3.005399 0.998148 -32.414752 -4.725318 3.239104 0.841385 -13.120484 -3.153461 1.363074 19.557997 -0.278234 9.050072 -11.817132 -0.028069 -0.153751 -0.032767 -3.571917 -1.478028 -7.320677 2.288125 2.374301 27.907674 0.325133 -7.942549 -20.893285 0.003910 -0.106848 -0.022947 0.278532 -0.155494 12.463117 -0.023100 -0.140270 -0.577350 -0.994650 -0.748659 1.307990 0.242745 4.458848 -8.177232 -0.210327 3.130044 11.104561 -26.176616 -8.478967 0.934402 -47.346228 -11.486043 13.832048 4.663289 -51.126164 17.387149 4.472674 -11.267907 8.211383 0.000000 0.000000 0.000000 25.627299 7.421843 1.950703 41.618792 7.726830 12.894570 -7.856754 45.481399 12.443097 -2.922613 9.015435 10.044253 0.000000 0.000000 0.000000
+-0.345489 0.903347 3.010699 0.928925 -32.431365 -4.478492 3.646608 0.536720 -13.429588 -3.322931 1.397342 21.868572 0.107249 9.562281 -13.434779 -0.032273 -0.213197 -0.009084 -3.658931 -1.649690 -5.620737 2.835788 2.780374 25.393593 -0.536842 -9.020039 -20.110147 -0.034920 -0.123555 -0.030503 0.331314 -0.029470 12.207132 -0.404787 -0.001480 -0.794316 -1.071854 -0.765156 1.249920 0.261121 2.882958 -8.260882 0.300216 2.858557 9.607345 -26.793789 -8.534865 1.298258 -47.387949 -11.649486 14.021332 5.171435 -50.742312 16.679260 6.065434 -10.406621 7.701689 0.000000 0.000000 0.000000 25.798006 7.309009 1.536431 41.838390 7.776354 12.919917 -6.878514 43.310408 14.390398 -2.089867 8.049970 10.782814 0.000000 0.000000 0.000000
+-0.348817 0.902397 3.015810 0.825141 -32.428739 -4.513035 3.714884 0.775052 -13.874821 -3.383276 2.534758 23.708214 0.221071 9.929309 -14.646870 -0.052442 -0.176555 -0.028298 -3.536590 -2.211851 -4.323644 2.950683 2.908949 23.924307 -0.751859 -9.126304 -20.407889 -0.007495 -0.095210 -0.013063 0.585027 0.212662 12.297403 -0.678278 0.025379 -0.967891 -1.143806 -0.729197 1.024070 0.297727 2.324567 -8.352898 0.849511 3.228817 8.560689 -27.174253 -8.514550 1.482887 -47.555064 -11.935497 13.967907 5.538476 -51.033598 16.323466 7.553361 -10.444545 6.894003 0.000000 0.000000 0.000000 25.623961 6.914728 1.595545 41.787290 7.602127 12.174148 -7.468940 41.984833 14.594047 -2.668410 7.990615 12.230885 0.000000 0.000000 0.000000
+-0.351814 0.899202 3.021305 -0.520485 -32.674393 -3.219501 3.640357 0.888301 -13.603566 -2.311089 1.260753 24.339415 -0.235596 8.942693 -15.949844 -0.041336 -0.130637 0.016258 -3.641469 -2.420643 -2.950939 3.081832 3.144107 20.325415 -1.071683 -9.607949 -18.767150 -0.037465 -0.077990 -0.028699 0.449445 0.377584 12.671323 -0.953505 0.591952 -0.947646 -0.488709 -0.292288 0.610276 -0.451352 1.304768 -9.302694 0.583414 3.415822 7.534115 -28.060405 -8.484798 2.518961 -46.866863 -11.720360 13.909521 6.873296 -53.339391 15.723670 9.510624 -11.517045 6.327899 0.000000 0.000000 0.000000 26.879653 5.694881 2.052288 42.695043 7.159168 10.065950 -12.573223 43.849218 8.455345 -12.769528 10.633157 10.011746 0.000000 0.000000 0.000000
+-0.354339 0.898140 3.026987 -0.663532 -32.982706 -3.080868 3.732900 1.064999 -13.622749 -2.173360 1.627558 25.480152 -0.432967 8.802651 -16.734603 -0.022022 -0.180253 0.010089 -3.479609 -2.784928 -2.022893 3.493396 2.719371 18.859132 -1.225481 -9.829594 -18.674186 -0.073092 -0.096118 -0.046800 0.453154 0.589371 12.722843 -1.234057 0.700761 -1.235095 -0.485422 -0.309620 0.845249 -0.510861 1.371756 -9.338121 0.465522 3.744424 7.436728 -28.752056 -8.004646 2.968985 -46.436611 -11.191969 13.740969 7.632016 -56.341500 14.610703 12.743967 -11.973677 5.866187 0.000000 0.000000 0.000000 27.244853 4.274307 2.238500 43.154391 6.311119 9.429957 -15.595854 46.471782 4.931504 -18.327314 11.556176 8.302941 0.000000 0.000000 0.000000
+-0.356327 0.896176 3.032551 -0.876523 -33.277739 -2.724529 3.928434 0.885229 -13.308367 -2.246368 1.215488 25.928118 -0.239299 9.105435 -16.813896 -0.047969 -0.185433 -0.005210 -3.508782 -2.721082 -1.781697 3.300785 2.376747 18.691683 -0.436486 -9.285198 -18.838281 -0.044976 -0.102166 -0.002909 0.709464 0.640113 12.821692 -1.273258 0.396708 -1.355799 -0.724425 -0.468002 0.656852 -0.107268 1.999040 -10.704051 0.406356 3.581696 7.045929 -29.504220 -6.308917 3.314585 -45.610525 -9.874060 12.948466 9.145319 -60.093637 12.853336 17.838057 -14.333057 6.042244 0.000000 0.000000 0.000000 27.860988 3.070884 2.593205 43.649978 4.885566 8.915884 -21.005664 50.177496 -1.068344 -22.718201 12.590973 7.274555 0.000000 0.000000 0.000000
+-0.357721 0.894936 3.038055 -1.119234 -33.749892 -2.520858 3.818427 0.838572 -12.954157 -2.296721 0.917594 26.066038 -0.229221 9.124992 -17.118061 -0.030395 -0.146448 0.038408 -3.703990 -2.410968 -2.033429 3.622318 2.342861 19.142845 -0.354998 -8.988435 -18.274309 -0.046999 -0.117361 -0.006995 0.835778 0.467079 12.390376 -1.330874 0.228551 -0.961459 -0.776538 -0.499716 0.935960 -0.114132 1.836950 -10.923914 0.670474 3.798616 7.199142 -30.116764 -5.070789 3.500277 -45.279294 -8.700267 12.806960 11.696772 -64.107841 10.374705 20.678083 -14.905993 5.473037 0.000000 0.000000 0.000000 28.399134 1.593936 2.484689 44.181135 3.530309 8.753824 -24.583443 53.856334 -4.747375 -26.438159 13.081225 5.220182 0.000000 0.000000 0.000000
+-0.359803 0.893895 3.043591 -0.859274 -33.870529 -1.843241 3.146595 0.460323 -11.986927 -2.041319 0.388611 24.619000 -0.183698 9.532098 -17.524936 0.005104 -0.000877 0.044855 -3.853504 -1.677256 -2.530832 3.923442 2.798334 19.839826 -0.078116 -8.682238 -19.044084 -0.037243 -0.018562 -0.059749 0.546865 0.275450 11.326018 -1.461349 -0.170976 0.414116 -0.724076 -0.433652 0.272116 -0.761197 3.679771 -13.186563 0.384826 5.654001 6.893988 -30.886347 -5.003481 3.165525 -44.567631 -8.570328 13.717604 11.044506 -65.060634 10.935020 15.597266 -14.598600 2.170796 0.000000 0.000000 0.000000 29.424922 1.127750 1.928845 43.511138 4.239191 9.142654 -24.916827 54.354434 -4.921668 -24.296091 13.383866 4.541434 0.000000 0.000000 0.000000
+-0.362213 0.891923 3.048869 -0.884439 -33.820411 -1.948466 2.944954 -0.047062 -10.873842 -1.911257 -0.310112 23.394416 -0.109259 9.202894 -17.818978 0.001621 0.122137 0.017246 -4.015878 -1.247343 -2.639556 3.900409 3.056807 20.452848 0.271820 -8.536072 -18.978992 -0.031026 0.040735 -0.040889 0.186095 -0.009329 10.760987 -1.356436 -0.465112 1.577096 -0.610887 -0.553424 -0.132515 -0.928564 4.323970 -13.792886 0.032868 5.941299 6.569866 -30.796127 -4.911853 2.939857 -44.224534 -8.154956 13.794345 9.783059 -64.686578 12.141468 12.006059 -14.284270 1.226496 0.000000 0.000000 0.000000 30.044969 1.333082 1.807600 42.905665 4.460757 9.349581 -23.083256 53.377878 -3.236555 -21.710161 13.552288 5.155906 0.000000 0.000000 0.000000
+-0.364853 0.893734 3.053776 -0.612460 -33.786777 -1.333621 2.315291 -0.406584 -10.269674 -1.364175 -1.602180 22.322039 -1.225847 7.566695 -18.573420 0.006442 0.114885 -0.003375 -4.504152 -1.508332 -3.043142 4.111567 2.385426 20.574901 -0.391549 -9.562552 -19.895840 -0.068106 0.011641 -0.050677 -0.533011 -0.238485 9.926949 -1.087017 -0.502852 1.596192 0.040845 -0.567077 -1.101408 -1.509827 2.139683 -15.022169 0.736483 5.092074 7.187855 -31.028964 -5.728873 3.516995 -43.600392 -8.196798 14.578971 9.615876 -62.198640 11.826836 8.291264 -14.504073 0.056454 0.000000 0.000000 0.000000 30.925031 1.240177 0.754468 43.212052 5.005625 8.679328 -22.264778 51.900627 -2.428947 -16.236043 13.327637 5.462822 0.000000 0.000000 0.000000
+-0.367786 0.894975 3.058457 -0.536759 -33.653128 -1.368994 2.203318 -0.576598 -8.858756 -0.993815 -1.701353 20.663997 -1.377219 7.307205 -18.343895 -0.062439 0.024039 0.027262 -4.647348 -1.365980 -3.318089 4.168759 2.158476 21.348657 -0.273775 -9.903205 -20.214389 -0.059769 -0.011001 -0.047360 -0.884085 -0.646248 9.744238 -0.869595 -0.421765 1.713283 0.172689 -0.772233 -1.355838 -2.007211 2.146511 -15.729379 0.605573 5.178998 7.073576 -30.561514 -6.875040 3.654060 -43.413564 -8.680188 14.564428 7.898594 -59.140005 12.970190 4.150732 -13.736442 0.404097 0.000000 0.000000 0.000000 31.155479 2.137809 0.704715 43.096758 5.686064 8.336474 -20.997069 49.090410 -1.225115 -10.581066 12.409218 7.182418 0.000000 0.000000 0.000000
+-0.369952 0.895215 3.062553 -0.642251 -33.645929 -1.615196 1.009334 -0.200083 -6.478458 -1.014896 -2.171769 18.283217 -0.999089 6.424415 -18.717726 -0.005096 0.142878 0.000367 -4.063942 -0.821125 -2.688478 4.625142 1.993828 22.896925 0.129713 -9.101286 -19.923076 -0.002520 0.071745 -0.041748 -1.367162 -0.921666 8.789654 -0.880944 -0.317160 2.765901 0.372300 -0.847539 -1.737743 -1.176742 0.219564 -14.743900 0.990544 2.462795 5.371768 -30.951314 -6.955658 3.602822 -43.406509 -8.536019 14.547289 7.335442 -59.278469 13.488124 7.527935 -14.407659 0.433960 0.000000 0.000000 0.000000 31.864381 2.432485 0.225635 44.257575 5.469373 7.858493 -23.286187 45.858137 -5.745850 -15.588928 12.875328 8.222645 0.000000 0.000000 0.000000
+-0.371722 0.896293 3.066253 -0.728115 -33.748013 -1.529612 0.597241 -0.058750 -5.364852 -0.650581 -2.679158 16.710459 -0.714054 6.343968 -18.422311 0.006782 0.094108 0.010444 -3.924565 -0.720288 -3.565370 4.870470 1.225415 24.764915 0.199305 -9.361804 -19.542115 -0.006765 0.035249 -0.051441 -1.402803 -1.156841 8.525117 -0.904121 0.054927 2.551350 0.400608 -0.666289 -1.235594 -1.428994 -0.357098 -15.201226 0.912699 1.990136 5.680289 -31.317062 -6.571838 3.438900 -43.577555 -8.352196 15.282932 6.119317 -59.677751 14.368293 9.476298 -14.452296 -0.096674 0.000000 0.000000 0.000000 32.271250 1.884330 -0.146140 45.318502 5.608636 7.236523 -25.101346 44.889357 -9.172882 -19.036804 12.980801 6.759771 0.000000 0.000000 0.000000
+-0.373182 0.897456 3.069432 -1.266343 -33.820590 -1.415507 0.149700 -0.173690 -3.947271 -0.973287 -2.878717 15.837680 -0.432489 6.850379 -18.937611 -0.012767 0.049007 0.021633 -3.914851 -0.567841 -4.170506 5.740437 0.527447 27.302883 0.269683 -9.663766 -20.134196 -0.012623 -0.000099 0.006778 -1.174928 -1.403498 7.952100 -0.915555 0.519587 2.721586 0.554468 -0.381579 -1.125075 -1.336800 -0.486084 -14.273638 0.685752 2.031321 3.674502 -31.386730 -6.752515 3.605200 -43.235940 -7.635389 16.248000 2.283971 -62.113289 15.754377 12.008517 -14.050507 -3.361432 0.000000 0.000000 0.000000 32.923447 1.861483 0.299818 45.306529 4.862823 7.777776 -23.550408 46.141529 -10.315150 -25.300305 12.086335 6.415946 0.000000 0.000000 0.000000
+-0.374581 0.897535 3.072216 -1.465636 -33.877727 -1.578154 0.030851 -0.115445 -3.418724 -1.221801 -3.160143 15.301955 -0.009030 6.743688 -18.796398 0.018551 0.060975 0.028676 -4.183482 -0.100385 -5.547212 6.295973 -0.058172 30.238932 0.527681 -9.507434 -19.505866 -0.013253 0.010847 -0.035547 -0.935757 -1.712371 8.099713 -0.876526 0.855520 2.721199 0.466932 -0.251809 -0.932017 -1.165825 -1.524051 -14.291723 0.586171 1.407690 3.445847 -31.653198 -5.858930 3.410115 -43.087205 -6.680681 16.974851 0.761664 -65.154429 16.205178 14.394209 -14.203316 -4.750353 0.000000 0.000000 0.000000 33.387483 1.144956 0.170976 45.733929 4.419986 7.497926 -23.908791 47.095681 -12.077581 -28.631739 12.456394 5.924061 0.000000 0.000000 0.000000
+-0.375769 0.897844 3.074763 -1.151567 -33.944344 -1.919436 0.446863 0.318452 -4.008977 -1.656263 -3.355336 17.335884 -0.668153 5.705273 -19.532454 0.025893 0.030827 0.029646 -5.049544 -0.425644 -5.993264 6.731739 0.550765 29.860951 0.089427 -9.739171 -20.609344 -0.021366 0.003479 -0.013606 -0.535449 -1.771193 8.523260 -0.935278 0.680745 1.541130 0.314007 -0.272097 -0.906528 -1.214006 -3.463723 -13.702701 0.514784 0.444241 3.843109 -31.619633 -5.351915 4.348437 -43.320135 -5.753736 17.320043 0.371926 -64.669704 16.063622 16.958327 -13.793499 -5.823104 0.000000 0.000000 0.000000 32.851794 0.275672 0.688519 45.844911 3.433848 7.690103 -23.246679 50.507944 -11.703656 -29.338773 11.346345 0.757074 0.000000 0.000000 0.000000
+-0.376699 0.898044 3.077058 -1.100276 -33.985303 -2.453098 0.481361 0.745937 -3.960380 -2.205535 -3.053705 18.711043 -0.666182 5.519929 -20.100351 0.017413 0.026831 0.033767 -5.140904 -0.331403 -5.670130 6.685466 0.866261 29.633625 0.182545 -9.865777 -20.954720 -0.019668 0.014530 0.005249 -0.462751 -1.782401 8.698403 -0.996583 0.592965 1.551145 0.257860 -0.425015 -0.552533 -0.838709 -4.180870 -13.476812 0.413658 0.220744 3.707533 -31.386235 -5.037558 4.249447 -43.545607 -4.951433 17.584123 -0.019466 -65.820940 16.280615 18.384713 -13.981631 -5.757156 0.000000 0.000000 0.000000 32.422964 -0.115926 0.734674 45.883709 2.801700 8.037453 -21.989384 52.652867 -10.137302 -30.277943 11.600995 -0.838659 0.000000 0.000000 0.000000
+-0.377467 0.895028 3.078999 -0.941069 -34.013797 -2.727784 -0.051086 1.005497 -3.662675 -2.226503 -3.000293 18.865813 -0.343385 5.693660 -20.327310 -0.023272 -0.008469 0.054316 -5.055994 0.019506 -5.450628 6.696486 1.278784 28.956522 -0.019939 -9.382355 -21.383421 -0.025310 -0.037442 0.008429 -0.632393 -1.516877 9.551121 -0.841847 0.433834 1.352051 0.060328 -0.543096 0.250962 -0.242342 -4.071389 -13.148086 0.390089 -0.643857 3.482939 -31.073877 -4.790460 4.540229 -43.796270 -4.966700 17.281029 1.839666 -65.935356 14.169098 18.096666 -14.449923 -5.511860 0.000000 0.000000 0.000000 32.110907 -0.838955 1.203820 46.493862 2.572219 7.923211 -23.199806 54.357428 -11.428132 -31.159984 11.696341 -4.220347 0.000000 0.000000 0.000000
+-0.378016 0.894446 3.080720 -0.759947 -34.046252 -2.868201 -0.246266 1.115340 -4.107749 -2.340741 -3.030640 19.896246 -0.373726 5.654412 -20.760238 -0.020828 0.011869 0.011849 -5.104652 0.039345 -5.333443 6.638978 1.508452 28.363326 -0.111182 -9.538082 -21.975068 -0.028014 -0.046745 -0.002941 -0.593677 -1.519243 9.898797 -0.836563 0.263176 1.247535 0.005964 -0.637219 0.342314 -0.112544 -4.481939 -13.164677 0.407287 -0.977141 3.456682 -31.081892 -4.785648 4.619259 -43.982282 -5.141189 17.175912 3.698218 -65.652835 11.980083 18.243833 -14.100981 -5.541284 0.000000 0.000000 0.000000 31.828607 -1.179639 1.294707 46.692185 2.327389 8.221236 -22.776329 55.845421 -10.808083 -31.687358 11.559761 -5.873036 0.000000 0.000000 0.000000
diff --git a/demo_t2m.py b/demo_t2m.py
new file mode 100644
index 0000000000000000000000000000000000000000..61eb5550ab11f9f1a2c59b1d972f806b6bc59cdf
--- /dev/null
+++ b/demo_t2m.py
@@ -0,0 +1,204 @@
+import os
+import torch
+import numpy as np
+from models.llama_model import LLaMAHF, LLaMAHFConfig
+import models.tae as tae
+import options.option_transformer as option_trans
+import warnings
+
+import smplx
+from utils import bvh, quat
+from utils.face_z_align_util import rotation_6d_to_matrix, matrix_to_axis_angle, axis_angle_to_quaternion
+
+
+warnings.filterwarnings('ignore')
+
+comp_device = torch.device('cuda')
+##### ---- Exp dirs ---- #####
+args = option_trans.get_args_parser()
+torch.manual_seed(args.seed)
+
+from sentence_transformers import SentenceTransformer
+t5_model = SentenceTransformer('sentencet5-xxl/')
+t5_model.eval()
+for p in t5_model.parameters():
+ p.requires_grad = False
+
+def save_motion_as_bvh(motion_data, output_path, fps=30):
+ """
+ Saves a motion tensor in the 272-dimensional format to a BVH file.
+ This version is adapted from the official repository script for robustness.
+ """
+ print(f"--- Starting direct conversion to BVH: {os.path.basename(output_path)} ---")
+ try:
+ # --- 1. Ensure data is a 2D NumPy array ---
+ if isinstance(motion_data, torch.Tensor):
+ motion_data = motion_data.detach().cpu().numpy()
+
+ # This is the key fix: Check dimensions before squeezing
+ if motion_data.ndim == 3 and motion_data.shape[0] == 1:
+ motion_data = motion_data.squeeze(0)
+ elif motion_data.ndim != 2:
+ raise ValueError(f"Input motion data must be 2D or 3D with a batch size of 1, but got shape {motion_data.shape}")
+
+ # --- 2. Recover 85-dim SMPL format from 272-dim format ---
+ # This logic is from the official script's `recover_from_local_rotation`
+ njoint = 22
+ nfrm, _ = motion_data.shape
+
+ rotations_matrix = rotation_6d_to_matrix(torch.from_numpy(motion_data[:, 8+6*njoint : 8+12*njoint]).reshape(nfrm, -1, 6)).numpy()
+
+ # Accumulate heading rotations
+ global_heading_diff_rot_6d = torch.from_numpy(motion_data[:, 2:8])
+ global_heading_diff_rot = rotation_6d_to_matrix(global_heading_diff_rot_6d).numpy()
+ global_heading_rot = np.zeros_like(global_heading_diff_rot)
+ global_heading_rot[0] = global_heading_diff_rot[0]
+ for i in range(1, nfrm):
+ global_heading_rot[i] = np.matmul(global_heading_diff_rot[i], global_heading_rot[i-1])
+
+ # Calculate root translation
+ velocities_root_xy = motion_data[:, :2]
+ positions_no_heading = motion_data[:, 8 : 8+3*njoint].reshape(nfrm, -1, 3)
+ height = positions_no_heading[:, 0, 1]
+
+ inv_global_heading_rot = np.transpose(global_heading_rot, (0, 2, 1))
+ rotations_matrix[:, 0, ...] = np.matmul(inv_global_heading_rot, rotations_matrix[:, 0, ...])
+
+ velocities_root_xyz = np.zeros((nfrm, 3))
+ velocities_root_xyz[:, 0] = velocities_root_xy[:, 0]
+ velocities_root_xyz[:, 2] = velocities_root_xy[:, 1]
+ velocities_root_xyz[1:, :] = np.matmul(inv_global_heading_rot[:-1], velocities_root_xyz[1:, :, None]).squeeze(-1)
+ root_translation = np.cumsum(velocities_root_xyz, axis=0)
+ root_translation[:, 1] = height
+
+ # Convert rotation matrices to axis-angle
+ axis_angle = matrix_to_axis_angle(torch.from_numpy(rotations_matrix)).numpy()
+ poses_85dim = np.concatenate([axis_angle.reshape(nfrm, -1), np.zeros((nfrm, 6)), root_translation, np.zeros((nfrm, 10))], axis=-1)
+
+ # --- 3. Convert 85-dim SMPL to BVH data ---
+ # This logic is from the official script's `smpl2bvh`
+ rots = poses_85dim[:, :72].reshape(-1, 24, 3)
+ trans = poses_85dim[:, 72:75]
+
+ # Get skeleton from SMPL model
+ model = smplx.create(model_path="body_models/human_model_files", model_type="smpl", gender="NEUTRAL")
+ parents = model.parents.detach().cpu().numpy()
+ rest_pose = model().joints.detach().cpu().numpy().squeeze()[:24,:]
+ offsets = rest_pose - rest_pose[parents]
+ offsets[0] = np.array([0,0,0])
+
+ rotations_quat = axis_angle_to_quaternion(torch.from_numpy(rots)).numpy()
+ rotations_euler = np.degrees(quat.to_euler(rotations_quat, order="zyx"))
+
+ positions = offsets[None].repeat(len(rots), axis=0)
+ positions[:, 0] = trans
+
+ joint_names = [
+ "Pelvis", "Left_hip", "Right_hip", "Spine1", "Left_knee", "Right_knee", "Spine2",
+ "Left_ankle", "Right_ankle", "Spine3", "Left_foot", "Right_foot", "Neck",
+ "Left_collar", "Right_collar", "Head", "Left_shoulder", "Right_shoulder",
+ "Left_elbow", "Right_elbow", "Left_wrist", "Right_wrist", "Left_hand", "Right_hand"
+ ]
+
+ # --- 4. Save the final BVH file ---
+ bvh.save(output_path, {
+ "rotations": rotations_euler,
+ "positions": positions,
+ "offsets": offsets,
+ "parents": parents,
+ "names": joint_names,
+ "order": "zyx",
+ "frametime": 1.0 / fps,
+ })
+ print(f"✅ BVH file saved successfully to {output_path}")
+
+ except Exception as e:
+ print(f"❌ BVH Conversion Failed. Error: {e}")
+ import traceback
+ traceback.print_exc()
+
+
+##### ---- Network ---- #####
+clip_range = [-30,20]
+
+net = tae.Causal_HumanTAE(
+ hidden_size=args.hidden_size,
+ down_t=args.down_t,
+ stride_t=args.stride_t,
+ depth=args.depth,
+ dilation_growth_rate=args.dilation_growth_rate,
+ activation='relu',
+ latent_dim=args.latent_dim,
+ clip_range=clip_range
+ )
+
+
+config = LLaMAHFConfig.from_name('Normal_size')
+config.block_size = 78
+trans_encoder = LLaMAHF(config, args.num_diffusion_head_layers, args.latent_dim, comp_device)
+
+print('loading checkpoint from {}'.format(args.resume_pth))
+ckpt = torch.load(args.resume_pth, map_location='cpu')
+net.load_state_dict(ckpt['net'], strict=True)
+net.eval()
+net.to(comp_device)
+
+
+if args.resume_trans is not None:
+ print('loading transformer checkpoint from {}'.format(args.resume_trans))
+ ckpt = torch.load(args.resume_trans, map_location='cpu')
+ new_ckpt_trans = {}
+ for key in ckpt['trans'].keys():
+ if key.split('.')[0]=='module':
+ new_key = '.'.join(key.split('.')[1:])
+ else:
+ new_key = key
+ new_ckpt_trans[new_key] = ckpt['trans'][key]
+ trans_encoder.load_state_dict(new_ckpt_trans, strict=True)
+trans_encoder.eval()
+trans_encoder.to(comp_device)
+
+
+reference_end_latent = np.load('reference_end_latent_t2m_272.npy')
+reference_end_latent = torch.from_numpy(reference_end_latent).to(comp_device)
+
+mean = np.load('humanml3d_272/mean_std/Mean.npy')
+std = np.load('humanml3d_272/mean_std/Std.npy')
+
+# forward inference
+threshold = 0.1
+cfg_scale = 4.0
+print(f"Generating motion with CFG scale: {cfg_scale}")
+motion_latents = trans_encoder.sample_for_eval_CFG_inference(text=args.text, tokenizer=t5_model, device=comp_device, reference_end_latent=reference_end_latent, threshold=threshold, cfg=cfg_scale)
+
+# forward decode
+motion_seqs = net.forward_decoder(motion_latents)
+from visualization.recover_visualize import recover_from_local_position
+import visualization.plot_3d_global as plot_3d
+
+motion = motion_seqs.squeeze(0)
+motion = motion.detach().cpu().numpy()
+
+if not os.path.exists('demo_output'):
+ os.makedirs('demo_output')
+
+if args.mode == 'pos':
+ # Option1: recover from joint position
+ pred_xyz = recover_from_local_position(motion * std + mean, 22)
+ xyz = pred_xyz.reshape(1, -1, 22, 3)
+ pose_vis = plot_3d.draw_to_batch(xyz, [args.text], [f'demo_output/{args.text}.mp4'], fps=30)
+ print(f"Visualized result is saved in demo_output/{args.text}.mp4")
+
+elif args.mode == 'rot':
+ # De-normalize the motion data to its original scale
+ motion = motion * std + mean
+
+ # Define the output path for the new BVH file
+ output_bvh_path = os.path.join('demo_output', f'{args.text}.bvh')
+
+ # Call the new function to save the BVH file directly
+ save_motion_as_bvh(motion, output_bvh_path, fps=30)
+
+else:
+ raise ValueError(f'Invalid mode: {args.mode}')
+
diff --git a/environment.yaml b/environment.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..93b497dad035a07cfd7d2dfa3febec97ee374356
--- /dev/null
+++ b/environment.yaml
@@ -0,0 +1,258 @@
+name: mgpt
+channels:
+ - pytorch
+ - conda-forge
+ - defaults
+ - https://repo.anaconda.com/pkgs/main
+ - https://repo.anaconda.com/pkgs/r
+dependencies:
+ - _libgcc_mutex=0.1=main
+ - _openmp_mutex=4.5=1_gnu
+ - asttokens=3.0.0=pyhd8ed1ab_0
+ - backcall=0.2.0=pyh9f0ad1d_0
+ - blas=1.0=mkl
+ - bzip2=1.0.8=h7b6447c_0
+ - ca-certificates=2025.1.31=hbcca054_0
+ - certifi=2024.8.30=pyhd8ed1ab_0
+ - comm=0.2.2=pyhd8ed1ab_0
+ - cudatoolkit=10.1.243=h6bb024c_0
+ - debugpy=1.4.1=py38h709712a_0
+ - entrypoints=0.4=pyhd8ed1ab_0
+ - executing=2.1.0=pyhd8ed1ab_0
+ - ffmpeg=4.3=hf484d3e_0
+ - freetype=2.10.4=h5ab3b9f_0
+ - gmp=6.2.1=h2531618_2
+ - gnutls=3.6.15=he1e5248_0
+ - intel-openmp=2021.3.0=h06a4308_3350
+ - ipykernel=6.20.2=pyh210e3f2_0
+ - jpeg=9b=h024ee3a_2
+ - jupyter_client=7.1.2=pyhd8ed1ab_0
+ - jupyter_core=5.7.2=pyh31011fe_1
+ - lame=3.100=h7b6447c_0
+ - lcms2=2.12=h3be6417_0
+ - ld_impl_linux-64=2.35.1=h7274673_9
+ - libffi=3.3=he6710b0_2
+ - libgcc-ng=9.3.0=h5101ec6_17
+ - libgomp=9.3.0=h5101ec6_17
+ - libiconv=1.15=h63c8f33_5
+ - libidn2=2.3.2=h7f8727e_0
+ - libpng=1.6.37=hbc83047_0
+ - libsodium=1.0.18=h36c2ea0_1
+ - libstdcxx-ng=13.2.0=hc0a3c3a_7
+ - libtasn1=4.16.0=h27cfd23_0
+ - libtiff=4.2.0=h85742a9_0
+ - libunistring=0.9.10=h27cfd23_0
+ - libuv=1.40.0=h7b6447c_0
+ - libwebp-base=1.2.0=h27cfd23_0
+ - lz4-c=1.9.3=h295c915_1
+ - mkl=2021.3.0=h06a4308_520
+ - mkl-service=2.4.0=py38h7f8727e_0
+ - mkl_fft=1.3.0=py38h42c9631_2
+ - mkl_random=1.2.2=py38h51133e4_0
+ - ncurses=6.2=he6710b0_1
+ - nest-asyncio=1.6.0=pyhd8ed1ab_0
+ - nettle=3.7.3=hbbd107a_1
+ - ninja=1.10.2=hff7bd54_1
+ - olefile=0.46=py_0
+ - openh264=2.1.0=hd408876_0
+ - openjpeg=2.3.0=h05c96fa_1
+ - openssl=1.1.1k=h7f98852_0
+ - packaging=24.2=pyhd8ed1ab_2
+ - pickleshare=0.7.5=py_1003
+ - pillow=8.3.1=py38h2c7a002_0
+ - pip=21.0.1=py38h06a4308_0
+ - platformdirs=4.3.6=pyhd8ed1ab_0
+ - prompt_toolkit=3.0.48=hd8ed1ab_1
+ - ptyprocess=0.7.0=pyhd3deb0d_0
+ - pure_eval=0.2.3=pyhd8ed1ab_0
+ - pygments=2.18.0=pyhd8ed1ab_0
+ - python=3.8.11=h12debd9_0_cpython
+ - python_abi=3.8=5_cp38
+ - pyzmq=22.1.0=py38h2035c66_0
+ - readline=8.1=h27cfd23_0
+ - setuptools=52.0.0=py38h06a4308_0
+ - six=1.16.0=pyhd3eb1b0_0
+ - sqlite=3.36.0=hc218d9a_0
+ - stack_data=0.6.2=pyhd8ed1ab_0
+ - tk=8.6.10=hbc83047_0
+ - torchaudio=0.8.1=py38
+ - torchvision=0.9.1=py38_cu101
+ - tornado=6.1=py38h497a2fe_1
+ - wheel=0.37.0=pyhd3eb1b0_0
+ - xz=5.2.5=h7b6447c_0
+ - zeromq=4.3.4=h9c3ff4c_0
+ - zlib=1.2.11=h7b6447c_3
+ - zstd=1.4.9=haebb681_0
+ - pip:
+ - absl-py==0.13.0
+ - accelerate==1.0.1
+ - aiohappyeyeballs==2.4.3
+ - aiohttp==3.10.11
+ - aiosignal==1.3.1
+ - annotated-types==0.7.0
+ - antlr4-python3-runtime==4.9.3
+ - async-timeout==5.0.1
+ - attrs==24.2.0
+ - beautifulsoup4==4.12.3
+ - blis==0.7.11
+ - cachetools==4.2.2
+ - catalogue==2.0.10
+ - charset-normalizer==2.0.4
+ - chumpy==0.70
+ - click==8.1.7
+ - clip==1.0
+ - cloudpathlib==0.20.0
+ - confection==0.1.5
+ - cycler==0.10.0
+ - cymem==2.0.10
+ - decorator==5.0.9
+ - diffusers==0.31.0
+ - einops==0.8.0
+ - ffmpeg-python==0.2.0
+ - filelock==3.16.1
+ - freetype-py==2.5.1
+ - frozenlist==1.5.0
+ - fsspec==2024.2.0
+ - ftfy==6.1.1
+ - future==1.0.0
+ - fvcore==0.1.5.post20221221
+ - gdown==5.2.0
+ - glfw==2.8.0
+ - google-auth==2.36.0
+ - google-auth-oauthlib==0.4.6
+ - grpcio==1.68.0
+ - h5py==3.11.0
+ - huggingface-hub==0.26.2
+ - human-body-prior==2.2.2.0
+ - idna==3.2
+ - imageio==2.9.0
+ - imageio-ffmpeg==0.5.1
+ - importlib-metadata==8.5.0
+ - iopath==0.1.10
+ - ipdb==0.13.9
+ - ipython==7.26.0
+ - ipython-genutils==0.2.0
+ - jedi==0.18.0
+ - jinja2==3.1.3
+ - joblib==1.0.1
+ - kiwisolver==1.3.1
+ - langcodes==3.4.1
+ - language-data==1.3.0
+ - lightning-utilities==0.11.9
+ - marisa-trie==1.2.1
+ - markdown==3.3.4
+ - markdown-it-py==3.0.0
+ - markupsafe==2.1.5
+ - matplotlib==3.4.3
+ - matplotlib-inline==0.1.2
+ - mdurl==0.1.2
+ - moviepy==0.2.3.1
+ - mpmath==1.3.0
+ - multidict==6.1.0
+ - murmurhash==1.0.11
+ - natsort==8.4.0
+ - networkx==3.0
+ - numpy==1.22.4
+ - nvidia-cublas-cu11==11.11.3.6
+ - nvidia-cublas-cu12==12.1.3.1
+ - nvidia-cuda-cupti-cu11==11.8.87
+ - nvidia-cuda-cupti-cu12==12.1.105
+ - nvidia-cuda-nvrtc-cu11==11.8.89
+ - nvidia-cuda-nvrtc-cu12==12.1.105
+ - nvidia-cuda-runtime-cu11==11.8.89
+ - nvidia-cuda-runtime-cu12==12.1.105
+ - nvidia-cudnn-cu11==9.1.0.70
+ - nvidia-cudnn-cu12==9.1.0.70
+ - nvidia-cufft-cu11==10.9.0.58
+ - nvidia-cufft-cu12==11.0.2.54
+ - nvidia-curand-cu11==10.3.0.86
+ - nvidia-curand-cu12==10.3.2.106
+ - nvidia-cusolver-cu11==11.4.1.48
+ - nvidia-cusolver-cu12==11.4.5.107
+ - nvidia-cusparse-cu11==11.7.5.86
+ - nvidia-cusparse-cu12==12.1.0.106
+ - nvidia-nccl-cu11==2.20.5
+ - nvidia-nccl-cu12==2.20.5
+ - nvidia-nvjitlink-cu12==12.1.105
+ - nvidia-nvtx-cu11==11.8.86
+ - nvidia-nvtx-cu12==12.1.105
+ - oauthlib==3.1.1
+ - omegaconf==2.3.0
+ - orjson==3.10.15
+ - pandas==1.3.2
+ - parso==0.8.2
+ - pexpect==4.8.0
+ - portalocker==3.0.0
+ - preshed==3.0.9
+ - prompt-toolkit==3.0.20
+ - propcache==0.2.0
+ - protobuf==5.28.3
+ - psutil==6.1.0
+ - pyasn1==0.4.8
+ - pyasn1-modules==0.2.8
+ - pydantic==2.10.1
+ - pydantic-core==2.27.1
+ - pydeprecate==0.3.2
+ - pygame==2.6.1
+ - pyglet==2.1.2
+ - pyopengl==3.1.0
+ - pyparsing==2.4.7
+ - pyrender==0.1.45
+ - pysocks==1.7.1
+ - python-dateutil==2.8.2
+ - pytorch-lightning==1.7.0
+ - pytorch3d==0.3.0
+ - pytz==2021.1
+ - pyyaml==5.4.1
+ - regex==2024.11.6
+ - requests==2.26.0
+ - requests-oauthlib==1.3.0
+ - rich==13.9.4
+ - rsa==4.7.2
+ - safetensors==0.4.5
+ - scikit-learn==0.24.2
+ - scipy==1.7.1
+ - sentence-transformers==3.2.1
+ - sentencepiece==0.2.0
+ - shapely==2.0.7
+ - shellingham==1.5.4
+ - sklearn==0.0
+ - smart-open==7.0.5
+ - smplx==0.1.28
+ - soupsieve==2.6
+ - spacy==3.7.5
+ - spacy-legacy==3.0.12
+ - spacy-loggers==1.0.5
+ - srsly==2.4.8
+ - sympy==1.13.1
+ - tabulate==0.9.0
+ - tensorboard==2.12.0
+ - tensorboard-data-server==0.7.2
+ - tensorboard-plugin-wit==1.8.0
+ - termcolor==2.4.0
+ - thinc==8.2.5
+ - threadpoolctl==2.2.0
+ - timm==1.0.12
+ - tokenizers==0.20.3
+ - toml==0.10.2
+ - torch==2.4.1+cu118
+ - torchgeometry==0.1.2
+ - torchmetrics==0.7.0
+ - tqdm==4.62.2
+ - traitlets==5.0.5
+ - transformers==4.46.3
+ - triangle==20250106
+ - trimesh==4.6.2
+ - triton==3.0.0
+ - typer==0.13.1
+ - typing-extensions==4.12.2
+ - urllib3==1.26.6
+ - wasabi==1.1.3
+ - wcwidth==0.2.5
+ - weasel==0.4.1
+ - werkzeug==2.0.1
+ - wrapt==1.17.0
+ - yacs==0.1.8
+ - yarl==1.15.2
+ - zipp==3.20.2
+prefix: /root/miniconda3/envs/mgpt
\ No newline at end of file
diff --git a/eval_causal_TAE.py b/eval_causal_TAE.py
new file mode 100644
index 0000000000000000000000000000000000000000..e08baf784cb449d3bc9d4f27ca369ce928bd5cd0
--- /dev/null
+++ b/eval_causal_TAE.py
@@ -0,0 +1,101 @@
+import os
+import torch
+import numpy as np
+from torch.utils.tensorboard import SummaryWriter
+import json
+import models.tae as tae
+import options.option_tae as option_tae
+import utils.utils_model as utils_model
+import utils.eval_trans as eval_trans
+from humanml3d_272 import dataset_eval_tae
+import sys
+import warnings
+warnings.filterwarnings('ignore')
+
+os.chdir('Evaluator_272')
+sys.path.insert(0, os.getcwd())
+
+
+comp_device = torch.device('cuda')
+
+##### ---- Exp dirs ---- #####
+args = option_tae.get_args_parser()
+torch.manual_seed(args.seed)
+
+args.out_dir = os.path.join(args.out_dir, f'{args.exp_name}')
+os.makedirs(args.out_dir, exist_ok = True)
+
+##### ---- Logger ---- #####
+logger = utils_model.get_logger(args.out_dir)
+writer = SummaryWriter(args.out_dir)
+logger.info(json.dumps(vars(args), indent=4, sort_keys=True))
+
+val_loader = dataset_eval_tae.DATALoader(args.dataname, True, 32)
+
+##### ---- Network ---- #####
+clip_range = [-30,20]
+
+net = tae.Causal_HumanTAE(
+ hidden_size=args.hidden_size,
+ down_t=args.down_t,
+ stride_t=args.stride_t,
+ depth=args.depth,
+ dilation_growth_rate=args.dilation_growth_rate,
+ activation='relu',
+ latent_dim=args.latent_dim,
+ clip_range=clip_range
+ )
+
+
+print ('loading checkpoint from {}'.format(args.resume_pth))
+ckpt = torch.load(args.resume_pth, map_location='cpu')
+net.load_state_dict(ckpt['net'], strict=True)
+net.eval()
+net.to(comp_device)
+
+
+# load evaluator:--------------------------------
+import torch
+from mld.models.architectures.temos.textencoder.distillbert_actor import DistilbertActorAgnosticEncoder
+from mld.models.architectures.temos.motionencoder.actor import ActorAgnosticEncoder
+
+modelpath = 'distilbert-base-uncased'
+
+textencoder = DistilbertActorAgnosticEncoder(modelpath, num_layers=4, latent_dim=256)
+motionencoder = ActorAgnosticEncoder(nfeats=272, vae = True, num_layers=4, latent_dim=256, max_len=300)
+
+ckpt = torch.load('epoch=99.ckpt')
+
+# load textencoder
+textencoder_ckpt = {}
+for k, v in ckpt['state_dict'].items():
+ if k.split(".")[0] == "textencoder":
+ name = k.replace("textencoder.", "")
+ textencoder_ckpt[name] = v
+textencoder.load_state_dict(textencoder_ckpt, strict=True)
+textencoder.eval()
+textencoder.to(comp_device)
+
+# load motionencoder
+motionencoder_ckpt = {}
+for k, v in ckpt['state_dict'].items():
+ if k.split(".")[0] == "motionencoder":
+ name = k.replace("motionencoder.", "")
+ motionencoder_ckpt[name] = v
+motionencoder.load_state_dict(motionencoder_ckpt, strict=True)
+motionencoder.eval()
+motionencoder.to(comp_device)
+#--------------------------------
+
+evaluator = [textencoder, motionencoder]
+
+fid = []
+mpjpe = []
+
+best_fid, best_mpjpe, writer, logger = eval_trans.evaluation_tae_single(args.out_dir, val_loader, net, logger, writer, evaluator=evaluator, device=comp_device)
+fid.append(best_fid)
+mpjpe.append(best_mpjpe)
+
+logger.info('final result:')
+logger.info(f'fid: {fid}')
+logger.info(f'mpjpe: {mpjpe} (mm)')
\ No newline at end of file
diff --git a/eval_t2m.py b/eval_t2m.py
new file mode 100644
index 0000000000000000000000000000000000000000..6d19a7f835d423498b4e64455538f89dc9569641
--- /dev/null
+++ b/eval_t2m.py
@@ -0,0 +1,143 @@
+import os
+import torch
+import numpy as np
+from torch.utils.tensorboard import SummaryWriter
+import json
+import sys
+from models.llama_model import LLaMAHF, LLaMAHFConfig
+import options.option_transformer as option_trans
+import utils.utils_model as utils_model
+import utils.eval_trans as eval_trans
+from humanml3d_272 import dataset_eval_t2m
+import models.tae as tae
+import warnings
+warnings.filterwarnings('ignore')
+os.environ["TOKENIZERS_PARALLELISM"] = "false"
+
+os.chdir('Evaluator_272')
+sys.path.insert(0, os.getcwd())
+
+comp_device = torch.device('cuda')
+
+##### ---- Exp dirs ---- #####
+args = option_trans.get_args_parser()
+torch.manual_seed(args.seed)
+
+args.out_dir = os.path.join(args.out_dir, f'{args.exp_name}')
+os.makedirs(args.out_dir, exist_ok = True)
+
+##### ---- Logger ---- #####
+logger = utils_model.get_logger(args.out_dir)
+writer = SummaryWriter(args.out_dir)
+logger.info(json.dumps(vars(args), indent=4, sort_keys=True))
+val_loader = dataset_eval_t2m.DATALoader(args.dataname, True, 32)
+
+##### ---- Network ---- #####
+from sentence_transformers import SentenceTransformer
+t5_model = SentenceTransformer('../sentencet5-xxl/')
+t5_model.eval()
+for p in t5_model.parameters():
+ p.requires_grad = False
+tokenize_model = t5_model
+
+# Causal TAE
+
+clip_range = [-30,20]
+
+net = tae.Causal_HumanTAE(
+ hidden_size=args.hidden_size,
+ down_t=args.down_t,
+ stride_t=args.stride_t,
+ depth=args.depth,
+ dilation_growth_rate=args.dilation_growth_rate,
+ activation='relu',
+ latent_dim=args.latent_dim,
+ clip_range=clip_range
+ )
+
+config = LLaMAHFConfig.from_name('Normal_size')
+config.block_size = 78
+trans_encoder = LLaMAHF(config, args.num_diffusion_head_layers, args.latent_dim, comp_device)
+
+print('loading checkpoint from {}'.format(args.resume_pth))
+ckpt = torch.load(args.resume_pth, map_location='cpu')
+net.load_state_dict(ckpt['net'], strict=True)
+net.eval()
+net.to(comp_device)
+
+
+if args.resume_trans is not None:
+ print('loading transformer checkpoint from {}'.format(args.resume_trans))
+ ckpt = torch.load(args.resume_trans, map_location='cpu')
+ new_ckpt_trans = {}
+ for key in ckpt['trans'].keys():
+ if key.split('.')[0]=='module':
+ new_key = '.'.join(key.split('.')[1:])
+ else:
+ new_key = key
+ new_ckpt_trans[new_key] = ckpt['trans'][key]
+ trans_encoder.load_state_dict(new_ckpt_trans, strict=True)
+trans_encoder.eval()
+trans_encoder.to(comp_device)
+
+# load evaluator:
+import torch
+from transformers import AutoTokenizer, AutoModel
+from mld.models.architectures.temos.textencoder.distillbert_actor import DistilbertActorAgnosticEncoder
+from mld.models.architectures.temos.motionencoder.actor import ActorAgnosticEncoder
+from collections import OrderedDict
+
+modelpath = 'distilbert-base-uncased'
+
+textencoder = DistilbertActorAgnosticEncoder(modelpath, num_layers=4, latent_dim=256)
+motionencoder = ActorAgnosticEncoder(nfeats=272, vae = True, num_layers=4, latent_dim=256, max_len=300)
+
+ckpt_path = 'epoch=99.ckpt'
+print(f'Loading evaluator checkpoint from {ckpt_path}')
+ckpt = torch.load(ckpt_path)
+# load textencoder
+textencoder_ckpt = {}
+for k, v in ckpt['state_dict'].items():
+ if k.split(".")[0] == "textencoder":
+ name = k.replace("textencoder.", "")
+ textencoder_ckpt[name] = v
+textencoder.load_state_dict(textencoder_ckpt, strict=True)
+textencoder.eval()
+textencoder.to(comp_device)
+
+# load motionencoder
+motionencoder_ckpt = {}
+for k, v in ckpt['state_dict'].items():
+ if k.split(".")[0] == "motionencoder":
+ name = k.replace("motionencoder.", "")
+ motionencoder_ckpt[name] = v
+motionencoder.load_state_dict(motionencoder_ckpt, strict=True)
+motionencoder.eval()
+motionencoder.to(comp_device)
+#--------------------------------
+
+evaluator = [textencoder, motionencoder]
+
+fid = []
+div = []
+top1 = []
+top2 = []
+top3 = []
+matching = []
+mpjpe = []
+
+best_fid, best_div, best_top1, best_top2, best_top3, best_matching, logger = eval_trans.evaluation_transformer_272_single(val_loader, net, trans_encoder, tokenize_model, logger, evaluator, 4.0)
+fid.append(best_fid)
+div.append(best_div)
+top1.append(best_top1)
+top2.append(best_top2)
+top3.append(best_top3)
+matching.append(best_matching)
+
+logger.info('final result:')
+logger.info(f'fid: {fid}')
+logger.info(f'div: {div}')
+logger.info(f'top1: {top1}')
+logger.info(f'top2: {top2}')
+logger.info(f'top3: {top3}')
+logger.info(f'MM-dist (matching score) : {matching}')
diff --git a/get_latent.py b/get_latent.py
new file mode 100644
index 0000000000000000000000000000000000000000..8b5a5ffb41ba6c1cd6ba0196862898ea14270e94
--- /dev/null
+++ b/get_latent.py
@@ -0,0 +1,67 @@
+import os
+import torch
+import numpy as np
+
+from torch.utils.tensorboard import SummaryWriter
+from os.path import join as pjoin
+import json
+import models.tae as tae
+import options.option_tae as option_tae
+import utils.utils_model as utils_model
+from humanml3d_272 import dataset_tae_tokenizer
+import warnings
+from tqdm import tqdm
+warnings.filterwarnings('ignore')
+
+##### ---- Exp dirs ---- #####
+args = option_tae.get_args_parser()
+torch.manual_seed(args.seed)
+
+args.out_dir = os.path.join(args.out_dir, f'{args.exp_name}')
+os.makedirs(args.out_dir, exist_ok = True)
+
+##### ---- Logger ---- #####
+logger = utils_model.get_logger(args.out_dir)
+writer = SummaryWriter(args.out_dir)
+logger.info(json.dumps(vars(args), indent=4, sort_keys=True))
+
+##### ---- Dataloader ---- #####
+train_loader = dataset_tae_tokenizer.DATALoader(args.dataname)
+
+clip_range = [-30,20]
+
+net = tae.Causal_HumanTAE(
+ hidden_size=args.hidden_size,
+ down_t=args.down_t,
+ stride_t=args.stride_t,
+ depth=args.depth,
+ dilation_growth_rate=args.dilation_growth_rate,
+ activation='relu',
+ latent_dim=args.latent_dim,
+ clip_range=clip_range
+ )
+
+logger.info('loading checkpoint from {}'.format(args.resume_pth))
+ckpt = torch.load(args.resume_pth, map_location='cpu')
+net.load_state_dict(ckpt['net'], strict=True)
+net.eval()
+net.cuda()
+
+
+##### ---- get reference end latent ---- #####
+reference_end_pose = torch.zeros(1, 4, 272).cuda() # impossible pose prior
+reference_end_latent, _, _ = net.encode(reference_end_pose)
+reference_end_latent = reference_end_latent.permute(1,0)
+np.save(f'reference_end_latent_{args.dataname}.npy', reference_end_latent.cpu().detach().numpy())
+
+os.makedirs(args.latent_dir, exist_ok = True)
+
+for batch in tqdm(train_loader):
+ pose, name = batch
+ bs, seq = pose.shape[0], pose.shape[1]
+ pose = pose.cuda().float()
+ latent, _, _ = net.encode(pose)
+ latent = latent.permute(1,0)
+ latent = torch.cat([latent, reference_end_latent], dim=0)
+ latent = latent.cpu().detach().numpy()
+ np.save(pjoin(args.latent_dir, name[0] +'.npy'), latent)
diff --git a/humanml3d_272/__pycache__/dataset_TM_train_motionstreamer.cpython-39.pyc b/humanml3d_272/__pycache__/dataset_TM_train_motionstreamer.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a63b3a25fa8d7a6d298f8e0814b3706633917005
Binary files /dev/null and b/humanml3d_272/__pycache__/dataset_TM_train_motionstreamer.cpython-39.pyc differ
diff --git a/humanml3d_272/__pycache__/dataset_tae_tokenizer.cpython-39.pyc b/humanml3d_272/__pycache__/dataset_tae_tokenizer.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..13a71f6ed92d12bf221274608914b0cc3fcf7ef8
Binary files /dev/null and b/humanml3d_272/__pycache__/dataset_tae_tokenizer.cpython-39.pyc differ
diff --git a/humanml3d_272/dataset_TM_train.py b/humanml3d_272/dataset_TM_train.py
new file mode 100644
index 0000000000000000000000000000000000000000..4c88f6b6ae2e92686c4e4239dcce6f54e41c5ff9
--- /dev/null
+++ b/humanml3d_272/dataset_TM_train.py
@@ -0,0 +1,141 @@
+import torch
+from torch.utils import data
+import numpy as np
+from os.path import join as pjoin
+import random
+import codecs as cs
+from tqdm import tqdm
+import utils.paramUtil as paramUtil
+from torch.utils.data._utils.collate import default_collate
+import os
+
+def collate_fn(batch):
+ batch.sort(key=lambda x: x[2], reverse=True)
+ return default_collate(batch)
+
+
+'''For use of training text-2-motion generative model'''
+class Text2MotionDataset(data.Dataset):
+ def __init__(self, dataset_name, unit_length = 4, latent_dir=None):
+
+ self.max_length = 64
+ self.pointer = 0
+ self.dataset_name = dataset_name
+ self.unit_length = unit_length
+
+ if dataset_name == 't2m_272':
+ self.data_root = './humanml3d_272'
+ self.text_dir = pjoin(self.data_root, 'texts')
+ self.joints_num = 22
+ fps = 30
+ self.max_motion_length = 78
+ dim_pose = 272
+ split_file = pjoin(self.data_root, 'split', 'train.txt')
+
+ else:
+ raise ValueError(f"Dataset {dataset_name} not supported")
+
+ id_list = []
+ with cs.open(split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append(line.strip())
+
+ new_name_list = []
+ data_dict = {}
+ for name in tqdm(id_list):
+ try:
+ m_token_list = np.load(pjoin(latent_dir, '%s.npy'%name))
+ except:
+ continue
+
+ # Read text
+ with cs.open(pjoin(self.text_dir, name + '.txt')) as f:
+ text_data = []
+ flag = False
+ lines = f.readlines()
+
+ for line in lines:
+ text_dict = {}
+ line_split = line.strip().split('#')
+ caption = line_split[0]
+ t_tokens = line_split[1].split(' ')
+ f_tag = float(line_split[2])
+ to_tag = float(line_split[3])
+
+ f_tag = 0.0 if np.isnan(f_tag) else f_tag
+ to_tag = 0.0 if np.isnan(to_tag) else to_tag
+
+ text_dict['caption'] = caption
+ text_dict['tokens'] = t_tokens
+
+ if f_tag == 0.0 and to_tag == 0.0:
+ flag = True
+ text_data.append(text_dict)
+ else:
+ if int(f_tag*fps/unit_length) < int(to_tag*fps/unit_length):
+ m_token_list_new = [m_token_list[int(f_tag*fps/unit_length) : int(to_tag*fps/unit_length)]]
+
+ if len(m_token_list_new) == 0:
+ continue
+
+ new_name = '%s_%f_%f'%(name, f_tag, to_tag)
+
+ data_dict[new_name] = {'m_token_list': m_token_list_new,
+ 'text':[text_dict]}
+ new_name_list.append(new_name)
+
+ if flag:
+ data_dict[name] = {'m_token_list': m_token_list,
+ 'text':text_data}
+ new_name_list.append(name)
+
+ self.data_dict = data_dict
+ self.name_list = new_name_list
+
+ def __len__(self):
+ return len(self.data_dict)
+
+ def __getitem__(self, item):
+ data = self.data_dict[self.name_list[item]]
+ m_token_list, text_list = data['m_token_list'], data['text']
+ m_tokens = np.array(m_token_list)
+
+ text_data = random.choice(text_list)
+ caption= text_data['caption']
+
+ if len(m_tokens.shape) == 3:
+ m_tokens = m_tokens.squeeze(0)
+ coin = np.random.choice([False, False, True])
+ if coin:
+ coin2 = np.random.choice([True, False])
+ if coin2:
+ m_tokens = m_tokens[:-1]
+ else:
+ m_tokens = m_tokens[1:]
+ m_tokens_len = m_tokens.shape[0]
+
+ if m_tokens_len < self.max_motion_length:
+ m_tokens = np.concatenate([m_tokens, np.zeros((self.max_motion_length-m_tokens_len, m_tokens.shape[1]), dtype=int)], axis=0)
+ return caption, m_tokens, m_tokens_len
+
+
+
+
+def DATALoader(dataset_name,
+ batch_size, latent_dir, unit_length=4,
+ num_workers = 8) :
+
+ train_loader = torch.utils.data.DataLoader(Text2MotionDataset(dataset_name, latent_dir = latent_dir, unit_length=unit_length),
+ batch_size,
+ shuffle=True,
+ num_workers=num_workers,
+ drop_last = True)
+
+ return train_loader
+
+
+def cycle(iterable):
+ while True:
+ for x in iterable:
+ yield x
+
diff --git a/humanml3d_272/dataset_TM_train_motionstreamer.py b/humanml3d_272/dataset_TM_train_motionstreamer.py
new file mode 100644
index 0000000000000000000000000000000000000000..63bf22ef621e41a5e441f1ba213012ed7c37f6a9
--- /dev/null
+++ b/humanml3d_272/dataset_TM_train_motionstreamer.py
@@ -0,0 +1,175 @@
+import torch
+from torch.utils import data
+import numpy as np
+from os.path import join as pjoin
+import random
+import codecs as cs
+from tqdm import tqdm
+from torch.utils.data._utils.collate import default_collate
+import os
+
+def collate_fn(batch):
+ batch.sort(key=lambda x: x[3], reverse=True)
+ return default_collate(batch)
+
+
+class Text2MotionDataset(data.Dataset):
+ def __init__(self, dataset_name, unit_length = 4, latent_dir=None):
+
+ self.max_length = 64
+ self.pointer = 0
+ self.dataset_name = dataset_name
+ self.unit_length = unit_length
+
+ if dataset_name == 't2m_babel_272':
+ # Babel-272-stream data dir
+ self.babel_stream_data_root = './babel_272_stream'
+ self.babel_stream_text_dir = pjoin(self.babel_stream_data_root, 'train_stream_text')
+ fps = 30
+ self.max_motion_length = 78
+
+ # HumanML3D-272 data dir
+ self.hml_data_root = './humanml3d_272'
+ self.hml_text_dir = pjoin(self.hml_data_root, 'texts')
+
+ else:
+ raise ValueError(f'Invalid dataset name: {dataset_name}')
+
+ id_list = []
+
+ for file in os.listdir(latent_dir):
+ if file.endswith('.npy'):
+ id_list.append(file[:-4])
+
+ new_name_list = []
+ data_dict = {}
+ for name in tqdm(id_list):
+ m_token_list = np.load(pjoin(latent_dir, '%s.npy'%name))
+
+ if len(m_token_list) > self.max_motion_length:
+ continue
+
+ # Read text
+ if name.split('_')[0] == 'seq':
+ # Babel-272-stream
+ with cs.open(pjoin(self.babel_stream_text_dir, name + '.txt')) as f:
+ text_data = []
+ flag = False
+ lines = f.readlines()
+
+ for line in lines:
+ text_dict = {}
+ B_split = line.strip().split('*')[1].split('#')
+ B_text = line.strip().split('*')[1].split('#')[0]
+ if B_text == '':
+ continue
+ B_t_tokens = B_split[1].split(' ')
+ A_motion_length = B_split[-1]
+ A_token_length = int(A_motion_length) // unit_length
+ text_dict['caption'] = B_text
+ text_dict['tokens'] = B_t_tokens
+
+ flag = True
+ text_data.append(text_dict)
+
+ else:
+ # HumanML3D-272
+ with cs.open(pjoin(self.hml_text_dir, name + '.txt')) as f:
+ text_data = []
+ flag = False
+ lines = f.readlines()
+
+ for line in lines:
+ text_dict = {}
+
+ line_split = line.strip().split('#')
+ caption = line_split[0]
+
+ t_tokens = line_split[1].split(' ')
+ f_tag = float(line_split[2])
+ to_tag = float(line_split[3])
+
+ A_token_length = 0
+
+ f_tag = 0.0 if np.isnan(f_tag) else f_tag
+ to_tag = 0.0 if np.isnan(to_tag) else to_tag
+ text_dict['caption'] = caption
+ text_dict['tokens'] = t_tokens
+
+ if f_tag == 0.0 and to_tag == 0.0:
+ flag = True
+ text_data.append(text_dict)
+ else:
+ if int(f_tag*fps/unit_length) < int(to_tag*fps/unit_length):
+ m_token_list_new = [m_token_list[int(f_tag*fps/unit_length) : int(to_tag*fps/unit_length)]]
+
+ if len(m_token_list_new) == 0:
+ continue
+ new_name = '%s_%f_%f'%(name, f_tag, to_tag)
+
+ data_dict[new_name] = {'m_token_list': m_token_list_new,
+ 'text':[text_dict],
+ 'A_token_length': A_token_length
+ }
+ new_name_list.append(new_name)
+
+ if flag:
+
+ data_dict[name] = {'m_token_list': m_token_list,
+ 'text':text_data,
+ 'A_token_length': A_token_length
+ }
+ new_name_list.append(name)
+
+ self.data_dict = data_dict
+ self.name_list = new_name_list
+
+ def __len__(self):
+ return len(self.data_dict)
+
+ def __getitem__(self, item):
+ data = self.data_dict[self.name_list[item]]
+ m_token_list, text_list = data['m_token_list'], data['text']
+ m_tokens = np.array(m_token_list)
+
+
+ text_data = random.choice(text_list)
+ caption= text_data['caption']
+
+ if len(m_tokens.shape) == 3:
+ m_tokens = m_tokens.squeeze(0)
+
+
+ A_token_length = data['A_token_length']
+ m_tokens_len = m_tokens.shape[0]
+
+
+ if m_tokens_len < self.max_motion_length:
+ m_tokens = np.concatenate([m_tokens, np.zeros((self.max_motion_length - m_tokens_len, m_tokens.shape[1]), dtype=int)], axis=0)
+
+
+ return caption, m_tokens, m_tokens_len, A_token_length
+
+
+
+
+def DATALoader(dataset_name,
+ batch_size, unit_length=4,
+ num_workers = 8, latent_dir = None) :
+
+ train_loader = torch.utils.data.DataLoader(Text2MotionDataset(dataset_name, unit_length=unit_length, latent_dir=latent_dir),
+ batch_size,
+ shuffle=True,
+ num_workers=num_workers,
+ #collate_fn=collate_fn,
+ drop_last = True)
+
+
+ return train_loader
+
+
+def cycle(iterable):
+ while True:
+ for x in iterable:
+ yield x
+
diff --git a/humanml3d_272/dataset_eval_t2m.py b/humanml3d_272/dataset_eval_t2m.py
new file mode 100644
index 0000000000000000000000000000000000000000..289e2120da74b999f3bf3a39296181dd8f3a8dd1
--- /dev/null
+++ b/humanml3d_272/dataset_eval_t2m.py
@@ -0,0 +1,179 @@
+import torch
+from torch.utils import data
+import numpy as np
+from os.path import join as pjoin
+import random
+import codecs as cs
+from tqdm import tqdm
+import os
+import utils.paramUtil as paramUtil
+from torch.utils.data._utils.collate import default_collate
+
+
+def collate_fn(batch):
+ batch.sort(key=lambda x: x[2], reverse=True)
+ return default_collate(batch)
+
+
+class Text2MotionDataset(data.Dataset):
+ def __init__(self, dataset_name, is_test, max_text_len = 20, unit_length = 4):
+
+ self.max_length = 20
+ self.pointer = 0
+ self.dataset_name = dataset_name
+ self.is_test = is_test
+ self.max_text_len = max_text_len
+ self.unit_length = unit_length
+
+
+ if dataset_name == 't2m_272':
+ self.data_root = './humanml3d_272'
+ self.motion_dir = pjoin(self.data_root, 'motion_data')
+ self.text_dir = pjoin(self.data_root, 'texts')
+ self.joints_num = 22
+ self.max_motion_length = 300
+ fps = 30
+ self.meta_dir = './humanml3d_272/mean_std'
+ if is_test:
+ split_file = pjoin(self.data_root, 'split', 'test.txt')
+ else:
+ split_file = pjoin(self.data_root, 'split', 'val.txt')
+
+ mean = np.load(pjoin(self.meta_dir, 'Mean.npy'))
+ std = np.load(pjoin(self.meta_dir, 'Std.npy'))
+
+ min_motion_len = 60 # 30 fps
+
+ data_dict = {}
+ id_list = []
+
+
+ with cs.open(split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append(line.strip())
+
+ new_name_list = []
+ length_list = []
+
+
+ for name in tqdm(id_list):
+ motion = np.load(pjoin(self.motion_dir, name + '.npy'))
+ if (len(motion)) < min_motion_len or (len(motion) >= self.max_motion_length):
+ continue
+
+ text_data = []
+ flag = False
+ with cs.open(pjoin(self.text_dir, name + '.txt')) as f:
+ for line in f.readlines():
+ text_dict = {}
+ line_split = line.strip().split('#')
+ caption = line_split[0]
+ tokens = line_split[1].split(' ')
+ f_tag = float(line_split[2])
+ to_tag = float(line_split[3])
+
+ f_tag = 0.0 if np.isnan(f_tag) else f_tag
+ to_tag = 0.0 if np.isnan(to_tag) else to_tag
+
+ text_dict['caption'] = caption
+ text_dict['tokens'] = tokens
+
+ if f_tag == 0.0 and to_tag == 0.0:
+ flag = True
+ text_data.append(text_dict)
+ else:
+ n_motion = motion[int(f_tag*fps) : int(to_tag*fps)]
+ if (len(n_motion)) < min_motion_len or (len(n_motion) >= self.max_motion_length):
+ continue
+ new_name = random.choice('ABCDEFGHIJKLMNOPQRSTUVW') + '_' + name
+ while new_name in data_dict:
+ new_name = random.choice('ABCDEFGHIJKLMNOPQRSTUVW') + '_' + name
+ data_dict[new_name] = {'motion': n_motion,
+ 'length': len(n_motion),
+ 'text':[text_dict]}
+ new_name_list.append(new_name)
+ length_list.append(len(n_motion))
+
+
+ if flag:
+ data_dict[name] = {'motion': motion,
+ 'length': len(motion),
+ 'text': text_data}
+ new_name_list.append(name)
+ length_list.append(len(motion))
+
+
+ name_list, length_list = zip(*sorted(zip(new_name_list, length_list), key=lambda x: x[1]))
+ self.mean = mean
+ self.std = std
+ self.length_arr = np.array(length_list)
+ self.data_dict = data_dict
+ self.name_list = name_list
+ self.reset_max_len(self.max_length)
+
+ def reset_max_len(self, length):
+ assert length <= self.max_motion_length
+ self.pointer = np.searchsorted(self.length_arr, length)
+ print("Pointer Pointing at %d"%self.pointer)
+ self.max_length = length
+
+ def inv_transform(self, data):
+ return data * self.std + self.mean
+
+ def forward_transform(self, data):
+ return (data - self.mean) / self.std
+
+ def __len__(self):
+ return len(self.data_dict) - self.pointer
+
+ def __getitem__(self, item):
+ idx = self.pointer + item
+ name = self.name_list[idx]
+ data = self.data_dict[name]
+ motion, m_length, text_list = data['motion'], data['length'], data['text']
+ text_data = random.choice(text_list)
+ caption = text_data['caption']
+
+ if self.unit_length < 10:
+ coin2 = np.random.choice(['single', 'single', 'double'])
+ else:
+ coin2 = 'single'
+
+ if coin2 == 'double':
+ m_length = (m_length // self.unit_length - 1) * self.unit_length
+ elif coin2 == 'single':
+ m_length = (m_length // self.unit_length) * self.unit_length
+
+ idx = random.randint(0, len(motion) - m_length)
+ motion = motion[idx:idx+m_length]
+
+ #"Motion Normalization"
+ motion = (motion - self.mean) / self.std
+
+ if m_length < self.max_motion_length:
+ motion = np.concatenate([motion,
+ np.zeros((self.max_motion_length - m_length, motion.shape[1]))
+ ], axis=0)
+
+ return caption, motion, m_length
+
+
+
+
+def DATALoader(dataset_name, is_test,
+ batch_size,
+ num_workers = 64, unit_length = 4, drop_last=True) :
+
+ val_loader = torch.utils.data.DataLoader(Text2MotionDataset(dataset_name, is_test, unit_length=unit_length),
+ batch_size,
+ shuffle = True,
+ num_workers=num_workers,
+ collate_fn=collate_fn,
+ drop_last = drop_last)
+ return val_loader
+
+
+def cycle(iterable):
+ while True:
+ for x in iterable:
+ yield x
\ No newline at end of file
diff --git a/humanml3d_272/dataset_eval_tae.py b/humanml3d_272/dataset_eval_tae.py
new file mode 100644
index 0000000000000000000000000000000000000000..966682650c0b81ed54544e6c70bbcea4e0cff36f
--- /dev/null
+++ b/humanml3d_272/dataset_eval_tae.py
@@ -0,0 +1,179 @@
+import torch
+from torch.utils import data
+import numpy as np
+from os.path import join as pjoin
+import random
+import codecs as cs
+from tqdm import tqdm
+import os
+import utils.paramUtil as paramUtil
+from torch.utils.data._utils.collate import default_collate
+
+
+def collate_fn(batch):
+ batch.sort(key=lambda x: x[1], reverse=True)
+ return default_collate(batch)
+
+
+class Text2MotionDataset(data.Dataset):
+ def __init__(self, dataset_name, is_test, max_text_len = 20, unit_length = 4):
+
+ self.max_length = 20
+ self.pointer = 0
+ self.dataset_name = dataset_name
+ self.is_test = is_test
+ self.max_text_len = max_text_len
+ self.unit_length = unit_length
+
+
+ if dataset_name == 't2m_272':
+ self.data_root = './humanml3d_272'
+ self.motion_dir = pjoin(self.data_root, 'motion_data')
+ self.text_dir = pjoin(self.data_root, 'texts')
+ self.joints_num = 22
+ self.max_motion_length = 300
+ fps = 30
+ self.meta_dir = './humanml3d_272/mean_std'
+ if is_test:
+ split_file = pjoin(self.data_root, 'split', 'test.txt')
+ else:
+ split_file = pjoin(self.data_root, 'split', 'val.txt')
+ elif dataset_name == 't2m_babel_272':
+ # HumanML3D-272 data
+ self.hml_data_root = './humanml3d_272'
+ self.hml_motion_dir = pjoin(self.hml_data_root, 'motion_data')
+ if is_test:
+ hml_split_file = pjoin(self.hml_data_root, 'split', 'test.txt')
+ else:
+ hml_split_file = pjoin(self.hml_data_root, 'split', 'val.txt')
+
+ self.joints_num = 22
+ self.max_motion_length = 300
+ fps = 30
+
+ # Babel-272 data
+ self.babel_data_root = './babel_272'
+ self.babel_motion_dir = pjoin(self.babel_data_root, 'motion_data')
+ babel_split_file = pjoin(self.babel_data_root, 'split', 'val.txt')
+ self.meta_dir = pjoin(self.babel_data_root, 't2m_babel_mean_std')
+
+ mean = np.load(pjoin(self.meta_dir, 'Mean.npy'))
+ std = np.load(pjoin(self.meta_dir, 'Std.npy'))
+
+ min_motion_len = 60 # 30 fps
+
+ data_dict = {}
+ id_list = []
+
+ if dataset_name == 't2m_272':
+ with cs.open(split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append(line.strip())
+
+ elif dataset_name == 't2m_babel_272':
+ with cs.open(hml_split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append(line.strip())
+ with cs.open(babel_split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append('b_' + line.strip())
+
+ new_name_list = []
+ length_list = []
+
+
+ for name in tqdm(id_list):
+ try:
+ if dataset_name == 't2m_272':
+ motion = np.load(pjoin(self.motion_dir, name + '.npy'))
+ elif dataset_name == 't2m_babel_272':
+ if name.split('_')[0] == 'b':
+ motion = np.load(pjoin(self.babel_motion_dir, name.split('_')[1] + '.npy'))
+ else:
+ motion = np.load(pjoin(self.hml_motion_dir, name + '.npy'))
+
+ if (len(motion)) < min_motion_len or (len(motion) >= self.max_motion_length):
+ continue
+
+ data_dict[name] = {'motion': motion,
+ 'length': len(motion)
+ }
+ new_name_list.append(name)
+ length_list.append(len(motion))
+ except:
+ pass
+
+
+ name_list, length_list = zip(*sorted(zip(new_name_list, length_list), key=lambda x: x[1]))
+ self.mean = mean
+ self.std = std
+ self.length_arr = np.array(length_list)
+ self.data_dict = data_dict
+ self.name_list = name_list
+ self.reset_max_len(self.max_length)
+
+ def reset_max_len(self, length):
+ assert length <= self.max_motion_length
+ self.pointer = np.searchsorted(self.length_arr, length)
+ print("Pointer Pointing at %d"%self.pointer)
+ self.max_length = length
+
+ def inv_transform(self, data):
+ return data * self.std + self.mean
+
+ def forward_transform(self, data):
+ return (data - self.mean) / self.std
+
+ def __len__(self):
+ return len(self.data_dict) - self.pointer
+
+ def __getitem__(self, item):
+ idx = self.pointer + item
+ name = self.name_list[idx]
+ data = self.data_dict[name]
+ motion, m_length = data['motion'], data['length']
+
+
+ if self.unit_length < 10:
+ coin2 = np.random.choice(['single', 'single', 'double'])
+ else:
+ coin2 = 'single'
+
+ if coin2 == 'double':
+ m_length = (m_length // self.unit_length - 1) * self.unit_length
+ elif coin2 == 'single':
+ m_length = (m_length // self.unit_length) * self.unit_length
+
+ idx = random.randint(0, len(motion) - m_length)
+ motion = motion[idx:idx+m_length]
+
+ #"Motion Normalization"
+ motion = (motion - self.mean) / self.std
+
+ if m_length < self.max_motion_length:
+ motion = np.concatenate([motion,
+ np.zeros((self.max_motion_length - m_length, motion.shape[1]))
+ ], axis=0)
+
+ return motion, m_length
+
+
+
+
+def DATALoader(dataset_name, is_test,
+ batch_size,
+ num_workers = 64, unit_length = 4, drop_last=True) :
+
+ val_loader = torch.utils.data.DataLoader(Text2MotionDataset(dataset_name, is_test, unit_length=unit_length),
+ batch_size,
+ shuffle = True,
+ num_workers=num_workers,
+ collate_fn=collate_fn,
+ drop_last = drop_last)
+ return val_loader
+
+
+def cycle(iterable):
+ while True:
+ for x in iterable:
+ yield x
\ No newline at end of file
diff --git a/humanml3d_272/dataset_tae.py b/humanml3d_272/dataset_tae.py
new file mode 100644
index 0000000000000000000000000000000000000000..eaa5222196121089f2196f1fd063ca26f4bd131e
--- /dev/null
+++ b/humanml3d_272/dataset_tae.py
@@ -0,0 +1,132 @@
+import torch
+from torch.utils import data
+import numpy as np
+from os.path import join as pjoin
+import random
+import codecs as cs
+from tqdm import tqdm
+
+
+
+class MotionDataset(data.Dataset):
+ def __init__(self, dataset_name, window_size = 64, unit_length = 4):
+ self.window_size = window_size
+ self.unit_length = unit_length
+ self.dataset_name = dataset_name
+
+ if dataset_name == 't2m_272':
+ self.data_root = './humanml3d_272'
+ self.motion_dir = pjoin(self.data_root, 'motion_data')
+ self.text_dir = pjoin(self.data_root, 'texts')
+ self.joints_num = 22
+ self.max_motion_length = 300
+ self.meta_dir = pjoin(self.data_root, 'mean_std')
+ split_file = pjoin(self.data_root, 'split', 'train.txt')
+
+ elif dataset_name == 't2m_babel_272':
+ self.hml_data_root = './humanml3d_272'
+ self.hml_motion_dir = pjoin(self.hml_data_root, 'motion_data')
+ hml_split_file = pjoin(self.hml_data_root, 'split', 'train.txt')
+ self.joints_num = 22
+ self.max_motion_length = 300
+
+ self.babel_data_root = './babel_272'
+ self.babel_motion_dir = pjoin(self.babel_data_root, 'motion_data')
+ babel_split_file = pjoin(self.babel_data_root, 'split', 'train.txt')
+ self.meta_dir = pjoin(self.babel_data_root, 't2m_babel_mean_std')
+ else:
+ raise ValueError(f'Dataset {dataset_name} not found')
+
+ mean = np.load(pjoin(self.meta_dir, 'Mean.npy'))
+ std = np.load(pjoin(self.meta_dir, 'Std.npy'))
+
+ self.data = []
+ self.lengths = []
+ id_list = []
+
+ if dataset_name == 't2m_272':
+ with cs.open(split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append(line.strip())
+
+ elif dataset_name == 't2m_babel_272':
+ with cs.open(hml_split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append(line.strip())
+ with cs.open(babel_split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append('b_' + line.strip())
+
+ for name in tqdm(id_list):
+ try:
+ if dataset_name == 't2m_272':
+ motion = np.load(pjoin(self.motion_dir, name + '.npy'))
+ elif dataset_name == 't2m_babel_272':
+ if name.split('_')[0] == 'b':
+ # Babel-272
+ motion = np.load(pjoin(self.babel_motion_dir, name.split('_')[1] + '.npy'))
+ else:
+ # HumanML3D-272
+ motion = np.load(pjoin(self.hml_motion_dir, name + '.npy'))
+ else:
+ raise ValueError(f'Dataset {dataset_name} not found')
+
+ if motion.shape[0] < self.window_size:
+ continue
+ self.lengths.append(motion.shape[0] - self.window_size)
+ self.data.append(motion)
+ except:
+ pass
+
+ print(f'Training on {len(self.data)} motion sequences...')
+
+ self.mean = mean
+ self.std = std
+
+
+ def inv_transform(self, data):
+ return data * self.std + self.mean
+
+ def compute_sampling_prob(self) :
+
+ prob = np.array(self.lengths, dtype=np.float32)
+ prob /= np.sum(prob)
+ return prob
+
+ def __len__(self):
+ return len(self.data)
+
+ def __getitem__(self, item):
+ motion = self.data[item]
+
+ idx = random.randint(0, len(motion) - self.window_size)
+
+ motion = motion[idx:idx+self.window_size]
+ # Motion Normalization
+ motion = (motion - self.mean) / self.std
+
+ return motion
+
+def DATALoader(dataset_name,
+ batch_size,
+ num_workers = 64,
+ window_size = 64,
+ unit_length = 4):
+
+ trainSet = MotionDataset(dataset_name, window_size=window_size, unit_length=unit_length)
+ prob = trainSet.compute_sampling_prob()
+ sampler = torch.utils.data.WeightedRandomSampler(prob, num_samples = len(trainSet) * 1000, replacement=True)
+ train_loader = torch.utils.data.DataLoader(trainSet,
+ batch_size,
+ shuffle=True,
+ #sampler=sampler,
+ num_workers=num_workers,
+ #collate_fn=collate_fn,
+ drop_last = True)
+
+ return train_loader
+
+def cycle(iterable):
+ while True:
+ for x in iterable:
+ yield x
\ No newline at end of file
diff --git a/humanml3d_272/dataset_tae_tokenizer.py b/humanml3d_272/dataset_tae_tokenizer.py
new file mode 100644
index 0000000000000000000000000000000000000000..628760ed6583c64b9a734c918b5440911c7f87f8
--- /dev/null
+++ b/humanml3d_272/dataset_tae_tokenizer.py
@@ -0,0 +1,132 @@
+import torch
+from torch.utils import data
+import numpy as np
+from os.path import join as pjoin
+import random
+import codecs as cs
+from tqdm import tqdm
+import os
+
+
+class MotionDataset(data.Dataset):
+ def __init__(self, dataset_name, feat_bias = 5, window_size = 64, unit_length = 4):
+ self.window_size = window_size
+ self.unit_length = unit_length
+ self.feat_bias = feat_bias
+
+ self.dataset_name = dataset_name
+ min_motion_len = 40
+
+
+ if dataset_name == 't2m_272':
+ self.data_root = './humanml3d_272'
+ self.motion_dir = pjoin(self.data_root, 'motion_data')
+ self.meta_dir = pjoin(self.data_root, 'mean_std')
+ split_file = pjoin(self.data_root, 'split', 'train.txt')
+
+ elif dataset_name == 't2m_babel_272':
+ # HumanML3D-272 data dir
+ self.hml_data_root = './humanml3d_272'
+ self.hml_motion_dir = pjoin(self.hml_data_root, 'motion_data')
+ hml_split_file = pjoin(self.hml_data_root, 'split', 'train.txt')
+
+ # Babel-272-stream data dir
+ self.babel_stream_data_root = './babel_272_stream'
+ self.babel_stream_motion_dir = pjoin(self.babel_stream_data_root, 'train_stream')
+ self.meta_dir = './babel_272/t2m_babel_mean_std'
+
+ else:
+ raise ValueError(f"Invalid dataset name: {dataset_name}")
+
+
+ mean = np.load(pjoin(self.meta_dir, 'Mean.npy'))
+ std = np.load(pjoin(self.meta_dir, 'Std.npy'))
+
+ data_dict = {}
+ id_list = []
+
+ if dataset_name == 't2m_272':
+ with cs.open(split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append(line.strip())
+ elif dataset_name == 't2m_babel_272':
+ # HumanML3D-272 data
+ with cs.open(hml_split_file, 'r') as f:
+ for line in f.readlines():
+ id_list.append(line.strip())
+
+ # Babel-272-stream data
+ for file in os.listdir(self.babel_stream_motion_dir):
+ if file.endswith('.npy'):
+ id_list.append(file[:-4]) # seq_1, seq_2, ...
+
+ new_name_list = []
+ length_list = []
+ for name in tqdm(id_list):
+ try:
+ if dataset_name == 't2m_272':
+ motion = np.load(pjoin(self.motion_dir, name + '.npy'))
+ if (len(motion)) < min_motion_len:
+ continue
+ elif dataset_name == 't2m_babel_272':
+ if name.split('_')[0] == 'seq':
+ # seq_1, seq_2, ... (Babel-272-stream)
+ motion = np.load(pjoin(self.babel_stream_motion_dir, name + '.npy'))
+ else:
+ # (HumanML3D-272)
+ motion = np.load(pjoin(self.hml_motion_dir, name + '.npy'))
+ if (len(motion)) < min_motion_len:
+ continue
+
+ data_dict[name] = {'motion': motion,
+ 'length': len(motion),
+ 'name': name}
+ new_name_list.append(name)
+ length_list.append(len(motion))
+ except:
+ pass
+
+
+ self.mean = mean
+ self.std = std
+ self.length_arr = np.array(length_list)
+ self.data_dict = data_dict
+ self.name_list = new_name_list
+
+ def inv_transform(self, data):
+ return data * self.std + self.mean
+
+ def __len__(self):
+ return len(self.data_dict)
+
+ def __getitem__(self, item):
+ name = self.name_list[item]
+ data = self.data_dict[name]
+ motion, m_length = data['motion'], data['length']
+
+ m_length = (m_length // self.unit_length) * self.unit_length
+
+ idx = random.randint(0, len(motion) - m_length)
+ motion = motion[idx:idx+m_length]
+
+ # "Z Normalization"
+ motion = (motion - self.mean) / self.std
+
+ return motion, name
+
+def DATALoader(dataset_name,
+ batch_size = 1,
+ num_workers = 8, unit_length = 4) :
+
+ train_loader = torch.utils.data.DataLoader(MotionDataset(dataset_name, unit_length=unit_length),
+ batch_size,
+ shuffle=True,
+ num_workers=num_workers,
+ drop_last = True)
+
+ return train_loader
+
+def cycle(iterable):
+ while True:
+ for x in iterable:
+ yield x
\ No newline at end of file
diff --git a/humanml3d_272/mean_std/Mean.npy b/humanml3d_272/mean_std/Mean.npy
new file mode 100644
index 0000000000000000000000000000000000000000..83b1e4c10c7db0b87e227bc4aeed438c47d62478
--- /dev/null
+++ b/humanml3d_272/mean_std/Mean.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1200c165ac97501676de3a7f4e870ec4de23f579d6b1d63227d08a5c80ad1272
+size 2304
diff --git a/humanml3d_272/mean_std/Std.npy b/humanml3d_272/mean_std/Std.npy
new file mode 100644
index 0000000000000000000000000000000000000000..a8e27387c2bfd45599c6d3cd28e2854bcd78bee1
--- /dev/null
+++ b/humanml3d_272/mean_std/Std.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cb699c61755042e3b3c20e64723edf39f4b374cfd71f860efe9a4515f105d99c
+size 2304
diff --git a/humanml3d_272/motion_data.zip b/humanml3d_272/motion_data.zip
new file mode 100644
index 0000000000000000000000000000000000000000..9d30d8ec2400ce6601d6db9c78bb69554f04db29
--- /dev/null
+++ b/humanml3d_272/motion_data.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:39d92b459b83159c1e30bdca319f60389221b68301a1c3f1f70dbe3b3def05e5
+size 8355859664
diff --git a/humanml3d_272/prepare/download_Causal_TAE_t2m_272_ckpt.py b/humanml3d_272/prepare/download_Causal_TAE_t2m_272_ckpt.py
new file mode 100644
index 0000000000000000000000000000000000000000..bdf21ce46dd00b2ca46a953dc783cfa7a60592b5
--- /dev/null
+++ b/humanml3d_272/prepare/download_Causal_TAE_t2m_272_ckpt.py
@@ -0,0 +1,14 @@
+import os
+os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com'
+
+from huggingface_hub import snapshot_download
+
+snapshot_download(
+ repo_id="lxxiao/MotionStreamer",
+ repo_type="model",
+ local_dir="./",
+ allow_patterns=["Causal_TAE/*"],
+ local_dir_use_symlinks=False,
+ resume_download=True,
+ max_workers=8
+)
\ No newline at end of file
diff --git a/humanml3d_272/prepare/download_Causal_TAE_t2m_babel_272_ckpt.py b/humanml3d_272/prepare/download_Causal_TAE_t2m_babel_272_ckpt.py
new file mode 100644
index 0000000000000000000000000000000000000000..bfc101f0e11e3852cb76ce9fa1d4053941a3b9eb
--- /dev/null
+++ b/humanml3d_272/prepare/download_Causal_TAE_t2m_babel_272_ckpt.py
@@ -0,0 +1,14 @@
+import os
+os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com'
+
+from huggingface_hub import snapshot_download
+
+snapshot_download(
+ repo_id="lxxiao/MotionStreamer",
+ repo_type="model",
+ local_dir="./",
+ allow_patterns=["Causal_TAE_t2m_babel/*"],
+ local_dir_use_symlinks=False,
+ resume_download=True,
+ max_workers=8
+)
\ No newline at end of file
diff --git a/humanml3d_272/prepare/download_evaluator_ckpt.py b/humanml3d_272/prepare/download_evaluator_ckpt.py
new file mode 100644
index 0000000000000000000000000000000000000000..5c21478102886f4564eef74a3578fb851cae7c00
--- /dev/null
+++ b/humanml3d_272/prepare/download_evaluator_ckpt.py
@@ -0,0 +1,14 @@
+import os
+os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com'
+
+from huggingface_hub import snapshot_download
+
+snapshot_download(
+ repo_id="lxxiao/MotionStreamer",
+ repo_type="model",
+ local_dir="./",
+ allow_patterns=["Evaluator_272/*"],
+ local_dir_use_symlinks=False,
+ resume_download=True,
+ max_workers=8
+)
\ No newline at end of file
diff --git a/humanml3d_272/prepare/download_t2m_model_ckpt.py b/humanml3d_272/prepare/download_t2m_model_ckpt.py
new file mode 100644
index 0000000000000000000000000000000000000000..96490288b418e771719d1af2825e71dc1465ad08
--- /dev/null
+++ b/humanml3d_272/prepare/download_t2m_model_ckpt.py
@@ -0,0 +1,14 @@
+import os
+os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com'
+
+from huggingface_hub import snapshot_download
+
+snapshot_download(
+ repo_id="lxxiao/MotionStreamer",
+ repo_type="model",
+ local_dir="./",
+ allow_patterns=["Experiments/t2m_model/*"],
+ local_dir_use_symlinks=False,
+ resume_download=True,
+ max_workers=8
+)
\ No newline at end of file
diff --git a/humanml3d_272/split/test.txt b/humanml3d_272/split/test.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b2df9120885af1a6cb6b18a28e091fcd7f9f5d79
--- /dev/null
+++ b/humanml3d_272/split/test.txt
@@ -0,0 +1,4042 @@
+004822
+014457
+009613
+008463
+014160
+002530
+004945
+001969
+005799
+000749
+006658
+004124
+004965
+012805
+001168
+002246
+012506
+003424
+000787
+010665
+006518
+008399
+011997
+003245
+011978
+000021
+001783
+004488
+007543
+001486
+012657
+005213
+014477
+006652
+008664
+010962
+007742
+010940
+008292
+008131
+008320
+012498
+010915
+004388
+011441
+006701
+005188
+003784
+007561
+000818
+012883
+002139
+011673
+007767
+003566
+001632
+009958
+011684
+003005
+012309
+002606
+007862
+010720
+007450
+007995
+011988
+007779
+003450
+012529
+011028
+013812
+012361
+013207
+004040
+006521
+004394
+010819
+001448
+009867
+002104
+014351
+001888
+009377
+003111
+005278
+002627
+010792
+005197
+011213
+001059
+012143
+004311
+009161
+011363
+009539
+001120
+008006
+002795
+007597
+012622
+003575
+000073
+012388
+005485
+011385
+012484
+012968
+001262
+002302
+009521
+002240
+010552
+002951
+009184
+003350
+008887
+008052
+005277
+009689
+009199
+012584
+006236
+006733
+007715
+007999
+006944
+013549
+012673
+008967
+009405
+008207
+005274
+013632
+010254
+003779
+009968
+002323
+005106
+009031
+011595
+009910
+005555
+007286
+002473
+007628
+006828
+003696
+011075
+006627
+007889
+000421
+005935
+010248
+007301
+004366
+013735
+008317
+005854
+012280
+000389
+008597
+003095
+013514
+001589
+012625
+000026
+012985
+008177
+006774
+008060
+014077
+008157
+014295
+000076
+006199
+008343
+013849
+006442
+011632
+011645
+011343
+012167
+010546
+005375
+004720
+012215
+014311
+014512
+011717
+012558
+001211
+005697
+012798
+014171
+006756
+012340
+009437
+010810
+005352
+013610
+012021
+005932
+012577
+006755
+011136
+002718
+011095
+005851
+005596
+011731
+005399
+007940
+004180
+013745
+013911
+009977
+002522
+004083
+005477
+009075
+003142
+000679
+002517
+008354
+005668
+007280
+010195
+013654
+012158
+008032
+012310
+004742
+012925
+008360
+005141
+001592
+012046
+000827
+005729
+010639
+004568
+004873
+013278
+004292
+007878
+014205
+004854
+011055
+003331
+000348
+000633
+003440
+000534
+002078
+012761
+012098
+012981
+014436
+004957
+006123
+009768
+002662
+008610
+002312
+001840
+004222
+009511
+013777
+013619
+002055
+008801
+014283
+007318
+000565
+009022
+014565
+005937
+010439
+004991
+006512
+011652
+008966
+001538
+010549
+011643
+001179
+006648
+009816
+010586
+009220
+009709
+008105
+012238
+001029
+003780
+010142
+008009
+012308
+007811
+003179
+010785
+011463
+003973
+007828
+000865
+010076
+012032
+012393
+007549
+014336
+005471
+012567
+000476
+004668
+011630
+006121
+004424
+005152
+007411
+011985
+014252
+013157
+001675
+009996
+003881
+004322
+002070
+000000
+008998
+000815
+009283
+011991
+005981
+000208
+013316
+006814
+003027
+008152
+010189
+013352
+008603
+004164
+009096
+012515
+005583
+003437
+010039
+013757
+004988
+005636
+001008
+008620
+011935
+006089
+004157
+003013
+001014
+005229
+013373
+009941
+013451
+011127
+011534
+002103
+011892
+006263
+011307
+006426
+003278
+000207
+012437
+001281
+008266
+005638
+007893
+002733
+001520
+004293
+008378
+001313
+008493
+008861
+000324
+001214
+007598
+002049
+005139
+007191
+011458
+014087
+010161
+000266
+005537
+003677
+005407
+008877
+003997
+010443
+004154
+006058
+010616
+004473
+002870
+014093
+001003
+011825
+014214
+003190
+002388
+010547
+008740
+008708
+014420
+001772
+009291
+014613
+005813
+005425
+001976
+002486
+006852
+010445
+001624
+001347
+002754
+004264
+000889
+002168
+005087
+010843
+010270
+005818
+013586
+001330
+003423
+006853
+006759
+008775
+010909
+014046
+003104
+008835
+010739
+010576
+009703
+006724
+009238
+013855
+014557
+013736
+007679
+003765
+005519
+014387
+009485
+006101
+012365
+008363
+009084
+012385
+010828
+000104
+004679
+004499
+009233
+007933
+004336
+002245
+012587
+010617
+012400
+011594
+014389
+005550
+002122
+005266
+010298
+009402
+008707
+011806
+009841
+004338
+012675
+012679
+002471
+004602
+008084
+011682
+003430
+012735
+006806
+006245
+000687
+009273
+002404
+003886
+004540
+009903
+007384
+006213
+011181
+012691
+001664
+005698
+011210
+014123
+000327
+006686
+010110
+007503
+009714
+008505
+011805
+004865
+013164
+005712
+003062
+010956
+009519
+014361
+007540
+011972
+008518
+009566
+007405
+012277
+006068
+012753
+003613
+006699
+001691
+000600
+004904
+013768
+007291
+003268
+001359
+008170
+003108
+005156
+014444
+000780
+000153
+000954
+004037
+002651
+012856
+013000
+006332
+001209
+000759
+003547
+013871
+004808
+009979
+002445
+010343
+006371
+001249
+007970
+002024
+001882
+004844
+012668
+001738
+009351
+011438
+005084
+012020
+011257
+004863
+005589
+006979
+002597
+014541
+008692
+010658
+002304
+007890
+003934
+010895
+007418
+012716
+000921
+008725
+004240
+009209
+003877
+007428
+014192
+008053
+000253
+007232
+007041
+010409
+014139
+007567
+000519
+007121
+011965
+008338
+005951
+000909
+012555
+006501
+009710
+005180
+003486
+004332
+014310
+007689
+004235
+011406
+005312
+011897
+008592
+008474
+001801
+000820
+011284
+004853
+004414
+001861
+007126
+003138
+005747
+001808
+014307
+010080
+004297
+013417
+001952
+013289
+013648
+001038
+000580
+006235
+005759
+000576
+010432
+003723
+014272
+012362
+007886
+005790
+002247
+008208
+009730
+005920
+010967
+003481
+006687
+012905
+009890
+013798
+001759
+006531
+011863
+004695
+008888
+006573
+005396
+006576
+013253
+012578
+002919
+011683
+006215
+010651
+008310
+002235
+013426
+009880
+013023
+011493
+005946
+007193
+009252
+011906
+009354
+007975
+005468
+006117
+001705
+013675
+007551
+014431
+008082
+003105
+000862
+012399
+003703
+006630
+008936
+005250
+007666
+009561
+000715
+003195
+003494
+005833
+007095
+012741
+005803
+004446
+003596
+004120
+000847
+011289
+001349
+012069
+011767
+005741
+010784
+004504
+011841
+013602
+000239
+004823
+003255
+000088
+002761
+000905
+008900
+005037
+006620
+010026
+013122
+008088
+007559
+004759
+010588
+007750
+003077
+002514
+002868
+006967
+011211
+003321
+004307
+011827
+004601
+006205
+010157
+004153
+004275
+002574
+004817
+014607
+013046
+004870
+010114
+011397
+009517
+007676
+006640
+010600
+014305
+008312
+004411
+001082
+004458
+000475
+006546
+000556
+002178
+002272
+013652
+014588
+002399
+000640
+004698
+008371
+000313
+000374
+004947
+007134
+005433
+002976
+005869
+001315
+010141
+002842
+007089
+007409
+003224
+001723
+002668
+014326
+004790
+014232
+000613
+005891
+006163
+008489
+000934
+007037
+010512
+005481
+005142
+008141
+002755
+001437
+007630
+012250
+001768
+011558
+007607
+010529
+002542
+009986
+002897
+012302
+000091
+012720
+012041
+008381
+004444
+008614
+011757
+012321
+013255
+000629
+014472
+009332
+001999
+005787
+009459
+013471
+014244
+008458
+009716
+014342
+009790
+013476
+005458
+004906
+003823
+005321
+011295
+010745
+011356
+005933
+007946
+014109
+008633
+002459
+010233
+009671
+000304
+005728
+005617
+005232
+004319
+006186
+004736
+003721
+000358
+014604
+011567
+008542
+003227
+009908
+006036
+010160
+001603
+013350
+014554
+000067
+000285
+000063
+005009
+003039
+001425
+005628
+000130
+013003
+007822
+004490
+013031
+001648
+013641
+000552
+014279
+008216
+000114
+005465
+004852
+006312
+003603
+011687
+004819
+004621
+010072
+002259
+013778
+006306
+005674
+003685
+004619
+007612
+011653
+000486
+002876
+014448
+003483
+008556
+007355
+008383
+001428
+004545
+006836
+008904
+010286
+007496
+012240
+003942
+002315
+005531
+004043
+009373
+000246
+012371
+010618
+011430
+006644
+004176
+006258
+010525
+013294
+012877
+012686
+005722
+000343
+000710
+002483
+011339
+003926
+000022
+013222
+011035
+008174
+002403
+011323
+009478
+006145
+001755
+008002
+014200
+013963
+004206
+009777
+009287
+000750
+000160
+008944
+010996
+000700
+004276
+010342
+011937
+001250
+000178
+009148
+002635
+005672
+010315
+009488
+008782
+006433
+007896
+011004
+013695
+007216
+006053
+006694
+014012
+004495
+007617
+003782
+003937
+004776
+009991
+003017
+011569
+004303
+007255
+000680
+004702
+009626
+014612
+009992
+001577
+003954
+013440
+010199
+006033
+009137
+002383
+010817
+008296
+013007
+009216
+001636
+006992
+010642
+009579
+005968
+013388
+004517
+006337
+000813
+011255
+009441
+001182
+003584
+010752
+014185
+014352
+001617
+009072
+004553
+000048
+002357
+008275
+012993
+009455
+004090
+013952
+006290
+004290
+010736
+007818
+006912
+014428
+008565
+002848
+013846
+011280
+012670
+003761
+000974
+004977
+011809
+010850
+003740
+000439
+005639
+013057
+001919
+008025
+012813
+003729
+003463
+005793
+011812
+008939
+004867
+001161
+001009
+014049
+005413
+007659
+013512
+003541
+012084
+010116
+000824
+010183
+013636
+002932
+011566
+000507
+013633
+000306
+002749
+004645
+010706
+011743
+011484
+011904
+012454
+009123
+013475
+006549
+006006
+014499
+008837
+003116
+007812
+008696
+005347
+009654
+004455
+008588
+006212
+010919
+012782
+006457
+014110
+006477
+007941
+001695
+010226
+003712
+007626
+010282
+004574
+012355
+014535
+009171
+013980
+007102
+008069
+013927
+000118
+002572
+012992
+001676
+005744
+008955
+011777
+011435
+003800
+003752
+004688
+007708
+007283
+002453
+005308
+010280
+002784
+009400
+000886
+006712
+012543
+008560
+004680
+005296
+008774
+013071
+008077
+007149
+006514
+013597
+011755
+013415
+008970
+003441
+011334
+010558
+005221
+010698
+004960
+011091
+006949
+008720
+006819
+003790
+013182
+011864
+008162
+006172
+008759
+011589
+001332
+012602
+005904
+013190
+002900
+012168
+007610
+004095
+013638
+005202
+013974
+000571
+010499
+010928
+004268
+010637
+001598
+008598
+007157
+006390
+010795
+001384
+013978
+004364
+005163
+012290
+013700
+011144
+010898
+002772
+006420
+006204
+003491
+013068
+009098
+007824
+013050
+009181
+003858
+014304
+013468
+004068
+013449
+009383
+013419
+009771
+010526
+000066
+000825
+005540
+001270
+006246
+003432
+007772
+000337
+001218
+004443
+005761
+007281
+000696
+012645
+008367
+014285
+000106
+004377
+010945
+007240
+009727
+004317
+006575
+003645
+010509
+008191
+012639
+004273
+007655
+006726
+009942
+003692
+013444
+009493
+007444
+009926
+008567
+004075
+000019
+011073
+001848
+007027
+007451
+006741
+010495
+010317
+005404
+000781
+010003
+013174
+010671
+002661
+006762
+008232
+002550
+013075
+000717
+014392
+013343
+003814
+002950
+013154
+012398
+010917
+013004
+001843
+002108
+014194
+008457
+008173
+002192
+004320
+009432
+012300
+009945
+013647
+009852
+011226
+000872
+012117
+010878
+014039
+002781
+001931
+008583
+010043
+012655
+009150
+011555
+013753
+002223
+011222
+013765
+004652
+004818
+002209
+012579
+005356
+014020
+004719
+008934
+006844
+014536
+006014
+013562
+009562
+013668
+007354
+001203
+010703
+012306
+007251
+006709
+001647
+013454
+009338
+009187
+010193
+011074
+004102
+008559
+000998
+003664
+013567
+011823
+006281
+003174
+014051
+011629
+004166
+012870
+006871
+008905
+007756
+006735
+008276
+004299
+007695
+001527
+007001
+001467
+014021
+000972
+012956
+009924
+009449
+002495
+002317
+004350
+012094
+013568
+005050
+006610
+011732
+007693
+007352
+001278
+001851
+005751
+008179
+013754
+005676
+011146
+006251
+012611
+003592
+013703
+000115
+004973
+001307
+001285
+006765
+001176
+013125
+006577
+011504
+008144
+010327
+010648
+004428
+013689
+012099
+002470
+004033
+000638
+013403
+007550
+012127
+000612
+008349
+008730
+001438
+012833
+007516
+003582
+008291
+005166
+002824
+013579
+003439
+011252
+013981
+000904
+003339
+009954
+014380
+013056
+000339
+006185
+009135
+002798
+001419
+010223
+006473
+006065
+009331
+002160
+002460
+007924
+009410
+006494
+009477
+009645
+009584
+010897
+004556
+001725
+005069
+005147
+006568
+010068
+006784
+003669
+004158
+008147
+002544
+011224
+007454
+007209
+005522
+000307
+008500
+002091
+010150
+003301
+008205
+008824
+004098
+012789
+008704
+014268
+014496
+011811
+013336
+003807
+010126
+006987
+003171
+006674
+013601
+001485
+006839
+004851
+011813
+011046
+002578
+009251
+008284
+001453
+005726
+004724
+006631
+012527
+012423
+011608
+013339
+012118
+003962
+002582
+005439
+004779
+002888
+011993
+001548
+014603
+005031
+007820
+013249
+000352
+012942
+003193
+004067
+008862
+010759
+002685
+005300
+000472
+006005
+002352
+007949
+007572
+012930
+011573
+002928
+001770
+009355
+002531
+010938
+012200
+012791
+003785
+013719
+014007
+003902
+001298
+011026
+008159
+003379
+011223
+012644
+007554
+000926
+008822
+001981
+012414
+006481
+013469
+001275
+011471
+012087
+008016
+002573
+004117
+009399
+011442
+009349
+007246
+002252
+002954
+012343
+009462
+001005
+008235
+001534
+008668
+002750
+003540
+006343
+009643
+002982
+006718
+007678
+013344
+009059
+010995
+006133
+001483
+003812
+005364
+012324
+010905
+008843
+009917
+008087
+009443
+008902
+006385
+001457
+004163
+001983
+003151
+006662
+002149
+013221
+001171
+002332
+009577
+014169
+013112
+004544
+007776
+005469
+000665
+000350
+004912
+013587
+004346
+000296
+013573
+006214
+001473
+012941
+009303
+003897
+005376
+007581
+014574
+008100
+014025
+002093
+005119
+006272
+006888
+004521
+014247
+006567
+008697
+004745
+002397
+012023
+011207
+002087
+004555
+011447
+013423
+010823
+012595
+005052
+006137
+009625
+006692
+012235
+012049
+009717
+008653
+000792
+000268
+011797
+000597
+001436
+008851
+013511
+001113
+000086
+001640
+010797
+009041
+013558
+007423
+001083
+012060
+006705
+004749
+002242
+006314
+001835
+004063
+004183
+009600
+007706
+005621
+000363
+010496
+007131
+011332
+001454
+000903
+004733
+007806
+011162
+008431
+008114
+003831
+006986
+010447
+013474
+012793
+002364
+002280
+006980
+010148
+004412
+003991
+006177
+004975
+013898
+000704
+012488
+002171
+012616
+011716
+004050
+009831
+004864
+002656
+014416
+001775
+007097
+006118
+004940
+003900
+005199
+004270
+009877
+010032
+008057
+009244
+011834
+009554
+006106
+008755
+000708
+009712
+004811
+004284
+004008
+011340
+005610
+011189
+011798
+009445
+009901
+013998
+004398
+010456
+011640
+012492
+006693
+007644
+006840
+006331
+004122
+004110
+012601
+008339
+006095
+008315
+002647
+005077
+009972
+011158
+002799
+001225
+000302
+004318
+012561
+007436
+006432
+003751
+001282
+009871
+004997
+005955
+001352
+002277
+004707
+000419
+004518
+013634
+012264
+004605
+001897
+005504
+006061
+007165
+005826
+014506
+003689
+001782
+002741
+000099
+012892
+003857
+014445
+012559
+004015
+007314
+008498
+004708
+009749
+005033
+008871
+012005
+000379
+013208
+011351
+011184
+001463
+011668
+013411
+000085
+013160
+012189
+008803
+004192
+014010
+008117
+004968
+003149
+009762
+012337
+003373
+001406
+010384
+010492
+013833
+012001
+011359
+004560
+007675
+010874
+011583
+001614
+008352
+007585
+011402
+001533
+005457
+014215
+009776
+013389
+008139
+013728
+000429
+007625
+009077
+000274
+009849
+010037
+003859
+002707
+008449
+010557
+007199
+012495
+007971
+004432
+003771
+003365
+008691
+006383
+008840
+009212
+009001
+008517
+004281
+002712
+010143
+004146
+006132
+011317
+007085
+006570
+008828
+013561
+011694
+007399
+007514
+013905
+005607
+001169
+010553
+010964
+012282
+007007
+010441
+005039
+009961
+009905
+001789
+008282
+003539
+012330
+009946
+012554
+005217
+013646
+004354
+002106
+003849
+001193
+008953
+004344
+013088
+000523
+000299
+006389
+013286
+010046
+011785
+000876
+008055
+003762
+008388
+011342
+011550
+000320
+008429
+011412
+001420
+007359
+001821
+009720
+013382
+010816
+005561
+006041
+001523
+012195
+002658
+010145
+003191
+001380
+002789
+002770
+013806
+010167
+000055
+006210
+002382
+001859
+007365
+011379
+014002
+001086
+013665
+008910
+000189
+003119
+008694
+006533
+003653
+005048
+008014
+013371
+004439
+001152
+013969
+012837
+010520
+004438
+006378
+003020
+012320
+007020
+009960
+008739
+013314
+011607
+012132
+006454
+012145
+007523
+007888
+003537
+008927
+005092
+004573
+008357
+002074
+010545
+004472
+014043
+014222
+004734
+010007
+002931
+001320
+002318
+014088
+011793
+007556
+002492
+012219
+001906
+000497
+003472
+008443
+007322
+001369
+004562
+004012
+003763
+007573
+003638
+009666
+014108
+004007
+010773
+006249
+005445
+009556
+014072
+006304
+001752
+003868
+009289
+006351
+010305
+008256
+009773
+004331
+006295
+013130
+008528
+005472
+003783
+007171
+011101
+009302
+006357
+008238
+003910
+011491
+014384
+011014
+011372
+002769
+012568
+M004822
+M014457
+M009613
+M008463
+M014160
+M002530
+M004945
+M001969
+M005799
+M000749
+M006658
+M004124
+M004965
+M012805
+M001168
+M002246
+M012506
+M003424
+M000787
+M010665
+M006518
+M008399
+M011997
+M003245
+M011978
+M000021
+M001783
+M004488
+M007543
+M001486
+M012657
+M005213
+M014477
+M006652
+M008664
+M010962
+M007742
+M010940
+M008292
+M008131
+M008320
+M012498
+M010915
+M004388
+M011441
+M006701
+M005188
+M003784
+M007561
+M000818
+M012883
+M002139
+M011673
+M007767
+M003566
+M001632
+M009958
+M011684
+M003005
+M012309
+M002606
+M007862
+M010720
+M007450
+M007995
+M011988
+M007779
+M003450
+M012529
+M011028
+M013812
+M012361
+M013207
+M004040
+M006521
+M004394
+M010819
+M001448
+M009867
+M002104
+M014351
+M001888
+M009377
+M003111
+M005278
+M002627
+M010792
+M005197
+M011213
+M001059
+M012143
+M004311
+M009161
+M011363
+M009539
+M001120
+M008006
+M002795
+M007597
+M012622
+M003575
+M000073
+M012388
+M005485
+M011385
+M012484
+M012968
+M001262
+M002302
+M009521
+M002240
+M010552
+M002951
+M009184
+M003350
+M008887
+M008052
+M005277
+M009689
+M009199
+M012584
+M006236
+M006733
+M007715
+M007999
+M006944
+M013549
+M012673
+M008967
+M009405
+M008207
+M005274
+M013632
+M010254
+M003779
+M009968
+M002323
+M005106
+M009031
+M011595
+M009910
+M005555
+M007286
+M002473
+M007628
+M006828
+M003696
+M011075
+M006627
+M007889
+M000421
+M005935
+M010248
+M007301
+M004366
+M013735
+M008317
+M005854
+M012280
+M000389
+M008597
+M003095
+M013514
+M001589
+M012625
+M000026
+M012985
+M008177
+M006774
+M008060
+M014077
+M008157
+M014295
+M000076
+M006199
+M008343
+M013849
+M006442
+M011632
+M011645
+M011343
+M012167
+M010546
+M005375
+M004720
+M012215
+M014311
+M014512
+M011717
+M012558
+M001211
+M005697
+M012798
+M014171
+M006756
+M012340
+M009437
+M010810
+M005352
+M013610
+M012021
+M005932
+M012577
+M006755
+M011136
+M002718
+M011095
+M005851
+M005596
+M011731
+M005399
+M007940
+M004180
+M013745
+M013911
+M009977
+M002522
+M004083
+M005477
+M009075
+M003142
+M000679
+M002517
+M008354
+M005668
+M007280
+M010195
+M013654
+M012158
+M008032
+M012310
+M004742
+M012925
+M008360
+M005141
+M001592
+M012046
+M000827
+M005729
+M010639
+M004568
+M004873
+M013278
+M004292
+M007878
+M014205
+M004854
+M011055
+M003331
+M000348
+M000633
+M003440
+M000534
+M002078
+M012761
+M012098
+M012981
+M014436
+M004957
+M006123
+M009768
+M002662
+M008610
+M002312
+M001840
+M004222
+M009511
+M013777
+M013619
+M002055
+M008801
+M014283
+M007318
+M000565
+M009022
+M014565
+M005937
+M010439
+M004991
+M006512
+M011652
+M008966
+M001538
+M010549
+M011643
+M001179
+M006648
+M009816
+M010586
+M009220
+M009709
+M008105
+M012238
+M001029
+M003780
+M010142
+M008009
+M012308
+M007811
+M003179
+M010785
+M011463
+M003973
+M007828
+M000865
+M010076
+M012032
+M012393
+M007549
+M014336
+M005471
+M012567
+M000476
+M004668
+M011630
+M006121
+M004424
+M005152
+M007411
+M011985
+M014252
+M013157
+M001675
+M009996
+M003881
+M004322
+M002070
+M000000
+M008998
+M000815
+M009283
+M011991
+M005981
+M000208
+M013316
+M006814
+M003027
+M008152
+M010189
+M013352
+M008603
+M004164
+M009096
+M012515
+M005583
+M003437
+M010039
+M013757
+M004988
+M005636
+M001008
+M008620
+M011935
+M006089
+M004157
+M003013
+M001014
+M005229
+M013373
+M009941
+M013451
+M011127
+M011534
+M002103
+M011892
+M006263
+M011307
+M006426
+M003278
+M000207
+M012437
+M001281
+M008266
+M005638
+M007893
+M002733
+M001520
+M004293
+M008378
+M001313
+M008493
+M008861
+M000324
+M001214
+M007598
+M002049
+M005139
+M007191
+M011458
+M014087
+M010161
+M000266
+M005537
+M003677
+M005407
+M008877
+M003997
+M010443
+M004154
+M006058
+M010616
+M004473
+M002870
+M014093
+M001003
+M011825
+M014214
+M003190
+M002388
+M010547
+M008740
+M008708
+M014420
+M001772
+M009291
+M014613
+M005813
+M005425
+M001976
+M002486
+M006852
+M010445
+M001624
+M001347
+M002754
+M004264
+M000889
+M002168
+M005087
+M010843
+M010270
+M005818
+M013586
+M001330
+M003423
+M006853
+M006759
+M008775
+M010909
+M014046
+M003104
+M008835
+M010739
+M010576
+M009703
+M006724
+M009238
+M013855
+M014557
+M013736
+M007679
+M003765
+M005519
+M014387
+M009485
+M006101
+M012365
+M008363
+M009084
+M012385
+M010828
+M000104
+M004679
+M004499
+M009233
+M007933
+M004336
+M002245
+M012587
+M010617
+M012400
+M011594
+M014389
+M005550
+M002122
+M005266
+M010298
+M009402
+M008707
+M011806
+M009841
+M004338
+M012675
+M012679
+M002471
+M004602
+M008084
+M011682
+M003430
+M012735
+M006806
+M006245
+M000687
+M009273
+M002404
+M003886
+M004540
+M009903
+M007384
+M006213
+M011181
+M012691
+M001664
+M005698
+M011210
+M014123
+M000327
+M006686
+M010110
+M007503
+M009714
+M008505
+M011805
+M004865
+M013164
+M005712
+M003062
+M010956
+M009519
+M014361
+M007540
+M011972
+M008518
+M009566
+M007405
+M012277
+M006068
+M012753
+M003613
+M006699
+M001691
+M000600
+M004904
+M013768
+M007291
+M003268
+M001359
+M008170
+M003108
+M005156
+M014444
+M000780
+M000153
+M000954
+M004037
+M002651
+M012856
+M013000
+M006332
+M001209
+M000759
+M003547
+M013871
+M004808
+M009979
+M002445
+M010343
+M006371
+M001249
+M007970
+M002024
+M001882
+M004844
+M012668
+M001738
+M009351
+M011438
+M005084
+M012020
+M011257
+M004863
+M005589
+M006979
+M002597
+M014541
+M008692
+M010658
+M002304
+M007890
+M003934
+M010895
+M007418
+M012716
+M000921
+M008725
+M004240
+M009209
+M003877
+M007428
+M014192
+M008053
+M000253
+M007232
+M007041
+M010409
+M014139
+M007567
+M000519
+M007121
+M011965
+M008338
+M005951
+M000909
+M012555
+M006501
+M009710
+M005180
+M003486
+M004332
+M014310
+M007689
+M004235
+M011406
+M005312
+M011897
+M008592
+M008474
+M001801
+M000820
+M011284
+M004853
+M004414
+M001861
+M007126
+M003138
+M005747
+M001808
+M014307
+M010080
+M004297
+M013417
+M001952
+M013289
+M013648
+M001038
+M000580
+M006235
+M005759
+M000576
+M010432
+M003723
+M014272
+M012362
+M007886
+M005790
+M002247
+M008208
+M009730
+M005920
+M010967
+M003481
+M006687
+M012905
+M009890
+M013798
+M001759
+M006531
+M011863
+M004695
+M008888
+M006573
+M005396
+M006576
+M013253
+M012578
+M002919
+M011683
+M006215
+M010651
+M008310
+M002235
+M013426
+M009880
+M013023
+M011493
+M005946
+M007193
+M009252
+M011906
+M009354
+M007975
+M005468
+M006117
+M001705
+M013675
+M007551
+M014431
+M008082
+M003105
+M000862
+M012399
+M003703
+M006630
+M008936
+M005250
+M007666
+M009561
+M000715
+M003195
+M003494
+M005833
+M007095
+M012741
+M005803
+M004446
+M003596
+M004120
+M000847
+M011289
+M001349
+M012069
+M011767
+M005741
+M010784
+M004504
+M011841
+M013602
+M000239
+M004823
+M003255
+M000088
+M002761
+M000905
+M008900
+M005037
+M006620
+M010026
+M013122
+M008088
+M007559
+M004759
+M010588
+M007750
+M003077
+M002514
+M002868
+M006967
+M011211
+M003321
+M004307
+M011827
+M004601
+M006205
+M010157
+M004153
+M004275
+M002574
+M004817
+M014607
+M013046
+M004870
+M010114
+M011397
+M009517
+M007676
+M006640
+M010600
+M014305
+M008312
+M004411
+M001082
+M004458
+M000475
+M006546
+M000556
+M002178
+M002272
+M013652
+M014588
+M002399
+M000640
+M004698
+M008371
+M000313
+M000374
+M004947
+M007134
+M005433
+M002976
+M005869
+M001315
+M010141
+M002842
+M007089
+M007409
+M003224
+M001723
+M002668
+M014326
+M004790
+M014232
+M000613
+M005891
+M006163
+M008489
+M000934
+M007037
+M010512
+M005481
+M005142
+M008141
+M002755
+M001437
+M007630
+M012250
+M001768
+M011558
+M007607
+M010529
+M002542
+M009986
+M002897
+M012302
+M000091
+M012720
+M012041
+M008381
+M004444
+M008614
+M011757
+M012321
+M013255
+M000629
+M014472
+M009332
+M001999
+M005787
+M009459
+M013471
+M014244
+M008458
+M009716
+M014342
+M009790
+M013476
+M005458
+M004906
+M003823
+M005321
+M011295
+M010745
+M011356
+M005933
+M007946
+M014109
+M008633
+M002459
+M010233
+M009671
+M000304
+M005728
+M005617
+M005232
+M004319
+M006186
+M004736
+M003721
+M000358
+M014604
+M011567
+M008542
+M003227
+M009908
+M006036
+M010160
+M001603
+M013350
+M014554
+M000067
+M000285
+M000063
+M005009
+M003039
+M001425
+M005628
+M000130
+M013003
+M007822
+M004490
+M013031
+M001648
+M013641
+M000552
+M014279
+M008216
+M000114
+M005465
+M004852
+M006312
+M003603
+M011687
+M004819
+M004621
+M010072
+M002259
+M013778
+M006306
+M005674
+M003685
+M004619
+M007612
+M011653
+M000486
+M002876
+M014448
+M003483
+M008556
+M007355
+M008383
+M001428
+M004545
+M006836
+M008904
+M010286
+M007496
+M012240
+M003942
+M002315
+M005531
+M004043
+M009373
+M000246
+M012371
+M010618
+M011430
+M006644
+M004176
+M006258
+M010525
+M013294
+M012877
+M012686
+M005722
+M000343
+M000710
+M002483
+M011339
+M003926
+M000022
+M013222
+M011035
+M008174
+M002403
+M011323
+M009478
+M006145
+M001755
+M008002
+M014200
+M013963
+M004206
+M009777
+M009287
+M000750
+M000160
+M008944
+M010996
+M000700
+M004276
+M010342
+M011937
+M001250
+M000178
+M009148
+M002635
+M005672
+M010315
+M009488
+M008782
+M006433
+M007896
+M011004
+M013695
+M007216
+M006053
+M006694
+M014012
+M004495
+M007617
+M003782
+M003937
+M004776
+M009991
+M003017
+M011569
+M004303
+M007255
+M000680
+M004702
+M009626
+M014612
+M009992
+M001577
+M003954
+M013440
+M010199
+M006033
+M009137
+M002383
+M010817
+M008296
+M013007
+M009216
+M001636
+M006992
+M010642
+M009579
+M005968
+M013388
+M004517
+M006337
+M000813
+M011255
+M009441
+M001182
+M003584
+M010752
+M014185
+M014352
+M001617
+M009072
+M004553
+M000048
+M002357
+M008275
+M012993
+M009455
+M004090
+M013952
+M006290
+M004290
+M010736
+M007818
+M006912
+M014428
+M008565
+M002848
+M013846
+M011280
+M012670
+M003761
+M000974
+M004977
+M011809
+M010850
+M003740
+M000439
+M005639
+M013057
+M001919
+M008025
+M012813
+M003729
+M003463
+M005793
+M011812
+M008939
+M004867
+M001161
+M001009
+M014049
+M005413
+M007659
+M013512
+M003541
+M012084
+M010116
+M000824
+M010183
+M013636
+M002932
+M011566
+M000507
+M013633
+M000306
+M002749
+M004645
+M010706
+M011743
+M011484
+M011904
+M012454
+M009123
+M013475
+M006549
+M006006
+M014499
+M008837
+M003116
+M007812
+M008696
+M005347
+M009654
+M004455
+M008588
+M006212
+M010919
+M012782
+M006457
+M014110
+M006477
+M007941
+M001695
+M010226
+M003712
+M007626
+M010282
+M004574
+M012355
+M014535
+M009171
+M013980
+M007102
+M008069
+M013927
+M000118
+M002572
+M012992
+M001676
+M005744
+M008955
+M011777
+M011435
+M003800
+M003752
+M004688
+M007708
+M007283
+M002453
+M005308
+M010280
+M002784
+M009400
+M000886
+M006712
+M012543
+M008560
+M004680
+M005296
+M008774
+M013071
+M008077
+M007149
+M006514
+M013597
+M011755
+M013415
+M008970
+M003441
+M011334
+M010558
+M005221
+M010698
+M004960
+M011091
+M006949
+M008720
+M006819
+M003790
+M013182
+M011864
+M008162
+M006172
+M008759
+M011589
+M001332
+M012602
+M005904
+M013190
+M002900
+M012168
+M007610
+M004095
+M013638
+M005202
+M013974
+M000571
+M010499
+M010928
+M004268
+M010637
+M001598
+M008598
+M007157
+M006390
+M010795
+M001384
+M013978
+M004364
+M005163
+M012290
+M013700
+M011144
+M010898
+M002772
+M006420
+M006204
+M003491
+M013068
+M009098
+M007824
+M013050
+M009181
+M003858
+M014304
+M013468
+M004068
+M013449
+M009383
+M013419
+M009771
+M010526
+M000066
+M000825
+M005540
+M001270
+M006246
+M003432
+M007772
+M000337
+M001218
+M004443
+M005761
+M007281
+M000696
+M012645
+M008367
+M014285
+M000106
+M004377
+M010945
+M007240
+M009727
+M004317
+M006575
+M003645
+M010509
+M008191
+M012639
+M004273
+M007655
+M006726
+M009942
+M003692
+M013444
+M009493
+M007444
+M009926
+M008567
+M004075
+M000019
+M011073
+M001848
+M007027
+M007451
+M006741
+M010495
+M010317
+M005404
+M000781
+M010003
+M013174
+M010671
+M002661
+M006762
+M008232
+M002550
+M013075
+M000717
+M014392
+M013343
+M003814
+M002950
+M013154
+M012398
+M010917
+M013004
+M001843
+M002108
+M014194
+M008457
+M008173
+M002192
+M004320
+M009432
+M012300
+M009945
+M013647
+M009852
+M011226
+M000872
+M012117
+M010878
+M014039
+M002781
+M001931
+M008583
+M010043
+M012655
+M009150
+M011555
+M013753
+M002223
+M011222
+M013765
+M004652
+M004818
+M002209
+M012579
+M005356
+M014020
+M004719
+M008934
+M006844
+M014536
+M006014
+M013562
+M009562
+M013668
+M007354
+M001203
+M010703
+M012306
+M007251
+M006709
+M001647
+M013454
+M009338
+M009187
+M010193
+M011074
+M004102
+M008559
+M000998
+M003664
+M013567
+M011823
+M006281
+M003174
+M014051
+M011629
+M004166
+M012870
+M006871
+M008905
+M007756
+M006735
+M008276
+M004299
+M007695
+M001527
+M007001
+M001467
+M014021
+M000972
+M012956
+M009924
+M009449
+M002495
+M002317
+M004350
+M012094
+M013568
+M005050
+M006610
+M011732
+M007693
+M007352
+M001278
+M001851
+M005751
+M008179
+M013754
+M005676
+M011146
+M006251
+M012611
+M003592
+M013703
+M000115
+M004973
+M001307
+M001285
+M006765
+M001176
+M013125
+M006577
+M011504
+M008144
+M010327
+M010648
+M004428
+M013689
+M012099
+M002470
+M004033
+M000638
+M013403
+M007550
+M012127
+M000612
+M008349
+M008730
+M001438
+M012833
+M007516
+M003582
+M008291
+M005166
+M002824
+M013579
+M003439
+M011252
+M013981
+M000904
+M003339
+M009954
+M014380
+M013056
+M000339
+M006185
+M009135
+M002798
+M001419
+M010223
+M006473
+M006065
+M009331
+M002160
+M002460
+M007924
+M009410
+M006494
+M009477
+M009645
+M009584
+M010897
+M004556
+M001725
+M005069
+M005147
+M006568
+M010068
+M006784
+M003669
+M004158
+M008147
+M002544
+M011224
+M007454
+M007209
+M005522
+M000307
+M008500
+M002091
+M010150
+M003301
+M008205
+M008824
+M004098
+M012789
+M008704
+M014268
+M014496
+M011811
+M013336
+M003807
+M010126
+M006987
+M003171
+M006674
+M013601
+M001485
+M006839
+M004851
+M011813
+M011046
+M002578
+M009251
+M008284
+M001453
+M005726
+M004724
+M006631
+M012527
+M012423
+M011608
+M013339
+M012118
+M003962
+M002582
+M005439
+M004779
+M002888
+M011993
+M001548
+M014603
+M005031
+M007820
+M013249
+M000352
+M012942
+M003193
+M004067
+M008862
+M010759
+M002685
+M005300
+M000472
+M006005
+M002352
+M007949
+M007572
+M012930
+M011573
+M002928
+M001770
+M009355
+M002531
+M010938
+M012200
+M012791
+M003785
+M013719
+M014007
+M003902
+M001298
+M011026
+M008159
+M003379
+M011223
+M012644
+M007554
+M000926
+M008822
+M001981
+M012414
+M006481
+M013469
+M001275
+M011471
+M012087
+M008016
+M002573
+M004117
+M009399
+M011442
+M009349
+M007246
+M002252
+M002954
+M012343
+M009462
+M001005
+M008235
+M001534
+M008668
+M002750
+M003540
+M006343
+M009643
+M002982
+M006718
+M007678
+M013344
+M009059
+M010995
+M006133
+M001483
+M003812
+M005364
+M012324
+M010905
+M008843
+M009917
+M008087
+M009443
+M008902
+M006385
+M001457
+M004163
+M001983
+M003151
+M006662
+M002149
+M013221
+M001171
+M002332
+M009577
+M014169
+M013112
+M004544
+M007776
+M005469
+M000665
+M000350
+M004912
+M013587
+M004346
+M000296
+M013573
+M006214
+M001473
+M012941
+M009303
+M003897
+M005376
+M007581
+M014574
+M008100
+M014025
+M002093
+M005119
+M006272
+M006888
+M004521
+M014247
+M006567
+M008697
+M004745
+M002397
+M012023
+M011207
+M002087
+M004555
+M011447
+M013423
+M010823
+M012595
+M005052
+M006137
+M009625
+M006692
+M012235
+M012049
+M009717
+M008653
+M000792
+M000268
+M011797
+M000597
+M001436
+M008851
+M013511
+M001113
+M000086
+M001640
+M010797
+M009041
+M013558
+M007423
+M001083
+M012060
+M006705
+M004749
+M002242
+M006314
+M001835
+M004063
+M004183
+M009600
+M007706
+M005621
+M000363
+M010496
+M007131
+M011332
+M001454
+M000903
+M004733
+M007806
+M011162
+M008431
+M008114
+M003831
+M006986
+M010447
+M013474
+M012793
+M002364
+M002280
+M006980
+M010148
+M004412
+M003991
+M006177
+M004975
+M013898
+M000704
+M012488
+M002171
+M012616
+M011716
+M004050
+M009831
+M004864
+M002656
+M014416
+M001775
+M007097
+M006118
+M004940
+M003900
+M005199
+M004270
+M009877
+M010032
+M008057
+M009244
+M011834
+M009554
+M006106
+M008755
+M000708
+M009712
+M004811
+M004284
+M004008
+M011340
+M005610
+M011189
+M011798
+M009445
+M009901
+M013998
+M004398
+M010456
+M011640
+M012492
+M006693
+M007644
+M006840
+M006331
+M004122
+M004110
+M012601
+M008339
+M006095
+M008315
+M002647
+M005077
+M009972
+M011158
+M002799
+M001225
+M000302
+M004318
+M012561
+M007436
+M006432
+M003751
+M001282
+M009871
+M004997
+M005955
+M001352
+M002277
+M004707
+M000419
+M004518
+M013634
+M012264
+M004605
+M001897
+M005504
+M006061
+M007165
+M005826
+M014506
+M003689
+M001782
+M002741
+M000099
+M012892
+M003857
+M014445
+M012559
+M004015
+M007314
+M008498
+M004708
+M009749
+M005033
+M008871
+M012005
+M000379
+M013208
+M011351
+M011184
+M001463
+M011668
+M013411
+M000085
+M013160
+M012189
+M008803
+M004192
+M014010
+M008117
+M004968
+M003149
+M009762
+M012337
+M003373
+M001406
+M010384
+M010492
+M013833
+M012001
+M011359
+M004560
+M007675
+M010874
+M011583
+M001614
+M008352
+M007585
+M011402
+M001533
+M005457
+M014215
+M009776
+M013389
+M008139
+M013728
+M000429
+M007625
+M009077
+M000274
+M009849
+M010037
+M003859
+M002707
+M008449
+M010557
+M007199
+M012495
+M007971
+M004432
+M003771
+M003365
+M008691
+M006383
+M008840
+M009212
+M009001
+M008517
+M004281
+M002712
+M010143
+M004146
+M006132
+M011317
+M007085
+M006570
+M008828
+M013561
+M011694
+M007399
+M007514
+M013905
+M005607
+M001169
+M010553
+M010964
+M012282
+M007007
+M010441
+M005039
+M009961
+M009905
+M001789
+M008282
+M003539
+M012330
+M009946
+M012554
+M005217
+M013646
+M004354
+M002106
+M003849
+M001193
+M008953
+M004344
+M013088
+M000523
+M000299
+M006389
+M013286
+M010046
+M011785
+M000876
+M008055
+M003762
+M008388
+M011342
+M011550
+M000320
+M008429
+M011412
+M001420
+M007359
+M001821
+M009720
+M013382
+M010816
+M005561
+M006041
+M001523
+M012195
+M002658
+M010145
+M003191
+M001380
+M002789
+M002770
+M013806
+M010167
+M000055
+M006210
+M002382
+M001859
+M007365
+M011379
+M014002
+M001086
+M013665
+M008910
+M000189
+M003119
+M008694
+M006533
+M003653
+M005048
+M008014
+M013371
+M004439
+M001152
+M013969
+M012837
+M010520
+M004438
+M006378
+M003020
+M012320
+M007020
+M009960
+M008739
+M013314
+M011607
+M012132
+M006454
+M012145
+M007523
+M007888
+M003537
+M008927
+M005092
+M004573
+M008357
+M002074
+M010545
+M004472
+M014043
+M014222
+M004734
+M010007
+M002931
+M001320
+M002318
+M014088
+M011793
+M007556
+M002492
+M012219
+M001906
+M000497
+M003472
+M008443
+M007322
+M001369
+M004562
+M004012
+M003763
+M007573
+M003638
+M009666
+M014108
+M004007
+M010773
+M006249
+M005445
+M009556
+M014072
+M006304
+M001752
+M003868
+M009289
+M006351
+M010305
+M008256
+M009773
+M004331
+M006295
+M013130
+M008528
+M005472
+M003783
+M007171
+M011101
+M009302
+M006357
+M008238
+M003910
+M011491
+M014384
+M011014
+M011372
+M002769
+M012568
\ No newline at end of file
diff --git a/humanml3d_272/split/train.txt b/humanml3d_272/split/train.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ea01c6654d94a8a1537f3d44c112bbe7e7f5f6e6
--- /dev/null
+++ b/humanml3d_272/split/train.txt
@@ -0,0 +1,23384 @@
+000001
+000002
+000003
+000004
+000005
+000006
+000007
+000008
+000009
+000010
+000011
+000012
+000013
+000014
+000015
+000017
+000018
+000020
+000023
+000025
+000027
+000028
+000029
+000030
+000031
+000032
+000033
+000034
+000035
+000036
+000037
+000038
+000040
+000041
+000042
+000043
+000044
+000045
+000046
+000047
+000049
+000050
+000051
+000052
+000053
+000054
+000056
+000057
+000058
+000059
+000060
+000061
+000062
+000064
+000065
+000068
+000069
+000070
+000071
+000074
+000075
+000077
+000078
+000079
+000080
+000081
+000082
+000083
+000084
+000087
+000089
+000090
+000092
+000093
+000094
+000095
+000096
+000097
+000098
+000100
+000101
+000102
+000103
+000105
+000107
+000108
+000109
+000110
+000111
+000112
+000113
+000116
+000117
+000120
+000121
+000122
+000123
+000125
+000126
+000127
+000128
+000129
+000131
+000132
+000135
+000136
+000137
+000138
+000140
+000141
+000142
+000143
+000144
+000145
+000146
+000147
+000148
+000149
+000150
+000151
+000152
+000154
+000155
+000156
+000157
+000158
+000159
+000161
+000162
+000163
+000164
+000165
+000167
+000168
+000169
+000170
+000171
+000172
+000173
+000174
+000175
+000176
+000177
+000180
+000181
+000182
+000183
+000184
+000185
+000186
+000187
+000188
+000190
+000191
+000192
+000193
+000194
+000195
+000196
+000197
+000198
+000199
+000200
+000201
+000202
+000203
+000204
+000205
+000206
+000209
+000210
+000212
+000213
+000214
+000215
+000216
+000217
+000218
+000219
+000220
+000221
+000222
+000223
+000224
+000225
+000226
+000227
+000229
+000230
+000231
+000232
+000233
+000234
+000235
+000236
+000237
+000238
+000240
+000242
+000243
+000244
+000245
+000247
+000248
+000249
+000250
+000251
+000252
+000254
+000255
+000256
+000257
+000258
+000259
+000260
+000261
+000262
+000267
+000269
+000270
+000271
+000273
+000275
+000276
+000277
+000278
+000279
+000280
+000281
+000282
+000283
+000284
+000286
+000287
+000288
+000289
+000290
+000291
+000292
+000293
+000294
+000295
+000297
+000298
+000300
+000301
+000303
+000305
+000308
+000309
+000310
+000311
+000312
+000314
+000315
+000316
+000318
+000319
+000321
+000322
+000323
+000325
+000326
+000328
+000329
+000330
+000331
+000332
+000333
+000334
+000335
+000336
+000338
+000340
+000341
+000342
+000345
+000347
+000349
+000351
+000353
+000354
+000355
+000356
+000357
+000359
+000360
+000361
+000362
+000364
+000365
+000366
+000367
+000368
+000369
+000370
+000371
+000372
+000373
+000375
+000376
+000377
+000378
+000380
+000381
+000383
+000384
+000385
+000386
+000388
+000390
+000391
+000392
+000393
+000394
+000395
+000396
+000397
+000398
+000399
+000400
+000401
+000402
+000403
+000404
+000405
+000406
+000407
+000408
+000410
+000411
+000412
+000413
+000414
+000415
+000416
+000417
+000418
+000420
+000422
+000423
+000425
+000426
+000427
+000428
+000430
+000431
+000432
+000434
+000435
+000436
+000437
+000438
+000440
+000441
+000442
+000443
+000444
+000445
+000446
+000447
+000448
+000449
+000450
+000451
+000452
+000453
+000455
+000456
+000457
+000458
+000459
+000460
+000461
+000462
+000463
+000464
+000465
+000466
+000468
+000469
+000470
+000471
+000473
+000474
+000477
+000478
+000479
+000480
+000481
+000482
+000483
+000484
+000485
+000487
+000488
+000491
+000492
+000493
+000494
+000495
+000496
+000498
+000499
+000500
+000501
+000502
+000503
+000504
+000505
+000506
+000508
+000509
+000511
+000512
+000513
+000514
+000517
+000518
+000520
+000521
+000522
+000524
+000525
+000526
+000527
+000528
+000529
+000530
+000532
+000533
+000535
+000536
+000537
+000538
+000539
+000540
+000541
+000542
+000543
+000544
+000545
+000546
+000547
+000548
+000549
+000553
+000554
+000555
+000558
+000559
+000560
+000561
+000562
+000563
+000564
+000566
+000567
+000568
+000569
+000570
+000572
+000573
+000574
+000575
+000577
+000578
+000581
+000582
+000583
+000584
+000585
+000586
+000587
+000588
+000589
+000590
+000591
+000592
+000593
+000594
+000595
+000596
+000598
+000599
+000602
+000603
+000604
+000606
+000607
+000608
+000610
+000611
+000614
+000615
+000616
+000617
+000618
+000619
+000620
+000621
+000622
+000623
+000624
+000625
+000627
+000628
+000631
+000632
+000634
+000635
+000636
+000637
+000639
+000641
+000642
+000643
+000644
+000647
+000648
+000649
+000650
+000651
+000652
+000653
+000654
+000655
+000656
+000657
+000658
+000659
+000660
+000661
+000662
+000663
+000664
+000666
+000667
+000668
+000669
+000670
+000671
+000672
+000673
+000674
+000675
+000676
+000677
+000678
+000681
+000682
+000683
+000684
+000685
+000686
+000688
+000689
+000690
+000691
+000692
+000693
+000694
+000695
+000697
+000698
+000699
+000701
+000702
+000703
+000705
+000706
+000707
+000709
+000711
+000712
+000713
+000714
+000716
+000718
+000719
+000720
+000721
+000722
+000723
+000724
+000725
+000726
+000727
+000728
+000729
+000732
+000733
+000734
+000735
+000736
+000737
+000738
+000739
+000740
+000741
+000743
+000744
+000745
+000746
+000747
+000748
+000752
+000753
+000754
+000755
+000756
+000757
+000758
+000760
+000761
+000762
+000763
+000764
+000765
+000766
+000768
+000769
+000770
+000771
+000772
+000773
+000774
+000775
+000777
+000778
+000779
+000782
+000784
+000785
+000786
+000788
+000789
+000790
+000791
+000793
+000794
+000795
+000796
+000797
+000798
+000799
+000800
+000801
+000802
+000804
+000805
+000806
+000808
+000809
+000810
+000811
+000812
+000816
+000817
+000819
+000821
+000822
+000823
+000826
+000828
+000829
+000830
+000831
+000833
+000834
+000835
+000836
+000837
+000839
+000840
+000841
+000842
+000843
+000844
+000845
+000846
+000848
+000849
+000850
+000851
+000852
+000853
+000854
+000855
+000856
+000857
+000858
+000860
+000861
+000863
+000864
+000866
+000867
+000868
+000869
+000870
+000871
+000873
+000874
+000875
+000877
+000878
+000879
+000880
+000882
+000883
+000884
+000885
+000887
+000888
+000890
+000891
+000892
+000893
+000894
+000895
+000896
+000898
+000899
+000901
+000902
+000906
+000907
+000908
+000910
+000911
+000912
+000913
+000914
+000915
+000916
+000919
+000920
+000922
+000923
+000924
+000925
+000927
+000928
+000929
+000930
+000931
+000933
+000935
+000936
+000937
+000938
+000939
+000940
+000941
+000942
+000943
+000944
+000945
+000946
+000947
+000948
+000950
+000951
+000952
+000953
+000955
+000957
+000958
+000959
+000960
+000961
+000962
+000963
+000964
+000965
+000967
+000968
+000969
+000970
+000971
+000973
+000975
+000976
+000977
+000978
+000979
+000980
+000981
+000982
+000983
+000984
+000985
+000986
+000987
+000988
+000990
+000991
+000992
+000993
+000994
+000995
+000996
+000997
+000999
+001000
+001001
+001004
+001006
+001007
+001010
+001011
+001012
+001013
+001015
+001016
+001017
+001018
+001019
+001020
+001022
+001023
+001024
+001025
+001026
+001027
+001028
+001030
+001031
+001032
+001033
+001034
+001035
+001036
+001037
+001039
+001040
+001041
+001042
+001043
+001044
+001045
+001046
+001047
+001049
+001050
+001051
+001053
+001054
+001055
+001056
+001057
+001058
+001060
+001061
+001062
+001063
+001064
+001065
+001066
+001067
+001068
+001069
+001070
+001071
+001072
+001073
+001074
+001075
+001076
+001078
+001079
+001080
+001081
+001084
+001085
+001087
+001088
+001089
+001090
+001091
+001092
+001093
+001094
+001095
+001096
+001097
+001098
+001099
+001100
+001102
+001103
+001104
+001105
+001106
+001107
+001108
+001109
+001110
+001111
+001112
+001114
+001115
+001116
+001117
+001118
+001119
+001121
+001122
+001123
+001124
+001125
+001126
+001127
+001128
+001129
+001131
+001132
+001133
+001134
+001135
+001136
+001137
+001138
+001139
+001140
+001141
+001142
+001143
+001144
+001145
+001146
+001147
+001148
+001149
+001150
+001151
+001153
+001154
+001155
+001156
+001157
+001158
+001159
+001160
+001162
+001163
+001164
+001165
+001166
+001167
+001172
+001173
+001174
+001175
+001177
+001180
+001181
+001183
+001184
+001185
+001186
+001187
+001188
+001189
+001190
+001192
+001194
+001195
+001196
+001198
+001199
+001200
+001201
+001202
+001204
+001205
+001206
+001207
+001208
+001210
+001213
+001216
+001217
+001220
+001221
+001222
+001223
+001224
+001226
+001227
+001228
+001229
+001230
+001231
+001232
+001233
+001234
+001235
+001236
+001237
+001238
+001239
+001240
+001241
+001242
+001243
+001244
+001245
+001246
+001247
+001248
+001251
+001252
+001253
+001254
+001255
+001256
+001257
+001258
+001259
+001260
+001261
+001263
+001264
+001265
+001266
+001267
+001268
+001269
+001271
+001272
+001273
+001274
+001276
+001277
+001279
+001280
+001283
+001284
+001286
+001287
+001288
+001289
+001290
+001291
+001292
+001293
+001294
+001295
+001296
+001299
+001300
+001301
+001302
+001303
+001304
+001306
+001308
+001309
+001310
+001311
+001312
+001314
+001316
+001317
+001318
+001319
+001321
+001322
+001323
+001324
+001325
+001326
+001327
+001328
+001329
+001331
+001333
+001334
+001335
+001336
+001337
+001338
+001339
+001340
+001341
+001342
+001344
+001345
+001346
+001348
+001350
+001351
+001353
+001354
+001355
+001356
+001357
+001358
+001360
+001361
+001362
+001363
+001364
+001365
+001366
+001367
+001368
+001370
+001371
+001372
+001373
+001374
+001376
+001377
+001378
+001379
+001381
+001382
+001383
+001385
+001386
+001387
+001388
+001389
+001390
+001391
+001392
+001393
+001394
+001395
+001396
+001397
+001398
+001399
+001400
+001402
+001403
+001404
+001405
+001407
+001408
+001409
+001410
+001411
+001412
+001413
+001414
+001415
+001416
+001417
+001418
+001422
+001423
+001424
+001427
+001430
+001431
+001432
+001434
+001435
+001439
+001440
+001441
+001442
+001444
+001445
+001446
+001447
+001449
+001450
+001451
+001452
+001455
+001456
+001458
+001459
+001460
+001461
+001462
+001464
+001465
+001466
+001468
+001469
+001470
+001471
+001472
+001474
+001475
+001476
+001477
+001478
+001480
+001481
+001482
+001484
+001487
+001488
+001489
+001490
+001491
+001492
+001493
+001494
+001495
+001496
+001497
+001498
+001499
+001500
+001501
+001502
+001503
+001504
+001505
+001506
+001507
+001508
+001509
+001510
+001511
+001512
+001513
+001514
+001515
+001516
+001517
+001518
+001519
+001521
+001524
+001525
+001526
+001528
+001529
+001530
+001531
+001532
+001535
+001536
+001537
+001540
+001541
+001542
+001543
+001544
+001545
+001546
+001547
+001549
+001550
+001551
+001552
+001553
+001554
+001555
+001556
+001557
+001558
+001559
+001560
+001561
+001562
+001563
+001564
+001565
+001566
+001568
+001569
+001570
+001571
+001572
+001573
+001574
+001575
+001576
+001578
+001579
+001580
+001581
+001582
+001584
+001585
+001586
+001587
+001588
+001590
+001591
+001593
+001594
+001595
+001596
+001597
+001599
+001600
+001601
+001602
+001604
+001605
+001606
+001607
+001608
+001609
+001610
+001611
+001612
+001613
+001615
+001616
+001618
+001619
+001620
+001621
+001622
+001623
+001625
+001626
+001628
+001629
+001630
+001631
+001633
+001635
+001638
+001639
+001641
+001642
+001643
+001644
+001645
+001646
+001649
+001650
+001651
+001652
+001654
+001655
+001656
+001657
+001658
+001659
+001660
+001661
+001662
+001665
+001667
+001668
+001669
+001670
+001671
+001673
+001674
+001677
+001678
+001679
+001680
+001681
+001682
+001683
+001684
+001685
+001686
+001687
+001688
+001689
+001690
+001692
+001693
+001694
+001696
+001697
+001698
+001699
+001700
+001701
+001702
+001703
+001704
+001706
+001707
+001708
+001709
+001710
+001711
+001712
+001713
+001714
+001715
+001716
+001717
+001718
+001719
+001720
+001722
+001724
+001726
+001727
+001728
+001729
+001730
+001731
+001732
+001733
+001734
+001736
+001737
+001739
+001740
+001741
+001743
+001744
+001745
+001746
+001747
+001748
+001749
+001750
+001751
+001753
+001754
+001756
+001757
+001758
+001760
+001761
+001762
+001763
+001764
+001765
+001766
+001767
+001769
+001773
+001774
+001776
+001777
+001778
+001779
+001780
+001784
+001785
+001786
+001787
+001788
+001790
+001791
+001792
+001793
+001794
+001795
+001796
+001797
+001799
+001800
+001802
+001803
+001804
+001805
+001806
+001807
+001809
+001810
+001811
+001812
+001813
+001814
+001815
+001817
+001818
+001819
+001820
+001822
+001823
+001824
+001825
+001826
+001827
+001828
+001830
+001831
+001832
+001833
+001834
+001837
+001838
+001839
+001841
+001842
+001844
+001845
+001847
+001849
+001850
+001852
+001853
+001854
+001855
+001856
+001857
+001858
+001860
+001862
+001863
+001864
+001865
+001866
+001867
+001868
+001869
+001870
+001872
+001873
+001875
+001876
+001877
+001878
+001879
+001880
+001881
+001883
+001884
+001885
+001886
+001887
+001889
+001890
+001891
+001892
+001893
+001894
+001895
+001896
+001898
+001899
+001900
+001901
+001902
+001903
+001904
+001905
+001907
+001908
+001909
+001910
+001911
+001912
+001913
+001914
+001915
+001916
+001917
+001920
+001921
+001922
+001923
+001924
+001925
+001926
+001927
+001928
+001929
+001930
+001932
+001933
+001934
+001935
+001936
+001937
+001938
+001939
+001940
+001941
+001942
+001943
+001944
+001946
+001947
+001948
+001949
+001950
+001951
+001953
+001954
+001955
+001956
+001957
+001958
+001959
+001960
+001962
+001963
+001964
+001966
+001967
+001968
+001970
+001971
+001972
+001973
+001974
+001975
+001977
+001978
+001979
+001980
+001982
+001984
+001985
+001986
+001987
+001988
+001989
+001990
+001991
+001992
+001993
+001994
+001996
+001997
+001998
+002000
+002001
+002002
+002003
+002004
+002005
+002006
+002007
+002008
+002010
+002012
+002013
+002014
+002015
+002016
+002017
+002018
+002019
+002020
+002021
+002022
+002023
+002025
+002026
+002027
+002028
+002029
+002030
+002031
+002032
+002033
+002034
+002035
+002036
+002037
+002038
+002039
+002040
+002041
+002042
+002043
+002044
+002045
+002046
+002048
+002050
+002051
+002052
+002053
+002054
+002056
+002057
+002058
+002060
+002061
+002062
+002063
+002064
+002065
+002066
+002067
+002068
+002069
+002071
+002072
+002073
+002075
+002076
+002077
+002079
+002080
+002081
+002082
+002083
+002084
+002085
+002086
+002088
+002089
+002090
+002092
+002094
+002095
+002096
+002097
+002098
+002099
+002100
+002101
+002109
+002110
+002111
+002112
+002113
+002114
+002115
+002116
+002117
+002118
+002119
+002120
+002121
+002123
+002124
+002125
+002126
+002127
+002128
+002129
+002131
+002132
+002133
+002135
+002136
+002138
+002140
+002141
+002142
+002143
+002144
+002145
+002146
+002148
+002150
+002151
+002152
+002153
+002154
+002155
+002156
+002157
+002158
+002159
+002161
+002162
+002163
+002164
+002165
+002166
+002167
+002169
+002170
+002172
+002173
+002174
+002175
+002176
+002177
+002179
+002180
+002181
+002182
+002183
+002184
+002186
+002187
+002188
+002189
+002190
+002191
+002193
+002194
+002195
+002196
+002197
+002198
+002199
+002200
+002201
+002202
+002203
+002204
+002205
+002206
+002207
+002208
+002210
+002211
+002212
+002213
+002214
+002215
+002216
+002217
+002218
+002219
+002220
+002221
+002222
+002224
+002225
+002226
+002227
+002228
+002229
+002230
+002231
+002232
+002233
+002234
+002236
+002238
+002239
+002241
+002243
+002244
+002248
+002249
+002250
+002251
+002253
+002254
+002255
+002256
+002257
+002258
+002260
+002261
+002262
+002263
+002264
+002265
+002266
+002268
+002269
+002270
+002271
+002274
+002275
+002276
+002278
+002279
+002281
+002282
+002283
+002284
+002285
+002286
+002287
+002288
+002289
+002290
+002291
+002292
+002293
+002294
+002295
+002296
+002297
+002298
+002299
+002300
+002303
+002305
+002306
+002307
+002308
+002309
+002310
+002311
+002314
+002316
+002319
+002320
+002321
+002322
+002324
+002325
+002327
+002328
+002329
+002330
+002331
+002333
+002334
+002335
+002336
+002337
+002338
+002339
+002340
+002341
+002342
+002343
+002344
+002347
+002348
+002349
+002350
+002351
+002353
+002354
+002355
+002356
+002358
+002360
+002361
+002362
+002363
+002365
+002366
+002367
+002368
+002369
+002370
+002371
+002372
+002373
+002374
+002375
+002376
+002377
+002378
+002379
+002380
+002381
+002384
+002385
+002386
+002387
+002389
+002390
+002391
+002392
+002393
+002394
+002395
+002396
+002398
+002400
+002402
+002405
+002406
+002407
+002408
+002409
+002410
+002411
+002412
+002413
+002414
+002415
+002416
+002417
+002418
+002419
+002420
+002421
+002422
+002423
+002424
+002425
+002426
+002427
+002428
+002429
+002430
+002431
+002432
+002433
+002434
+002435
+002436
+002437
+002438
+002439
+002440
+002441
+002442
+002443
+002444
+002446
+002447
+002448
+002449
+002450
+002451
+002452
+002454
+002455
+002456
+002457
+002458
+002461
+002462
+002463
+002464
+002465
+002466
+002467
+002468
+002469
+002472
+002474
+002476
+002477
+002478
+002479
+002480
+002481
+002482
+002484
+002485
+002487
+002488
+002489
+002490
+002491
+002493
+002494
+002496
+002497
+002498
+002499
+002500
+002501
+002502
+002503
+002504
+002505
+002506
+002507
+002508
+002509
+002510
+002511
+002512
+002513
+002515
+002516
+002518
+002519
+002520
+002521
+002523
+002524
+002525
+002526
+002527
+002528
+002529
+002532
+002533
+002534
+002535
+002536
+002538
+002539
+002540
+002541
+002543
+002545
+002546
+002547
+002548
+002549
+002551
+002552
+002553
+002554
+002555
+002556
+002557
+002559
+002560
+002561
+002562
+002563
+002564
+002565
+002567
+002568
+002569
+002570
+002575
+002576
+002577
+002579
+002580
+002581
+002583
+002584
+002585
+002586
+002587
+002588
+002591
+002592
+002593
+002594
+002595
+002596
+002598
+002599
+002600
+002601
+002602
+002603
+002604
+002605
+002607
+002608
+002610
+002611
+002612
+002613
+002614
+002615
+002616
+002617
+002618
+002619
+002620
+002621
+002622
+002623
+002624
+002625
+002626
+002628
+002629
+002630
+002631
+002632
+002633
+002634
+002637
+002638
+002639
+002640
+002641
+002642
+002643
+002644
+002645
+002648
+002649
+002650
+002652
+002653
+002654
+002655
+002657
+002659
+002660
+002663
+002664
+002665
+002666
+002667
+002669
+002671
+002672
+002673
+002674
+002675
+002676
+002677
+002678
+002680
+002681
+002682
+002683
+002684
+002687
+002688
+002689
+002690
+002691
+002692
+002693
+002694
+002695
+002696
+002697
+002698
+002699
+002700
+002702
+002703
+002704
+002705
+002706
+002708
+002709
+002710
+002711
+002713
+002714
+002715
+002716
+002717
+002719
+002720
+002721
+002722
+002723
+002724
+002725
+002726
+002727
+002729
+002730
+002731
+002732
+002734
+002736
+002737
+002738
+002739
+002740
+002742
+002743
+002744
+002745
+002746
+002748
+002751
+002752
+002753
+002756
+002757
+002758
+002759
+002760
+002762
+002763
+002765
+002766
+002767
+002768
+002771
+002773
+002774
+002775
+002776
+002777
+002778
+002779
+002780
+002782
+002783
+002785
+002786
+002787
+002788
+002790
+002791
+002792
+002793
+002794
+002796
+002801
+002802
+002803
+002804
+002805
+002806
+002807
+002808
+002809
+002810
+002811
+002812
+002813
+002814
+002815
+002816
+002817
+002818
+002819
+002820
+002821
+002822
+002823
+002825
+002826
+002827
+002828
+002829
+002830
+002831
+002832
+002833
+002834
+002835
+002836
+002837
+002838
+002840
+002841
+002843
+002844
+002845
+002846
+002847
+002849
+002850
+002851
+002852
+002853
+002854
+002855
+002856
+002857
+002858
+002859
+002860
+002861
+002862
+002863
+002864
+002865
+002866
+002869
+002871
+002872
+002873
+002874
+002875
+002877
+002878
+002879
+002880
+002881
+002882
+002884
+002885
+002886
+002887
+002889
+002890
+002892
+002893
+002894
+002895
+002896
+002898
+002901
+002902
+002903
+002904
+002905
+002906
+002907
+002908
+002909
+002910
+002911
+002912
+002913
+002914
+002915
+002916
+002918
+002920
+002921
+002924
+002925
+002926
+002927
+002929
+002930
+002933
+002934
+002935
+002936
+002937
+002938
+002939
+002940
+002941
+002942
+002943
+002944
+002945
+002946
+002947
+002948
+002949
+002953
+002955
+002956
+002957
+002958
+002959
+002960
+002961
+002962
+002963
+002964
+002965
+002966
+002967
+002968
+002969
+002970
+002971
+002972
+002973
+002975
+002977
+002978
+002979
+002980
+002981
+002983
+002984
+002985
+002986
+002987
+002988
+002989
+002990
+002991
+002992
+002993
+002994
+002995
+002996
+002997
+002999
+003000
+003001
+003002
+003003
+003007
+003008
+003009
+003010
+003011
+003012
+003014
+003015
+003016
+003018
+003019
+003021
+003022
+003023
+003024
+003025
+003026
+003028
+003029
+003030
+003031
+003032
+003033
+003034
+003035
+003037
+003038
+003040
+003041
+003042
+003043
+003044
+003045
+003046
+003047
+003048
+003049
+003050
+003051
+003052
+003053
+003054
+003055
+003056
+003057
+003058
+003059
+003060
+003061
+003063
+003064
+003065
+003067
+003068
+003069
+003070
+003071
+003072
+003073
+003075
+003076
+003078
+003079
+003080
+003081
+003084
+003085
+003086
+003087
+003088
+003089
+003090
+003091
+003092
+003093
+003094
+003096
+003097
+003098
+003099
+003100
+003101
+003102
+003103
+003107
+003109
+003110
+003112
+003114
+003115
+003117
+003120
+003121
+003122
+003123
+003124
+003125
+003126
+003127
+003128
+003129
+003130
+003131
+003132
+003133
+003134
+003135
+003136
+003139
+003140
+003141
+003143
+003144
+003145
+003146
+003147
+003148
+003150
+003152
+003153
+003155
+003156
+003157
+003158
+003159
+003160
+003161
+003162
+003163
+003164
+003165
+003166
+003167
+003168
+003169
+003170
+003173
+003175
+003176
+003177
+003178
+003180
+003181
+003182
+003183
+003184
+003185
+003186
+003187
+003188
+003189
+003192
+003194
+003196
+003197
+003198
+003199
+003200
+003201
+003203
+003204
+003205
+003206
+003207
+003208
+003209
+003210
+003211
+003212
+003213
+003214
+003215
+003216
+003217
+003218
+003219
+003220
+003221
+003222
+003223
+003225
+003226
+003228
+003230
+003231
+003232
+003233
+003234
+003236
+003237
+003238
+003239
+003240
+003241
+003242
+003243
+003244
+003246
+003247
+003248
+003249
+003251
+003252
+003253
+003254
+003256
+003257
+003258
+003259
+003260
+003261
+003262
+003263
+003264
+003265
+003266
+003267
+003269
+003270
+003271
+003272
+003273
+003274
+003275
+003276
+003277
+003279
+003280
+003281
+003283
+003284
+003285
+003286
+003287
+003288
+003289
+003290
+003291
+003292
+003294
+003295
+003296
+003297
+003298
+003299
+003302
+003303
+003304
+003305
+003306
+003307
+003308
+003309
+003310
+003311
+003313
+003314
+003316
+003317
+003318
+003319
+003320
+003322
+003323
+003324
+003325
+003326
+003327
+003328
+003329
+003330
+003332
+003333
+003335
+003336
+003337
+003338
+003340
+003341
+003342
+003343
+003344
+003345
+003346
+003347
+003348
+003349
+003351
+003352
+003353
+003354
+003355
+003356
+003357
+003358
+003359
+003361
+003362
+003364
+003366
+003367
+003368
+003369
+003370
+003371
+003372
+003374
+003375
+003376
+003377
+003378
+003380
+003381
+003382
+003383
+003384
+003385
+003386
+003387
+003388
+003389
+003390
+003392
+003393
+003394
+003395
+003396
+003397
+003398
+003399
+003400
+003401
+003402
+003403
+003404
+003405
+003406
+003407
+003408
+003409
+003411
+003412
+003413
+003414
+003415
+003416
+003417
+003418
+003419
+003420
+003421
+003422
+003425
+003426
+003427
+003428
+003429
+003431
+003433
+003434
+003435
+003436
+003438
+003442
+003443
+003444
+003445
+003446
+003447
+003448
+003449
+003451
+003452
+003453
+003454
+003455
+003456
+003457
+003458
+003460
+003461
+003462
+003465
+003467
+003468
+003469
+003471
+003473
+003474
+003475
+003477
+003478
+003479
+003482
+003484
+003485
+003487
+003489
+003490
+003492
+003493
+003496
+003497
+003498
+003499
+003500
+003501
+003502
+003503
+003504
+003505
+003506
+003507
+003508
+003509
+003510
+003512
+003513
+003514
+003515
+003516
+003518
+003519
+003520
+003521
+003522
+003523
+003524
+003525
+003526
+003527
+003528
+003529
+003530
+003531
+003532
+003533
+003534
+003535
+003536
+003538
+003542
+003543
+003544
+003545
+003546
+003548
+003549
+003550
+003551
+003552
+003553
+003554
+003555
+003556
+003557
+003558
+003559
+003560
+003561
+003562
+003563
+003564
+003565
+003567
+003568
+003569
+003570
+003571
+003572
+003573
+003574
+003576
+003577
+003578
+003579
+003580
+003581
+003585
+003586
+003587
+003588
+003589
+003590
+003591
+003593
+003594
+003595
+003597
+003598
+003599
+003600
+003601
+003604
+003605
+003606
+003607
+003609
+003611
+003612
+003614
+003615
+003616
+003617
+003618
+003619
+003620
+003622
+003623
+003624
+003625
+003626
+003627
+003628
+003629
+003630
+003631
+003632
+003633
+003634
+003635
+003636
+003637
+003639
+003640
+003641
+003642
+003643
+003644
+003646
+003647
+003648
+003650
+003651
+003652
+003654
+003655
+003656
+003657
+003658
+003659
+003660
+003661
+003662
+003663
+003665
+003666
+003667
+003668
+003670
+003671
+003672
+003673
+003674
+003675
+003676
+003678
+003679
+003680
+003681
+003682
+003683
+003684
+003686
+003687
+003688
+003690
+003691
+003693
+003695
+003697
+003698
+003699
+003700
+003701
+003702
+003704
+003705
+003706
+003707
+003708
+003709
+003711
+003713
+003714
+003715
+003716
+003717
+003718
+003719
+003720
+003724
+003725
+003726
+003727
+003728
+003730
+003731
+003732
+003733
+003734
+003735
+003736
+003737
+003738
+003739
+003742
+003743
+003745
+003746
+003747
+003748
+003749
+003750
+003753
+003754
+003755
+003757
+003758
+003760
+003764
+003766
+003767
+003768
+003769
+003770
+003772
+003774
+003775
+003777
+003778
+003781
+003786
+003787
+003788
+003789
+003791
+003792
+003793
+003794
+003795
+003796
+003797
+003798
+003799
+003801
+003802
+003803
+003804
+003805
+003806
+003808
+003809
+003810
+003811
+003813
+003815
+003816
+003817
+003819
+003820
+003821
+003822
+003824
+003825
+003826
+003827
+003828
+003829
+003830
+003832
+003833
+003834
+003835
+003836
+003837
+003838
+003840
+003841
+003842
+003843
+003844
+003845
+003846
+003847
+003848
+003850
+003851
+003852
+003853
+003854
+003855
+003856
+003860
+003861
+003862
+003863
+003864
+003865
+003866
+003867
+003869
+003870
+003871
+003872
+003873
+003874
+003875
+003876
+003878
+003879
+003880
+003882
+003883
+003885
+003887
+003888
+003889
+003890
+003891
+003893
+003894
+003895
+003896
+003899
+003901
+003903
+003904
+003905
+003906
+003907
+003908
+003909
+003911
+003912
+003913
+003914
+003915
+003916
+003917
+003918
+003919
+003920
+003921
+003922
+003923
+003924
+003925
+003927
+003928
+003929
+003930
+003931
+003932
+003933
+003935
+003936
+003938
+003939
+003940
+003941
+003943
+003944
+003945
+003947
+003948
+003949
+003950
+003951
+003952
+003953
+003955
+003956
+003957
+003958
+003959
+003960
+003961
+003963
+003965
+003966
+003968
+003969
+003970
+003971
+003972
+003974
+003975
+003976
+003977
+003978
+003980
+003981
+003982
+003983
+003984
+003985
+003986
+003987
+003988
+003989
+003990
+003992
+003993
+003994
+003995
+003996
+003998
+003999
+004000
+004001
+004002
+004003
+004004
+004005
+004006
+004009
+004010
+004011
+004013
+004014
+004016
+004017
+004018
+004019
+004020
+004021
+004022
+004023
+004024
+004025
+004026
+004027
+004028
+004029
+004030
+004031
+004032
+004034
+004035
+004036
+004038
+004039
+004041
+004042
+004044
+004045
+004046
+004047
+004048
+004049
+004051
+004053
+004054
+004055
+004056
+004057
+004058
+004059
+004060
+004061
+004062
+004064
+004065
+004066
+004069
+004070
+004071
+004072
+004073
+004074
+004076
+004077
+004079
+004080
+004081
+004082
+004084
+004085
+004086
+004087
+004088
+004089
+004091
+004092
+004093
+004094
+004096
+004097
+004099
+004100
+004101
+004103
+004104
+004105
+004106
+004107
+004108
+004109
+004111
+004112
+004113
+004114
+004115
+004116
+004118
+004119
+004121
+004123
+004125
+004126
+004127
+004128
+004131
+004132
+004135
+004136
+004137
+004138
+004139
+004140
+004141
+004142
+004143
+004144
+004145
+004147
+004148
+004150
+004151
+004155
+004156
+004159
+004160
+004161
+004162
+004165
+004167
+004168
+004169
+004171
+004172
+004173
+004174
+004175
+004177
+004178
+004179
+004181
+004182
+004184
+004185
+004186
+004187
+004188
+004189
+004190
+004191
+004193
+004194
+004195
+004196
+004197
+004198
+004199
+004200
+004201
+004202
+004203
+004204
+004205
+004207
+004208
+004209
+004210
+004211
+004212
+004213
+004214
+004215
+004216
+004217
+004218
+004219
+004220
+004221
+004223
+004224
+004225
+004226
+004227
+004228
+004229
+004230
+004231
+004232
+004233
+004234
+004236
+004237
+004238
+004239
+004241
+004242
+004243
+004244
+004245
+004246
+004247
+004248
+004249
+004250
+004251
+004252
+004253
+004254
+004255
+004256
+004257
+004258
+004259
+004260
+004261
+004262
+004263
+004265
+004267
+004269
+004271
+004272
+004274
+004277
+004278
+004279
+004280
+004282
+004283
+004285
+004286
+004288
+004289
+004291
+004295
+004296
+004298
+004300
+004301
+004302
+004305
+004306
+004309
+004310
+004312
+004313
+004314
+004315
+004316
+004321
+004323
+004324
+004325
+004326
+004327
+004328
+004333
+004334
+004335
+004337
+004339
+004340
+004341
+004342
+004343
+004345
+004347
+004348
+004349
+004351
+004352
+004353
+004355
+004356
+004357
+004359
+004360
+004361
+004362
+004365
+004367
+004368
+004369
+004370
+004372
+004373
+004374
+004375
+004376
+004378
+004379
+004380
+004381
+004382
+004383
+004384
+004385
+004386
+004389
+004390
+004391
+004392
+004393
+004395
+004396
+004397
+004400
+004401
+004402
+004403
+004404
+004405
+004406
+004407
+004408
+004409
+004410
+004413
+004415
+004416
+004417
+004418
+004419
+004421
+004422
+004423
+004425
+004426
+004429
+004430
+004431
+004433
+004434
+004435
+004436
+004437
+004440
+004441
+004442
+004445
+004447
+004448
+004449
+004450
+004451
+004452
+004453
+004454
+004456
+004457
+004459
+004460
+004461
+004462
+004463
+004464
+004465
+004466
+004467
+004468
+004470
+004471
+004475
+004476
+004478
+004479
+004480
+004481
+004482
+004483
+004484
+004485
+004486
+004487
+004491
+004492
+004493
+004496
+004497
+004498
+004500
+004501
+004502
+004503
+004505
+004506
+004507
+004508
+004509
+004510
+004511
+004512
+004514
+004515
+004516
+004519
+004520
+004522
+004523
+004524
+004525
+004526
+004527
+004528
+004529
+004530
+004531
+004532
+004533
+004534
+004535
+004536
+004537
+004538
+004539
+004541
+004542
+004543
+004546
+004547
+004548
+004549
+004550
+004551
+004552
+004554
+004557
+004558
+004559
+004561
+004563
+004564
+004565
+004566
+004567
+004569
+004570
+004571
+004572
+004575
+004576
+004577
+004578
+004579
+004580
+004583
+004584
+004585
+004586
+004587
+004588
+004589
+004590
+004591
+004592
+004593
+004594
+004595
+004596
+004597
+004598
+004599
+004600
+004603
+004604
+004606
+004607
+004608
+004609
+004610
+004611
+004612
+004613
+004614
+004617
+004618
+004620
+004622
+004623
+004624
+004625
+004626
+004627
+004628
+004629
+004630
+004632
+004633
+004634
+004635
+004636
+004637
+004638
+004639
+004640
+004641
+004642
+004643
+004644
+004646
+004647
+004648
+004649
+004650
+004651
+004653
+004654
+004655
+004656
+004658
+004659
+004660
+004662
+004663
+004664
+004665
+004666
+004667
+004669
+004670
+004671
+004672
+004673
+004674
+004675
+004676
+004677
+004678
+004681
+004683
+004685
+004686
+004687
+004689
+004690
+004691
+004692
+004693
+004694
+004696
+004697
+004699
+004700
+004701
+004703
+004704
+004705
+004706
+004709
+004710
+004711
+004712
+004713
+004714
+004715
+004716
+004717
+004718
+004721
+004722
+004723
+004725
+004726
+004727
+004728
+004729
+004730
+004732
+004735
+004737
+004738
+004739
+004740
+004741
+004743
+004744
+004746
+004747
+004748
+004751
+004752
+004753
+004754
+004755
+004756
+004757
+004758
+004760
+004761
+004762
+004763
+004764
+004765
+004766
+004767
+004768
+004769
+004770
+004771
+004772
+004773
+004774
+004775
+004777
+004778
+004780
+004781
+004782
+004783
+004785
+004787
+004788
+004789
+004791
+004793
+004794
+004795
+004796
+004797
+004798
+004799
+004800
+004802
+004803
+004804
+004805
+004806
+004810
+004812
+004813
+004814
+004815
+004816
+004820
+004821
+004824
+004825
+004826
+004827
+004828
+004829
+004830
+004831
+004832
+004833
+004834
+004835
+004836
+004837
+004838
+004839
+004840
+004842
+004843
+004846
+004847
+004848
+004849
+004850
+004855
+004856
+004857
+004859
+004860
+004862
+004866
+004868
+004869
+004871
+004872
+004874
+004875
+004876
+004877
+004878
+004879
+004880
+004882
+004883
+004884
+004885
+004886
+004888
+004889
+004890
+004891
+004892
+004893
+004894
+004895
+004896
+004897
+004898
+004899
+004900
+004901
+004902
+004903
+004905
+004907
+004908
+004909
+004910
+004913
+004914
+004915
+004916
+004917
+004918
+004919
+004920
+004921
+004922
+004923
+004925
+004926
+004927
+004928
+004929
+004930
+004931
+004932
+004933
+004934
+004935
+004936
+004937
+004938
+004939
+004941
+004942
+004943
+004944
+004946
+004948
+004949
+004950
+004951
+004953
+004954
+004955
+004956
+004958
+004959
+004961
+004962
+004963
+004964
+004966
+004967
+004969
+004970
+004971
+004976
+004978
+004979
+004980
+004981
+004982
+004984
+004985
+004987
+004989
+004990
+004992
+004993
+004994
+004995
+004998
+004999
+005000
+005001
+005002
+005003
+005004
+005005
+005006
+005007
+005008
+005010
+005011
+005012
+005013
+005014
+005015
+005016
+005017
+005018
+005019
+005020
+005021
+005022
+005023
+005024
+005025
+005026
+005027
+005028
+005029
+005030
+005032
+005034
+005035
+005036
+005038
+005040
+005042
+005043
+005044
+005045
+005046
+005047
+005049
+005051
+005053
+005055
+005056
+005057
+005058
+005059
+005060
+005061
+005062
+005063
+005065
+005066
+005067
+005068
+005070
+005071
+005072
+005073
+005074
+005075
+005076
+005078
+005079
+005080
+005081
+005082
+005083
+005085
+005086
+005088
+005089
+005090
+005091
+005093
+005094
+005096
+005097
+005098
+005099
+005100
+005101
+005102
+005103
+005104
+005105
+005107
+005108
+005110
+005111
+005112
+005113
+005114
+005115
+005116
+005117
+005118
+005120
+005121
+005122
+005123
+005124
+005125
+005126
+005127
+005128
+005129
+005130
+005131
+005132
+005133
+005134
+005135
+005136
+005137
+005138
+005140
+005143
+005145
+005146
+005148
+005149
+005150
+005151
+005153
+005154
+005155
+005157
+005158
+005159
+005160
+005161
+005162
+005164
+005165
+005167
+005168
+005169
+005170
+005171
+005172
+005173
+005174
+005177
+005179
+005181
+005182
+005183
+005184
+005185
+005187
+005189
+005190
+005191
+005192
+005193
+005194
+005196
+005198
+005200
+005201
+005203
+005204
+005205
+005206
+005207
+005208
+005209
+005210
+005211
+005214
+005215
+005216
+005218
+005219
+005220
+005222
+005223
+005224
+005225
+005226
+005227
+005228
+005230
+005231
+005233
+005234
+005236
+005237
+005238
+005239
+005240
+005241
+005242
+005243
+005244
+005245
+005246
+005247
+005249
+005251
+005252
+005253
+005254
+005255
+005256
+005257
+005258
+005259
+005260
+005261
+005262
+005263
+005265
+005267
+005268
+005269
+005270
+005271
+005272
+005273
+005276
+005279
+005280
+005281
+005282
+005283
+005284
+005285
+005286
+005287
+005288
+005289
+005290
+005291
+005292
+005293
+005294
+005295
+005297
+005298
+005299
+005301
+005302
+005303
+005304
+005305
+005306
+005307
+005311
+005313
+005314
+005315
+005316
+005318
+005319
+005320
+005322
+005323
+005324
+005325
+005326
+005327
+005329
+005330
+005331
+005332
+005333
+005334
+005335
+005337
+005338
+005339
+005340
+005342
+005343
+005344
+005345
+005346
+005348
+005349
+005350
+005351
+005353
+005354
+005355
+005357
+005360
+005362
+005363
+005365
+005366
+005367
+005368
+005369
+005370
+005371
+005372
+005373
+005374
+005377
+005378
+005379
+005380
+005381
+005382
+005383
+005384
+005385
+005386
+005387
+005388
+005389
+005390
+005391
+005392
+005393
+005394
+005395
+005397
+005398
+005400
+005401
+005402
+005403
+005405
+005406
+005408
+005409
+005410
+005411
+005412
+005414
+005416
+005417
+005418
+005420
+005421
+005422
+005423
+005424
+005426
+005427
+005428
+005429
+005430
+005431
+005432
+005434
+005435
+005436
+005437
+005438
+005440
+005442
+005443
+005444
+005446
+005447
+005448
+005449
+005450
+005451
+005452
+005453
+005455
+005456
+005459
+005460
+005461
+005463
+005464
+005466
+005470
+005473
+005474
+005475
+005476
+005478
+005479
+005480
+005482
+005483
+005484
+005488
+005489
+005490
+005491
+005492
+005493
+005494
+005495
+005496
+005497
+005498
+005499
+005500
+005501
+005502
+005503
+005505
+005506
+005507
+005508
+005509
+005510
+005511
+005512
+005513
+005514
+005515
+005516
+005517
+005518
+005520
+005521
+005524
+005525
+005526
+005527
+005528
+005529
+005530
+005532
+005533
+005534
+005535
+005536
+005538
+005539
+005541
+005542
+005544
+005545
+005546
+005547
+005548
+005551
+005552
+005553
+005554
+005556
+005557
+005558
+005559
+005560
+005562
+005563
+005564
+005565
+005566
+005567
+005568
+005569
+005570
+005572
+005575
+005576
+005577
+005578
+005579
+005580
+005581
+005582
+005584
+005585
+005586
+005587
+005588
+005590
+005591
+005592
+005593
+005594
+005595
+005598
+005599
+005600
+005601
+005602
+005603
+005604
+005605
+005606
+005608
+005611
+005613
+005614
+005615
+005616
+005618
+005619
+005620
+005622
+005623
+005624
+005625
+005626
+005627
+005630
+005631
+005633
+005634
+005635
+005637
+005640
+005641
+005642
+005643
+005644
+005645
+005646
+005649
+005650
+005651
+005652
+005653
+005654
+005655
+005656
+005657
+005658
+005659
+005660
+005661
+005662
+005664
+005665
+005666
+005667
+005669
+005670
+005671
+005673
+005677
+005678
+005679
+005680
+005681
+005682
+005683
+005684
+005685
+005686
+005687
+005688
+005689
+005690
+005691
+005692
+005693
+005695
+005696
+005699
+005700
+005701
+005703
+005704
+005705
+005706
+005707
+005708
+005709
+005710
+005711
+005713
+005714
+005715
+005716
+005717
+005718
+005719
+005720
+005721
+005723
+005724
+005725
+005727
+005730
+005731
+005732
+005733
+005734
+005735
+005736
+005737
+005738
+005739
+005740
+005743
+005745
+005746
+005748
+005749
+005750
+005752
+005753
+005754
+005755
+005756
+005757
+005758
+005760
+005762
+005763
+005764
+005765
+005766
+005767
+005768
+005769
+005771
+005772
+005773
+005774
+005775
+005776
+005777
+005778
+005779
+005780
+005781
+005782
+005783
+005784
+005785
+005786
+005788
+005789
+005791
+005792
+005794
+005795
+005796
+005798
+005800
+005801
+005802
+005804
+005805
+005806
+005807
+005808
+005810
+005811
+005812
+005814
+005815
+005817
+005819
+005820
+005821
+005822
+005823
+005824
+005825
+005827
+005828
+005829
+005830
+005831
+005832
+005834
+005835
+005836
+005837
+005838
+005839
+005840
+005841
+005842
+005843
+005844
+005845
+005847
+005848
+005849
+005852
+005853
+005855
+005856
+005857
+005858
+005859
+005860
+005861
+005862
+005863
+005864
+005865
+005866
+005867
+005868
+005870
+005872
+005875
+005877
+005878
+005879
+005880
+005881
+005882
+005883
+005884
+005885
+005886
+005887
+005888
+005889
+005890
+005892
+005893
+005894
+005896
+005897
+005898
+005899
+005900
+005901
+005902
+005903
+005905
+005906
+005907
+005908
+005909
+005910
+005911
+005912
+005913
+005914
+005915
+005916
+005917
+005918
+005919
+005921
+005922
+005923
+005924
+005925
+005926
+005927
+005928
+005929
+005930
+005931
+005934
+005936
+005938
+005939
+005940
+005941
+005943
+005944
+005945
+005947
+005948
+005949
+005950
+005952
+005953
+005954
+005956
+005957
+005958
+005959
+005962
+005963
+005964
+005965
+005966
+005967
+005970
+005971
+005972
+005974
+005975
+005976
+005977
+005978
+005979
+005980
+005982
+005983
+005984
+005985
+005986
+005987
+005988
+005989
+005990
+005991
+005992
+005993
+005994
+005995
+005996
+005997
+005998
+005999
+006000
+006001
+006002
+006003
+006004
+006008
+006009
+006010
+006011
+006013
+006015
+006017
+006018
+006019
+006020
+006021
+006023
+006025
+006026
+006027
+006028
+006029
+006030
+006031
+006032
+006034
+006035
+006037
+006038
+006039
+006040
+006042
+006043
+006044
+006045
+006046
+006047
+006048
+006049
+006050
+006051
+006052
+006054
+006055
+006056
+006057
+006059
+006060
+006062
+006063
+006066
+006067
+006069
+006070
+006071
+006072
+006073
+006074
+006075
+006076
+006077
+006078
+006080
+006081
+006082
+006083
+006084
+006085
+006087
+006088
+006090
+006091
+006092
+006093
+006094
+006096
+006097
+006099
+006100
+006102
+006103
+006104
+006105
+006107
+006108
+006110
+006111
+006112
+006113
+006114
+006115
+006119
+006120
+006122
+006124
+006125
+006126
+006127
+006128
+006129
+006130
+006131
+006134
+006135
+006136
+006138
+006139
+006140
+006141
+006143
+006144
+006146
+006147
+006148
+006151
+006152
+006153
+006154
+006155
+006156
+006157
+006158
+006159
+006160
+006161
+006162
+006164
+006165
+006166
+006167
+006168
+006171
+006173
+006174
+006175
+006176
+006178
+006179
+006180
+006182
+006183
+006184
+006187
+006188
+006189
+006190
+006191
+006192
+006193
+006194
+006195
+006196
+006197
+006198
+006200
+006201
+006202
+006203
+006206
+006207
+006208
+006209
+006211
+006216
+006217
+006218
+006219
+006220
+006223
+006224
+006226
+006227
+006228
+006229
+006231
+006232
+006233
+006234
+006237
+006238
+006239
+006240
+006242
+006243
+006244
+006247
+006248
+006250
+006252
+006253
+006254
+006255
+006256
+006257
+006259
+006260
+006261
+006262
+006264
+006265
+006266
+006267
+006268
+006269
+006270
+006271
+006273
+006274
+006275
+006276
+006277
+006278
+006279
+006280
+006282
+006283
+006284
+006285
+006287
+006288
+006289
+006291
+006292
+006293
+006294
+006296
+006297
+006298
+006299
+006300
+006301
+006302
+006303
+006305
+006307
+006308
+006309
+006310
+006311
+006315
+006316
+006317
+006318
+006319
+006320
+006321
+006322
+006323
+006324
+006325
+006326
+006327
+006328
+006329
+006333
+006334
+006335
+006336
+006338
+006339
+006340
+006341
+006342
+006344
+006345
+006346
+006347
+006348
+006349
+006350
+006352
+006354
+006355
+006356
+006358
+006359
+006360
+006361
+006362
+006363
+006364
+006365
+006366
+006367
+006368
+006369
+006370
+006372
+006373
+006374
+006375
+006376
+006377
+006379
+006380
+006381
+006382
+006384
+006386
+006387
+006388
+006391
+006392
+006395
+006396
+006397
+006398
+006399
+006400
+006401
+006402
+006403
+006404
+006405
+006406
+006407
+006408
+006409
+006410
+006412
+006413
+006414
+006415
+006416
+006417
+006418
+006419
+006421
+006422
+006423
+006424
+006425
+006427
+006428
+006429
+006430
+006431
+006434
+006435
+006436
+006437
+006438
+006439
+006440
+006441
+006443
+006444
+006445
+006446
+006447
+006448
+006449
+006450
+006451
+006452
+006453
+006455
+006456
+006458
+006459
+006460
+006461
+006462
+006464
+006465
+006466
+006467
+006468
+006469
+006470
+006471
+006472
+006474
+006475
+006476
+006478
+006479
+006480
+006482
+006483
+006484
+006485
+006486
+006487
+006488
+006489
+006490
+006491
+006492
+006493
+006495
+006496
+006497
+006498
+006499
+006500
+006502
+006503
+006505
+006506
+006507
+006508
+006509
+006510
+006511
+006513
+006515
+006517
+006519
+006520
+006522
+006524
+006526
+006527
+006528
+006529
+006530
+006532
+006534
+006535
+006536
+006537
+006538
+006539
+006540
+006541
+006543
+006544
+006545
+006547
+006548
+006550
+006551
+006552
+006553
+006554
+006555
+006556
+006557
+006558
+006559
+006560
+006562
+006563
+006564
+006565
+006566
+006569
+006571
+006572
+006578
+006579
+006580
+006581
+006582
+006583
+006584
+006585
+006586
+006587
+006590
+006591
+006592
+006593
+006594
+006596
+006597
+006598
+006599
+006600
+006601
+006602
+006603
+006604
+006605
+006606
+006607
+006608
+006609
+006611
+006612
+006613
+006614
+006615
+006616
+006617
+006618
+006619
+006621
+006622
+006623
+006624
+006625
+006628
+006629
+006632
+006633
+006635
+006636
+006637
+006638
+006639
+006641
+006642
+006643
+006645
+006646
+006647
+006649
+006650
+006651
+006653
+006654
+006655
+006656
+006657
+006659
+006660
+006661
+006663
+006664
+006665
+006666
+006667
+006668
+006669
+006670
+006671
+006672
+006673
+006675
+006676
+006677
+006678
+006679
+006680
+006681
+006682
+006683
+006684
+006685
+006688
+006689
+006690
+006691
+006695
+006696
+006697
+006698
+006700
+006702
+006703
+006704
+006706
+006707
+006708
+006710
+006711
+006713
+006714
+006715
+006716
+006717
+006719
+006720
+006721
+006722
+006723
+006725
+006727
+006728
+006729
+006730
+006731
+006732
+006734
+006736
+006737
+006738
+006739
+006740
+006742
+006743
+006744
+006745
+006746
+006747
+006748
+006749
+006750
+006751
+006752
+006753
+006754
+006757
+006758
+006760
+006761
+006763
+006764
+006767
+006768
+006769
+006770
+006771
+006772
+006773
+006775
+006776
+006777
+006778
+006779
+006780
+006781
+006782
+006783
+006785
+006786
+006787
+006788
+006789
+006790
+006791
+006792
+006793
+006794
+006795
+006796
+006797
+006798
+006799
+006800
+006801
+006802
+006803
+006804
+006805
+006808
+006809
+006810
+006812
+006813
+006815
+006816
+006817
+006818
+006820
+006821
+006822
+006823
+006824
+006825
+006826
+006827
+006829
+006830
+006831
+006832
+006833
+006835
+006837
+006838
+006841
+006842
+006843
+006845
+006847
+006849
+006850
+006851
+006854
+006855
+006856
+006857
+006858
+006859
+006860
+006861
+006862
+006863
+006864
+006865
+006866
+006867
+006868
+006869
+006870
+006872
+006873
+006874
+006875
+006876
+006877
+006878
+006879
+006880
+006881
+006882
+006884
+006885
+006886
+006887
+006889
+006890
+006891
+006892
+006893
+006894
+006895
+006896
+006897
+006898
+006899
+006900
+006901
+006902
+006903
+006904
+006905
+006906
+006907
+006908
+006909
+006910
+006911
+006913
+006914
+006915
+006916
+006917
+006918
+006919
+006920
+006921
+006922
+006923
+006924
+006925
+006926
+006927
+006928
+006929
+006930
+006931
+006932
+006933
+006934
+006935
+006936
+006937
+006938
+006939
+006940
+006941
+006942
+006943
+006945
+006946
+006947
+006948
+006950
+006951
+006952
+006953
+006954
+006955
+006956
+006957
+006958
+006959
+006960
+006961
+006962
+006963
+006964
+006965
+006966
+006968
+006969
+006970
+006971
+006973
+006976
+006977
+006978
+006981
+006983
+006984
+006985
+006988
+006989
+006990
+006991
+006993
+006994
+006995
+006996
+006997
+006998
+006999
+007002
+007003
+007004
+007005
+007006
+007008
+007009
+007010
+007011
+007012
+007013
+007015
+007016
+007017
+007018
+007019
+007021
+007022
+007023
+007024
+007026
+007028
+007029
+007030
+007031
+007032
+007033
+007035
+007036
+007038
+007039
+007040
+007042
+007043
+007044
+007045
+007046
+007047
+007048
+007049
+007050
+007051
+007052
+007053
+007054
+007056
+007057
+007058
+007059
+007060
+007061
+007064
+007065
+007066
+007067
+007068
+007069
+007070
+007071
+007072
+007073
+007074
+007076
+007077
+007078
+007079
+007080
+007081
+007082
+007083
+007084
+007086
+007087
+007088
+007090
+007091
+007092
+007093
+007094
+007096
+007098
+007099
+007100
+007101
+007103
+007104
+007105
+007106
+007107
+007108
+007109
+007110
+007111
+007112
+007113
+007114
+007115
+007116
+007117
+007118
+007119
+007120
+007122
+007123
+007125
+007127
+007128
+007129
+007130
+007132
+007133
+007135
+007137
+007138
+007139
+007140
+007141
+007142
+007143
+007144
+007145
+007146
+007147
+007148
+007150
+007151
+007152
+007153
+007154
+007155
+007156
+007158
+007159
+007160
+007161
+007162
+007163
+007164
+007166
+007167
+007168
+007170
+007172
+007173
+007174
+007175
+007176
+007177
+007178
+007179
+007180
+007181
+007182
+007183
+007184
+007185
+007186
+007187
+007188
+007190
+007192
+007194
+007195
+007196
+007197
+007198
+007200
+007201
+007202
+007203
+007204
+007205
+007206
+007207
+007208
+007210
+007211
+007212
+007213
+007214
+007215
+007217
+007218
+007219
+007220
+007221
+007222
+007223
+007224
+007225
+007226
+007227
+007228
+007229
+007230
+007231
+007233
+007234
+007235
+007236
+007237
+007238
+007239
+007241
+007242
+007243
+007244
+007247
+007248
+007249
+007250
+007252
+007253
+007254
+007256
+007257
+007258
+007259
+007260
+007261
+007262
+007265
+007266
+007267
+007268
+007269
+007270
+007271
+007272
+007273
+007274
+007275
+007276
+007277
+007278
+007279
+007282
+007284
+007285
+007287
+007288
+007289
+007290
+007292
+007293
+007294
+007295
+007296
+007299
+007300
+007302
+007303
+007304
+007305
+007306
+007307
+007308
+007309
+007310
+007311
+007312
+007313
+007315
+007316
+007319
+007320
+007321
+007323
+007326
+007327
+007328
+007329
+007330
+007331
+007332
+007333
+007334
+007335
+007336
+007337
+007338
+007339
+007340
+007341
+007342
+007343
+007344
+007345
+007346
+007347
+007348
+007349
+007350
+007351
+007356
+007357
+007358
+007360
+007361
+007362
+007363
+007364
+007366
+007367
+007368
+007370
+007371
+007372
+007373
+007374
+007375
+007376
+007377
+007378
+007379
+007380
+007381
+007382
+007383
+007385
+007386
+007387
+007388
+007389
+007390
+007391
+007392
+007393
+007394
+007395
+007396
+007397
+007398
+007400
+007401
+007402
+007403
+007404
+007406
+007407
+007408
+007410
+007412
+007413
+007414
+007415
+007416
+007417
+007419
+007420
+007421
+007422
+007424
+007425
+007426
+007427
+007430
+007431
+007432
+007433
+007434
+007435
+007437
+007439
+007441
+007442
+007443
+007446
+007447
+007448
+007449
+007453
+007455
+007456
+007457
+007458
+007460
+007461
+007462
+007463
+007464
+007465
+007466
+007467
+007468
+007469
+007470
+007471
+007472
+007474
+007475
+007476
+007477
+007478
+007479
+007482
+007483
+007484
+007485
+007486
+007487
+007488
+007489
+007490
+007491
+007493
+007494
+007495
+007497
+007498
+007499
+007500
+007501
+007502
+007504
+007505
+007506
+007507
+007508
+007509
+007510
+007511
+007512
+007515
+007517
+007518
+007519
+007520
+007521
+007524
+007525
+007526
+007527
+007528
+007529
+007530
+007531
+007532
+007533
+007534
+007536
+007537
+007538
+007539
+007541
+007542
+007544
+007545
+007546
+007547
+007548
+007552
+007553
+007555
+007557
+007560
+007562
+007563
+007564
+007565
+007566
+007568
+007569
+007570
+007571
+007574
+007575
+007576
+007578
+007579
+007580
+007582
+007583
+007584
+007586
+007588
+007590
+007591
+007592
+007593
+007594
+007595
+007596
+007600
+007601
+007602
+007603
+007604
+007605
+007606
+007608
+007609
+007611
+007613
+007614
+007615
+007616
+007618
+007619
+007620
+007621
+007622
+007623
+007631
+007632
+007633
+007634
+007636
+007637
+007638
+007639
+007640
+007641
+007642
+007643
+007646
+007647
+007648
+007649
+007650
+007651
+007652
+007653
+007656
+007657
+007658
+007662
+007663
+007664
+007665
+007667
+007668
+007669
+007670
+007671
+007672
+007673
+007674
+007677
+007680
+007681
+007682
+007683
+007684
+007685
+007686
+007687
+007688
+007690
+007694
+007696
+007697
+007698
+007699
+007700
+007701
+007702
+007703
+007704
+007705
+007707
+007710
+007711
+007712
+007713
+007714
+007716
+007717
+007718
+007719
+007720
+007721
+007722
+007723
+007724
+007725
+007726
+007727
+007728
+007729
+007730
+007731
+007733
+007734
+007735
+007736
+007737
+007738
+007739
+007740
+007741
+007743
+007744
+007745
+007746
+007747
+007748
+007749
+007752
+007753
+007754
+007755
+007757
+007760
+007761
+007762
+007763
+007764
+007765
+007766
+007768
+007769
+007771
+007773
+007774
+007775
+007778
+007780
+007781
+007782
+007783
+007784
+007785
+007786
+007787
+007788
+007789
+007790
+007792
+007793
+007794
+007795
+007796
+007797
+007798
+007799
+007800
+007801
+007802
+007803
+007804
+007805
+007807
+007809
+007810
+007813
+007814
+007815
+007816
+007817
+007819
+007823
+007825
+007826
+007827
+007829
+007830
+007831
+007832
+007833
+007834
+007835
+007836
+007837
+007838
+007839
+007840
+007841
+007842
+007843
+007844
+007845
+007846
+007847
+007848
+007851
+007852
+007853
+007854
+007855
+007856
+007857
+007858
+007859
+007860
+007861
+007863
+007864
+007865
+007866
+007868
+007869
+007870
+007871
+007872
+007873
+007874
+007875
+007876
+007877
+007879
+007880
+007881
+007882
+007883
+007884
+007885
+007887
+007891
+007892
+007894
+007895
+007897
+007898
+007899
+007900
+007901
+007902
+007903
+007904
+007905
+007906
+007907
+007908
+007909
+007910
+007911
+007912
+007913
+007914
+007915
+007916
+007917
+007918
+007919
+007920
+007921
+007922
+007923
+007925
+007926
+007927
+007928
+007929
+007930
+007931
+007932
+007934
+007935
+007936
+007937
+007938
+007939
+007942
+007943
+007944
+007945
+007947
+007948
+007950
+007951
+007952
+007953
+007954
+007955
+007956
+007957
+007958
+007959
+007961
+007962
+007963
+007964
+007965
+007966
+007967
+007968
+007969
+007972
+007973
+007974
+007976
+007977
+007978
+007979
+007980
+007981
+007982
+007983
+007984
+007985
+007986
+007987
+007988
+007989
+007990
+007991
+007992
+007993
+007994
+007996
+007997
+007998
+008000
+008001
+008003
+008004
+008005
+008007
+008008
+008010
+008011
+008012
+008013
+008015
+008017
+008018
+008019
+008020
+008021
+008022
+008023
+008024
+008026
+008027
+008028
+008030
+008031
+008033
+008034
+008035
+008036
+008037
+008038
+008040
+008041
+008042
+008043
+008044
+008045
+008046
+008047
+008048
+008049
+008050
+008051
+008054
+008056
+008058
+008059
+008061
+008062
+008063
+008064
+008065
+008066
+008067
+008070
+008071
+008072
+008073
+008074
+008075
+008076
+008078
+008079
+008080
+008081
+008083
+008085
+008086
+008089
+008090
+008091
+008092
+008093
+008094
+008095
+008096
+008097
+008098
+008099
+008101
+008102
+008103
+008104
+008106
+008107
+008108
+008109
+008110
+008111
+008112
+008113
+008115
+008116
+008118
+008119
+008120
+008122
+008123
+008124
+008125
+008126
+008127
+008128
+008129
+008130
+008132
+008133
+008134
+008135
+008136
+008137
+008138
+008140
+008142
+008143
+008145
+008146
+008148
+008149
+008150
+008151
+008153
+008154
+008155
+008156
+008158
+008160
+008161
+008163
+008164
+008165
+008167
+008169
+008171
+008172
+008175
+008176
+008178
+008180
+008181
+008182
+008183
+008184
+008185
+008186
+008187
+008188
+008189
+008190
+008192
+008193
+008194
+008195
+008196
+008197
+008198
+008200
+008201
+008202
+008203
+008204
+008206
+008209
+008210
+008211
+008212
+008213
+008214
+008215
+008217
+008218
+008219
+008220
+008221
+008222
+008223
+008224
+008225
+008226
+008228
+008229
+008230
+008231
+008233
+008234
+008236
+008237
+008239
+008240
+008241
+008242
+008243
+008244
+008245
+008246
+008247
+008248
+008249
+008250
+008251
+008252
+008253
+008254
+008255
+008257
+008258
+008259
+008260
+008261
+008262
+008263
+008264
+008265
+008267
+008268
+008269
+008270
+008271
+008272
+008273
+008274
+008277
+008278
+008279
+008280
+008281
+008283
+008285
+008286
+008287
+008288
+008289
+008290
+008293
+008294
+008295
+008297
+008298
+008299
+008300
+008301
+008302
+008303
+008304
+008305
+008306
+008307
+008308
+008309
+008311
+008313
+008314
+008316
+008318
+008319
+008321
+008322
+008323
+008324
+008325
+008326
+008327
+008328
+008329
+008330
+008332
+008334
+008335
+008336
+008337
+008341
+008342
+008344
+008345
+008346
+008347
+008348
+008350
+008351
+008353
+008355
+008356
+008358
+008359
+008361
+008362
+008364
+008365
+008366
+008368
+008369
+008370
+008372
+008373
+008374
+008375
+008376
+008377
+008379
+008380
+008384
+008385
+008386
+008387
+008389
+008390
+008391
+008392
+008393
+008394
+008396
+008397
+008398
+008400
+008402
+008403
+008404
+008405
+008406
+008407
+008408
+008409
+008410
+008411
+008412
+008413
+008414
+008415
+008416
+008417
+008418
+008419
+008420
+008421
+008422
+008423
+008424
+008425
+008426
+008427
+008428
+008430
+008432
+008434
+008435
+008436
+008437
+008438
+008439
+008440
+008441
+008442
+008444
+008445
+008446
+008447
+008448
+008450
+008452
+008453
+008455
+008456
+008459
+008460
+008462
+008464
+008465
+008466
+008467
+008468
+008471
+008472
+008473
+008476
+008477
+008478
+008479
+008480
+008481
+008482
+008483
+008485
+008486
+008487
+008488
+008491
+008492
+008494
+008495
+008497
+008499
+008501
+008503
+008507
+008508
+008509
+008510
+008512
+008513
+008514
+008515
+008516
+008519
+008520
+008521
+008522
+008523
+008524
+008525
+008527
+008529
+008530
+008531
+008532
+008533
+008534
+008535
+008536
+008537
+008538
+008540
+008541
+008543
+008544
+008545
+008546
+008547
+008548
+008549
+008550
+008551
+008552
+008553
+008554
+008555
+008557
+008558
+008561
+008562
+008563
+008566
+008568
+008569
+008570
+008571
+008572
+008573
+008574
+008575
+008577
+008578
+008579
+008580
+008581
+008582
+008584
+008585
+008586
+008587
+008589
+008590
+008591
+008593
+008594
+008595
+008596
+008599
+008600
+008601
+008602
+008604
+008605
+008606
+008607
+008608
+008609
+008611
+008612
+008613
+008615
+008616
+008618
+008619
+008621
+008622
+008623
+008624
+008625
+008626
+008627
+008628
+008629
+008631
+008632
+008634
+008636
+008637
+008638
+008639
+008640
+008641
+008642
+008643
+008644
+008645
+008647
+008648
+008649
+008650
+008651
+008652
+008654
+008655
+008656
+008658
+008659
+008660
+008661
+008662
+008663
+008665
+008666
+008667
+008669
+008670
+008671
+008672
+008673
+008674
+008675
+008676
+008677
+008678
+008679
+008680
+008681
+008682
+008684
+008685
+008686
+008687
+008688
+008689
+008690
+008693
+008695
+008698
+008699
+008700
+008702
+008703
+008705
+008706
+008709
+008710
+008711
+008712
+008713
+008714
+008715
+008716
+008717
+008718
+008719
+008721
+008722
+008723
+008724
+008726
+008727
+008728
+008729
+008731
+008732
+008733
+008735
+008736
+008737
+008738
+008741
+008742
+008743
+008744
+008745
+008746
+008747
+008750
+008751
+008752
+008753
+008754
+008756
+008757
+008760
+008762
+008763
+008764
+008765
+008766
+008767
+008768
+008769
+008770
+008771
+008772
+008773
+008776
+008777
+008778
+008779
+008780
+008781
+008783
+008784
+008785
+008786
+008787
+008788
+008789
+008790
+008791
+008792
+008793
+008794
+008795
+008796
+008797
+008798
+008799
+008800
+008802
+008804
+008805
+008806
+008808
+008809
+008810
+008811
+008812
+008813
+008814
+008815
+008816
+008819
+008820
+008821
+008823
+008825
+008826
+008827
+008829
+008830
+008831
+008832
+008833
+008834
+008836
+008839
+008841
+008842
+008844
+008845
+008846
+008847
+008848
+008849
+008850
+008852
+008854
+008855
+008856
+008857
+008858
+008860
+008863
+008864
+008865
+008866
+008867
+008868
+008869
+008870
+008872
+008873
+008874
+008875
+008876
+008878
+008879
+008880
+008881
+008882
+008883
+008884
+008885
+008886
+008889
+008890
+008891
+008892
+008893
+008894
+008896
+008897
+008898
+008899
+008901
+008903
+008907
+008908
+008909
+008911
+008912
+008913
+008914
+008915
+008916
+008917
+008918
+008919
+008920
+008921
+008922
+008923
+008924
+008925
+008926
+008928
+008929
+008930
+008931
+008932
+008933
+008935
+008937
+008938
+008940
+008941
+008942
+008945
+008946
+008947
+008948
+008949
+008950
+008951
+008952
+008954
+008956
+008957
+008958
+008959
+008960
+008961
+008962
+008963
+008964
+008965
+008968
+008969
+008972
+008974
+008975
+008976
+008977
+008978
+008979
+008980
+008981
+008983
+008985
+008986
+008987
+008988
+008989
+008990
+008991
+008992
+008993
+008994
+008996
+008997
+008999
+009000
+009003
+009004
+009005
+009006
+009007
+009009
+009010
+009011
+009012
+009013
+009014
+009015
+009016
+009017
+009018
+009019
+009020
+009021
+009023
+009024
+009025
+009026
+009027
+009028
+009029
+009030
+009032
+009033
+009034
+009035
+009036
+009037
+009038
+009039
+009040
+009042
+009044
+009045
+009046
+009047
+009048
+009050
+009051
+009053
+009054
+009056
+009057
+009060
+009061
+009062
+009063
+009064
+009065
+009066
+009067
+009068
+009069
+009070
+009071
+009073
+009074
+009076
+009078
+009079
+009080
+009081
+009082
+009083
+009085
+009086
+009087
+009089
+009090
+009091
+009092
+009093
+009094
+009095
+009097
+009099
+009100
+009101
+009104
+009105
+009106
+009107
+009108
+009109
+009110
+009111
+009112
+009114
+009115
+009116
+009117
+009118
+009119
+009120
+009121
+009122
+009124
+009126
+009127
+009128
+009129
+009130
+009131
+009132
+009133
+009134
+009136
+009138
+009139
+009141
+009142
+009143
+009144
+009145
+009146
+009147
+009149
+009151
+009152
+009153
+009154
+009155
+009156
+009157
+009158
+009159
+009160
+009162
+009163
+009164
+009166
+009167
+009168
+009169
+009170
+009172
+009173
+009174
+009175
+009176
+009177
+009178
+009179
+009180
+009182
+009183
+009185
+009186
+009188
+009189
+009190
+009191
+009192
+009193
+009194
+009195
+009196
+009197
+009198
+009200
+009201
+009202
+009203
+009204
+009205
+009206
+009208
+009210
+009211
+009213
+009214
+009215
+009217
+009218
+009219
+009221
+009222
+009223
+009224
+009226
+009227
+009228
+009229
+009231
+009232
+009234
+009235
+009236
+009237
+009239
+009240
+009241
+009242
+009243
+009245
+009246
+009247
+009248
+009249
+009250
+009253
+009254
+009255
+009256
+009257
+009258
+009259
+009260
+009261
+009262
+009263
+009264
+009265
+009266
+009267
+009268
+009269
+009271
+009272
+009274
+009275
+009276
+009277
+009278
+009279
+009280
+009281
+009282
+009284
+009285
+009286
+009288
+009290
+009292
+009293
+009294
+009295
+009296
+009297
+009299
+009300
+009301
+009304
+009305
+009306
+009307
+009308
+009309
+009310
+009311
+009312
+009313
+009315
+009317
+009318
+009319
+009320
+009321
+009322
+009323
+009324
+009325
+009326
+009327
+009328
+009329
+009330
+009333
+009334
+009335
+009336
+009337
+009339
+009340
+009341
+009342
+009343
+009344
+009345
+009346
+009347
+009348
+009350
+009353
+009356
+009358
+009360
+009361
+009362
+009364
+009365
+009366
+009367
+009368
+009369
+009371
+009372
+009374
+009375
+009376
+009378
+009379
+009380
+009381
+009382
+009384
+009386
+009387
+009388
+009389
+009390
+009391
+009392
+009393
+009394
+009395
+009396
+009397
+009398
+009403
+009404
+009406
+009407
+009408
+009409
+009411
+009412
+009413
+009414
+009415
+009416
+009417
+009418
+009419
+009420
+009422
+009423
+009424
+009426
+009427
+009428
+009429
+009430
+009431
+009434
+009435
+009436
+009438
+009439
+009440
+009442
+009444
+009446
+009447
+009448
+009451
+009452
+009453
+009454
+009456
+009457
+009458
+009460
+009461
+009463
+009464
+009465
+009466
+009467
+009468
+009469
+009470
+009471
+009472
+009473
+009474
+009475
+009476
+009480
+009481
+009482
+009483
+009484
+009486
+009487
+009489
+009490
+009491
+009492
+009494
+009495
+009496
+009497
+009498
+009499
+009500
+009501
+009502
+009503
+009504
+009505
+009506
+009507
+009508
+009509
+009510
+009512
+009513
+009514
+009515
+009518
+009520
+009522
+009523
+009524
+009525
+009526
+009527
+009528
+009529
+009530
+009531
+009532
+009533
+009534
+009536
+009538
+009540
+009542
+009544
+009545
+009546
+009547
+009548
+009549
+009550
+009551
+009552
+009553
+009555
+009557
+009558
+009559
+009560
+009563
+009564
+009565
+009567
+009568
+009569
+009570
+009571
+009572
+009573
+009574
+009575
+009576
+009578
+009580
+009581
+009582
+009583
+009585
+009586
+009587
+009588
+009589
+009590
+009591
+009592
+009593
+009594
+009595
+009596
+009597
+009598
+009599
+009601
+009602
+009603
+009604
+009605
+009607
+009610
+009611
+009612
+009614
+009615
+009616
+009617
+009618
+009619
+009620
+009621
+009622
+009623
+009624
+009627
+009628
+009629
+009630
+009631
+009632
+009633
+009634
+009635
+009636
+009637
+009638
+009639
+009640
+009641
+009642
+009644
+009646
+009647
+009648
+009649
+009650
+009651
+009652
+009653
+009655
+009656
+009657
+009658
+009659
+009660
+009661
+009662
+009663
+009664
+009665
+009667
+009668
+009669
+009670
+009672
+009674
+009675
+009676
+009677
+009678
+009679
+009680
+009681
+009682
+009683
+009684
+009685
+009686
+009687
+009688
+009690
+009691
+009692
+009693
+009694
+009695
+009696
+009697
+009698
+009699
+009700
+009701
+009702
+009704
+009705
+009706
+009708
+009711
+009713
+009715
+009718
+009719
+009721
+009722
+009723
+009724
+009725
+009728
+009729
+009731
+009732
+009733
+009734
+009735
+009736
+009737
+009738
+009739
+009740
+009741
+009742
+009743
+009744
+009745
+009746
+009747
+009748
+009752
+009753
+009754
+009755
+009756
+009757
+009759
+009760
+009761
+009763
+009764
+009765
+009766
+009767
+009769
+009770
+009772
+009774
+009775
+009778
+009779
+009780
+009781
+009782
+009783
+009784
+009785
+009786
+009787
+009788
+009789
+009791
+009792
+009793
+009794
+009795
+009796
+009797
+009798
+009799
+009800
+009801
+009802
+009803
+009804
+009805
+009806
+009807
+009808
+009809
+009810
+009811
+009812
+009813
+009814
+009815
+009817
+009818
+009819
+009820
+009821
+009822
+009823
+009824
+009825
+009826
+009827
+009828
+009829
+009830
+009832
+009833
+009834
+009835
+009836
+009837
+009838
+009839
+009840
+009842
+009845
+009846
+009847
+009848
+009850
+009851
+009853
+009854
+009855
+009856
+009857
+009858
+009859
+009860
+009861
+009862
+009864
+009865
+009866
+009868
+009869
+009870
+009872
+009873
+009874
+009875
+009876
+009878
+009879
+009882
+009883
+009884
+009885
+009886
+009887
+009888
+009889
+009891
+009892
+009893
+009895
+009896
+009897
+009898
+009899
+009900
+009902
+009904
+009906
+009907
+009909
+009911
+009912
+009914
+009915
+009916
+009918
+009920
+009921
+009922
+009923
+009925
+009927
+009928
+009929
+009930
+009931
+009932
+009934
+009935
+009936
+009937
+009938
+009939
+009940
+009943
+009944
+009947
+009948
+009949
+009950
+009951
+009952
+009953
+009956
+009957
+009959
+009962
+009963
+009964
+009965
+009966
+009967
+009969
+009970
+009971
+009973
+009974
+009975
+009976
+009978
+009980
+009981
+009982
+009983
+009984
+009985
+009987
+009988
+009989
+009990
+009993
+009994
+009995
+009997
+009998
+009999
+010001
+010002
+010004
+010005
+010006
+010008
+010009
+010010
+010011
+010012
+010013
+010014
+010015
+010017
+010019
+010020
+010021
+010022
+010024
+010025
+010027
+010030
+010031
+010033
+010034
+010035
+010036
+010038
+010040
+010041
+010042
+010044
+010045
+010047
+010048
+010049
+010050
+010051
+010053
+010054
+010055
+010056
+010058
+010059
+010060
+010061
+010062
+010063
+010064
+010065
+010066
+010067
+010069
+010070
+010071
+010073
+010074
+010075
+010077
+010078
+010079
+010081
+010084
+010085
+010086
+010087
+010089
+010090
+010091
+010092
+010093
+010094
+010095
+010096
+010097
+010098
+010099
+010100
+010101
+010102
+010103
+010104
+010105
+010106
+010107
+010108
+010109
+010111
+010112
+010113
+010115
+010117
+010118
+010119
+010120
+010121
+010122
+010123
+010124
+010125
+010127
+010128
+010129
+010132
+010133
+010134
+010136
+010137
+010138
+010139
+010140
+010144
+010146
+010147
+010149
+010151
+010152
+010153
+010154
+010155
+010156
+010158
+010159
+010163
+010166
+010168
+010169
+010170
+010171
+010172
+010173
+010175
+010176
+010177
+010178
+010179
+010180
+010181
+010184
+010185
+010186
+010187
+010188
+010190
+010191
+010192
+010194
+010197
+010198
+010200
+010201
+010202
+010203
+010204
+010205
+010206
+010207
+010208
+010209
+010210
+010211
+010212
+010214
+010215
+010216
+010217
+010218
+010219
+010220
+010221
+010222
+010224
+010225
+010227
+010228
+010229
+010230
+010231
+010232
+010234
+010235
+010237
+010239
+010240
+010241
+010242
+010243
+010244
+010246
+010247
+010249
+010250
+010251
+010252
+010253
+010255
+010256
+010257
+010258
+010259
+010260
+010261
+010262
+010263
+010264
+010265
+010266
+010267
+010268
+010269
+010271
+010272
+010273
+010274
+010276
+010277
+010278
+010279
+010281
+010283
+010284
+010285
+010287
+010289
+010290
+010291
+010292
+010293
+010294
+010295
+010296
+010297
+010299
+010300
+010301
+010302
+010303
+010304
+010306
+010307
+010309
+010310
+010311
+010312
+010313
+010314
+010316
+010318
+010319
+010320
+010321
+010322
+010323
+010324
+010325
+010326
+010328
+010330
+010332
+010333
+010334
+010335
+010336
+010337
+010338
+010339
+010340
+010341
+010344
+010345
+010346
+010347
+010348
+010349
+010350
+010351
+010352
+010353
+010354
+010355
+010356
+010357
+010358
+010359
+010361
+010362
+010363
+010364
+010365
+010366
+010367
+010368
+010369
+010370
+010371
+010372
+010373
+010374
+010375
+010376
+010377
+010379
+010380
+010382
+010383
+010385
+010386
+010387
+010389
+010391
+010393
+010394
+010395
+010396
+010397
+010398
+010399
+010400
+010402
+010403
+010406
+010407
+010408
+010410
+010411
+010412
+010413
+010414
+010415
+010416
+010417
+010418
+010419
+010420
+010422
+010423
+010424
+010425
+010426
+010427
+010428
+010430
+010431
+010433
+010434
+010435
+010436
+010437
+010438
+010440
+010442
+010444
+010446
+010448
+010449
+010450
+010451
+010452
+010453
+010454
+010455
+010457
+010459
+010460
+010461
+010462
+010463
+010465
+010466
+010467
+010468
+010469
+010470
+010471
+010472
+010473
+010474
+010475
+010476
+010477
+010478
+010480
+010481
+010482
+010483
+010484
+010485
+010486
+010487
+010488
+010489
+010490
+010491
+010493
+010494
+010497
+010498
+010500
+010501
+010502
+010503
+010504
+010505
+010506
+010507
+010508
+010510
+010511
+010513
+010514
+010515
+010516
+010517
+010518
+010519
+010521
+010522
+010523
+010524
+010527
+010528
+010530
+010531
+010532
+010533
+010534
+010535
+010536
+010537
+010538
+010539
+010540
+010542
+010543
+010544
+010548
+010550
+010551
+010554
+010555
+010556
+010559
+010560
+010561
+010562
+010564
+010566
+010567
+010568
+010569
+010570
+010571
+010572
+010573
+010574
+010575
+010577
+010578
+010579
+010580
+010581
+010582
+010583
+010584
+010585
+010589
+010590
+010591
+010592
+010593
+010594
+010595
+010596
+010597
+010598
+010599
+010602
+010603
+010604
+010605
+010606
+010607
+010608
+010609
+010610
+010611
+010612
+010613
+010614
+010615
+010619
+010620
+010621
+010622
+010623
+010624
+010625
+010626
+010627
+010628
+010629
+010630
+010631
+010632
+010633
+010634
+010636
+010638
+010640
+010641
+010643
+010644
+010645
+010646
+010649
+010650
+010652
+010653
+010654
+010655
+010656
+010657
+010659
+010660
+010661
+010662
+010663
+010664
+010666
+010667
+010668
+010669
+010670
+010672
+010673
+010674
+010675
+010676
+010677
+010678
+010679
+010680
+010681
+010682
+010683
+010684
+010685
+010686
+010687
+010688
+010689
+010690
+010691
+010692
+010693
+010694
+010695
+010696
+010697
+010700
+010701
+010702
+010704
+010705
+010707
+010708
+010709
+010710
+010712
+010714
+010715
+010716
+010717
+010718
+010719
+010721
+010722
+010723
+010724
+010725
+010726
+010727
+010728
+010730
+010732
+010733
+010734
+010735
+010737
+010738
+010740
+010741
+010742
+010743
+010744
+010746
+010747
+010748
+010749
+010750
+010751
+010754
+010755
+010757
+010758
+010760
+010761
+010762
+010763
+010764
+010765
+010766
+010767
+010768
+010769
+010770
+010771
+010772
+010774
+010775
+010776
+010777
+010778
+010779
+010780
+010781
+010782
+010783
+010786
+010787
+010788
+010789
+010790
+010791
+010793
+010794
+010796
+010798
+010799
+010800
+010801
+010802
+010803
+010804
+010805
+010806
+010807
+010808
+010809
+010811
+010812
+010813
+010814
+010815
+010818
+010820
+010821
+010822
+010824
+010825
+010826
+010829
+010830
+010831
+010832
+010833
+010834
+010836
+010837
+010838
+010839
+010840
+010841
+010842
+010844
+010845
+010846
+010847
+010848
+010849
+010851
+010853
+010854
+010855
+010856
+010857
+010858
+010859
+010860
+010861
+010862
+010864
+010865
+010866
+010867
+010868
+010869
+010870
+010871
+010872
+010873
+010875
+010876
+010877
+010879
+010880
+010881
+010882
+010883
+010884
+010885
+010886
+010887
+010888
+010889
+010890
+010891
+010892
+010893
+010894
+010896
+010899
+010900
+010903
+010904
+010906
+010907
+010908
+010910
+010911
+010912
+010913
+010914
+010916
+010918
+010920
+010922
+010923
+010924
+010925
+010926
+010929
+010930
+010931
+010932
+010933
+010934
+010935
+010937
+010939
+010941
+010942
+010943
+010944
+010947
+010948
+010949
+010950
+010951
+010952
+010953
+010954
+010955
+010957
+010958
+010959
+010961
+010963
+010965
+010966
+010968
+010969
+010970
+010971
+010972
+010973
+010974
+010975
+010977
+010979
+010980
+010981
+010982
+010983
+010984
+010986
+010987
+010988
+010989
+010990
+010991
+010992
+010993
+010994
+010997
+010998
+010999
+011000
+011001
+011002
+011003
+011005
+011006
+011007
+011009
+011010
+011011
+011012
+011013
+011015
+011016
+011017
+011019
+011020
+011023
+011024
+011025
+011027
+011029
+011030
+011031
+011033
+011034
+011037
+011038
+011039
+011040
+011041
+011042
+011043
+011044
+011045
+011047
+011048
+011049
+011050
+011051
+011052
+011053
+011054
+011056
+011057
+011058
+011060
+011061
+011062
+011063
+011064
+011065
+011066
+011067
+011068
+011069
+011070
+011071
+011072
+011076
+011077
+011078
+011079
+011080
+011081
+011082
+011083
+011085
+011086
+011087
+011088
+011090
+011092
+011093
+011094
+011096
+011097
+011098
+011099
+011100
+011102
+011103
+011104
+011105
+011106
+011107
+011108
+011109
+011110
+011111
+011112
+011113
+011114
+011115
+011116
+011117
+011118
+011119
+011120
+011121
+011122
+011123
+011124
+011125
+011129
+011130
+011131
+011134
+011135
+011137
+011138
+011139
+011140
+011141
+011142
+011143
+011145
+011147
+011148
+011149
+011150
+011151
+011152
+011153
+011154
+011155
+011156
+011157
+011159
+011160
+011161
+011163
+011164
+011165
+011166
+011167
+011168
+011169
+011170
+011172
+011173
+011174
+011175
+011176
+011177
+011178
+011179
+011180
+011182
+011183
+011185
+011186
+011187
+011188
+011190
+011191
+011192
+011193
+011194
+011195
+011196
+011197
+011198
+011200
+011201
+011202
+011203
+011204
+011205
+011206
+011208
+011209
+011212
+011214
+011217
+011218
+011219
+011221
+011225
+011227
+011228
+011229
+011230
+011231
+011232
+011233
+011234
+011235
+011236
+011237
+011238
+011239
+011240
+011241
+011242
+011243
+011244
+011245
+011246
+011247
+011248
+011250
+011251
+011253
+011254
+011256
+011258
+011259
+011260
+011262
+011263
+011264
+011265
+011266
+011267
+011268
+011269
+011272
+011273
+011274
+011275
+011276
+011277
+011278
+011279
+011281
+011282
+011283
+011285
+011286
+011287
+011288
+011290
+011291
+011292
+011293
+011294
+011296
+011298
+011299
+011300
+011302
+011303
+011304
+011305
+011306
+011308
+011309
+011311
+011312
+011313
+011314
+011315
+011316
+011318
+011319
+011320
+011321
+011322
+011324
+011325
+011326
+011327
+011328
+011329
+011330
+011331
+011333
+011335
+011336
+011337
+011338
+011341
+011344
+011345
+011346
+011347
+011348
+011349
+011350
+011352
+011353
+011354
+011355
+011357
+011358
+011360
+011361
+011362
+011364
+011365
+011366
+011367
+011368
+011369
+011370
+011371
+011373
+011374
+011375
+011376
+011377
+011380
+011381
+011382
+011383
+011386
+011388
+011389
+011390
+011391
+011392
+011393
+011394
+011395
+011398
+011399
+011400
+011401
+011403
+011404
+011405
+011407
+011408
+011409
+011410
+011411
+011413
+011414
+011415
+011416
+011417
+011418
+011420
+011421
+011422
+011423
+011424
+011425
+011426
+011427
+011428
+011429
+011431
+011432
+011433
+011434
+011437
+011439
+011440
+011443
+011444
+011445
+011446
+011448
+011449
+011450
+011451
+011452
+011453
+011454
+011455
+011456
+011457
+011459
+011460
+011461
+011462
+011464
+011465
+011466
+011467
+011468
+011469
+011470
+011472
+011473
+011474
+011475
+011476
+011478
+011479
+011480
+011481
+011482
+011483
+011485
+011486
+011487
+011488
+011489
+011490
+011492
+011494
+011495
+011496
+011497
+011498
+011499
+011500
+011501
+011502
+011503
+011505
+011506
+011507
+011508
+011509
+011510
+011512
+011513
+011514
+011515
+011516
+011517
+011518
+011519
+011520
+011521
+011522
+011523
+011524
+011525
+011526
+011527
+011528
+011529
+011530
+011531
+011532
+011533
+011535
+011537
+011538
+011539
+011540
+011541
+011542
+011544
+011545
+011546
+011547
+011548
+011549
+011551
+011552
+011553
+011554
+011556
+011557
+011559
+011560
+011562
+011563
+011564
+011565
+011568
+011570
+011571
+011572
+011574
+011575
+011578
+011579
+011580
+011581
+011582
+011584
+011585
+011586
+011587
+011588
+011591
+011593
+011596
+011597
+011598
+011599
+011600
+011601
+011602
+011603
+011604
+011605
+011606
+011610
+011612
+011613
+011614
+011615
+011616
+011617
+011618
+011619
+011620
+011621
+011623
+011624
+011625
+011626
+011627
+011628
+011631
+011633
+011634
+011635
+011636
+011637
+011638
+011639
+011642
+011644
+011646
+011647
+011648
+011649
+011650
+011651
+011654
+011655
+011656
+011657
+011658
+011659
+011660
+011661
+011662
+011663
+011664
+011665
+011666
+011669
+011671
+011672
+011674
+011675
+011676
+011677
+011678
+011679
+011680
+011681
+011685
+011686
+011688
+011689
+011690
+011691
+011692
+011693
+011695
+011696
+011697
+011699
+011700
+011701
+011702
+011704
+011705
+011706
+011707
+011708
+011709
+011710
+011711
+011712
+011713
+011714
+011715
+011718
+011719
+011720
+011721
+011722
+011723
+011724
+011725
+011726
+011727
+011728
+011729
+011730
+011733
+011734
+011735
+011736
+011737
+011739
+011740
+011741
+011742
+011744
+011745
+011746
+011747
+011748
+011749
+011750
+011752
+011753
+011756
+011758
+011759
+011760
+011761
+011762
+011763
+011764
+011765
+011766
+011768
+011769
+011770
+011771
+011772
+011773
+011774
+011775
+011776
+011778
+011779
+011780
+011781
+011783
+011784
+011786
+011787
+011788
+011789
+011790
+011791
+011792
+011794
+011799
+011800
+011801
+011802
+011803
+011804
+011807
+011808
+011810
+011814
+011815
+011816
+011817
+011819
+011820
+011822
+011824
+011826
+011828
+011829
+011830
+011831
+011832
+011835
+011836
+011837
+011838
+011839
+011840
+011842
+011843
+011844
+011845
+011846
+011847
+011848
+011849
+011850
+011851
+011852
+011853
+011854
+011855
+011856
+011857
+011858
+011859
+011860
+011861
+011862
+011865
+011866
+011867
+011868
+011869
+011870
+011871
+011872
+011874
+011875
+011876
+011877
+011878
+011879
+011880
+011881
+011882
+011883
+011884
+011885
+011886
+011887
+011888
+011889
+011890
+011891
+011893
+011894
+011895
+011896
+011898
+011899
+011900
+011901
+011902
+011903
+011905
+011908
+011909
+011912
+011913
+011914
+011915
+011916
+011917
+011918
+011919
+011920
+011921
+011922
+011923
+011924
+011925
+011927
+011928
+011929
+011930
+011931
+011932
+011933
+011934
+011936
+011938
+011939
+011941
+011942
+011943
+011944
+011945
+011946
+011947
+011948
+011949
+011950
+011951
+011952
+011953
+011954
+011955
+011957
+011958
+011959
+011960
+011961
+011963
+011964
+011966
+011967
+011968
+011969
+011970
+011971
+011973
+011974
+011975
+011976
+011977
+011979
+011980
+011981
+011982
+011983
+011984
+011986
+011987
+011989
+011990
+011992
+011995
+011996
+011998
+011999
+012000
+012002
+012003
+012004
+012006
+012007
+012008
+012009
+012010
+012011
+012012
+012013
+012014
+012015
+012016
+012017
+012018
+012019
+012022
+012024
+012026
+012027
+012028
+012029
+012030
+012031
+012033
+012034
+012035
+012036
+012037
+012038
+012039
+012040
+012042
+012043
+012045
+012047
+012048
+012050
+012052
+012053
+012054
+012055
+012056
+012057
+012058
+012061
+012062
+012063
+012064
+012066
+012067
+012068
+012070
+012071
+012072
+012073
+012074
+012075
+012076
+012077
+012078
+012079
+012080
+012081
+012082
+012083
+012085
+012086
+012088
+012089
+012090
+012091
+012092
+012093
+012095
+012096
+012097
+012100
+012101
+012102
+012103
+012104
+012105
+012106
+012107
+012108
+012109
+012110
+012111
+012112
+012113
+012114
+012115
+012116
+012119
+012120
+012121
+012122
+012123
+012124
+012125
+012126
+012128
+012129
+012130
+012131
+012133
+012134
+012135
+012137
+012138
+012139
+012140
+012141
+012142
+012144
+012146
+012147
+012148
+012149
+012150
+012151
+012152
+012154
+012155
+012156
+012157
+012159
+012161
+012162
+012164
+012166
+012169
+012170
+012171
+012172
+012173
+012174
+012175
+012176
+012177
+012178
+012180
+012181
+012182
+012183
+012184
+012185
+012186
+012190
+012191
+012192
+012194
+012196
+012197
+012198
+012199
+012201
+012202
+012203
+012204
+012205
+012206
+012207
+012208
+012209
+012210
+012211
+012212
+012213
+012214
+012216
+012217
+012218
+012221
+012223
+012224
+012226
+012227
+012228
+012229
+012230
+012231
+012232
+012233
+012234
+012236
+012237
+012239
+012241
+012242
+012243
+012244
+012245
+012246
+012247
+012248
+012249
+012251
+012252
+012253
+012254
+012255
+012256
+012257
+012258
+012259
+012260
+012261
+012262
+012266
+012268
+012269
+012270
+012271
+012272
+012273
+012274
+012275
+012276
+012278
+012279
+012281
+012283
+012284
+012285
+012286
+012287
+012288
+012289
+012291
+012292
+012293
+012294
+012295
+012297
+012298
+012301
+012303
+012304
+012305
+012307
+012311
+012312
+012313
+012314
+012315
+012316
+012317
+012318
+012319
+012322
+012323
+012325
+012327
+012328
+012329
+012331
+012333
+012334
+012335
+012336
+012338
+012339
+012341
+012342
+012344
+012345
+012346
+012348
+012349
+012350
+012351
+012352
+012353
+012354
+012357
+012358
+012359
+012360
+012363
+012364
+012366
+012367
+012368
+012369
+012370
+012372
+012373
+012374
+012375
+012377
+012378
+012379
+012380
+012381
+012382
+012383
+012384
+012386
+012387
+012389
+012390
+012391
+012392
+012394
+012395
+012396
+012401
+012402
+012403
+012404
+012405
+012406
+012407
+012408
+012409
+012410
+012411
+012412
+012413
+012415
+012416
+012417
+012418
+012419
+012421
+012422
+012424
+012425
+012426
+012427
+012428
+012430
+012431
+012432
+012433
+012435
+012436
+012438
+012439
+012440
+012441
+012442
+012443
+012444
+012446
+012447
+012448
+012449
+012450
+012451
+012452
+012453
+012455
+012456
+012457
+012458
+012460
+012461
+012462
+012463
+012464
+012465
+012466
+012467
+012468
+012469
+012470
+012472
+012473
+012475
+012476
+012479
+012480
+012481
+012482
+012483
+012485
+012486
+012487
+012489
+012490
+012493
+012494
+012496
+012497
+012499
+012500
+012501
+012502
+012503
+012504
+012505
+012507
+012509
+012510
+012511
+012512
+012513
+012514
+012516
+012517
+012518
+012519
+012520
+012521
+012522
+012524
+012525
+012526
+012528
+012531
+012532
+012533
+012534
+012535
+012536
+012537
+012538
+012539
+012540
+012541
+012542
+012544
+012545
+012546
+012547
+012548
+012549
+012550
+012551
+012552
+012553
+012556
+012557
+012560
+012562
+012563
+012564
+012565
+012566
+012569
+012570
+012571
+012572
+012573
+012574
+012575
+012576
+012580
+012581
+012582
+012583
+012585
+012586
+012588
+012589
+012590
+012591
+012592
+012593
+012594
+012596
+012597
+012598
+012599
+012600
+012603
+012604
+012605
+012606
+012607
+012608
+012609
+012610
+012612
+012613
+012614
+012617
+012618
+012619
+012620
+012621
+012623
+012624
+012626
+012627
+012628
+012629
+012630
+012631
+012632
+012634
+012635
+012636
+012637
+012638
+012641
+012642
+012643
+012646
+012647
+012648
+012649
+012650
+012651
+012652
+012653
+012654
+012656
+012658
+012659
+012660
+012661
+012662
+012663
+012664
+012665
+012666
+012667
+012669
+012671
+012672
+012674
+012676
+012677
+012678
+012680
+012681
+012682
+012683
+012684
+012685
+012687
+012688
+012690
+012692
+012693
+012694
+012695
+012697
+012699
+012700
+012701
+012702
+012703
+012704
+012705
+012706
+012708
+012709
+012710
+012711
+012714
+012715
+012717
+012719
+012721
+012722
+012723
+012724
+012725
+012726
+012727
+012728
+012729
+012730
+012731
+012732
+012734
+012736
+012737
+012738
+012739
+012740
+012742
+012743
+012744
+012745
+012746
+012747
+012748
+012749
+012750
+012751
+012752
+012754
+012755
+012756
+012757
+012758
+012759
+012760
+012762
+012763
+012764
+012765
+012766
+012767
+012768
+012769
+012770
+012771
+012772
+012773
+012774
+012775
+012776
+012777
+012778
+012779
+012780
+012781
+012783
+012784
+012785
+012786
+012787
+012788
+012790
+012792
+012794
+012796
+012797
+012800
+012801
+012802
+012803
+012804
+012806
+012809
+012811
+012812
+012814
+012815
+012816
+012817
+012818
+012819
+012820
+012821
+012822
+012823
+012824
+012825
+012826
+012827
+012828
+012829
+012831
+012832
+012834
+012835
+012838
+012839
+012840
+012841
+012842
+012843
+012845
+012846
+012847
+012848
+012849
+012850
+012851
+012852
+012853
+012854
+012855
+012858
+012859
+012860
+012861
+012862
+012863
+012864
+012865
+012866
+012867
+012868
+012869
+012871
+012872
+012873
+012874
+012875
+012876
+012878
+012879
+012880
+012881
+012882
+012884
+012885
+012886
+012887
+012888
+012889
+012890
+012893
+012894
+012895
+012896
+012897
+012898
+012899
+012900
+012902
+012904
+012906
+012907
+012908
+012909
+012910
+012911
+012912
+012914
+012915
+012916
+012917
+012918
+012919
+012920
+012921
+012922
+012923
+012924
+012926
+012928
+012929
+012931
+012932
+012933
+012934
+012935
+012936
+012937
+012938
+012939
+012943
+012944
+012945
+012947
+012948
+012950
+012952
+012953
+012954
+012955
+012957
+012958
+012959
+012960
+012961
+012963
+012964
+012965
+012966
+012967
+012970
+012971
+012972
+012973
+012974
+012975
+012976
+012977
+012978
+012979
+012980
+012982
+012983
+012984
+012986
+012987
+012988
+012989
+012990
+012991
+012994
+012995
+012996
+012997
+012999
+013001
+013002
+013005
+013006
+013008
+013009
+013011
+013012
+013014
+013016
+013017
+013018
+013019
+013020
+013021
+013024
+013025
+013026
+013027
+013028
+013029
+013030
+013032
+013033
+013034
+013035
+013036
+013037
+013038
+013039
+013040
+013042
+013043
+013044
+013045
+013047
+013048
+013049
+013051
+013052
+013053
+013054
+013055
+013058
+013059
+013061
+013062
+013063
+013064
+013065
+013066
+013067
+013069
+013070
+013072
+013073
+013077
+013078
+013079
+013080
+013081
+013082
+013083
+013084
+013085
+013086
+013089
+013090
+013091
+013092
+013094
+013095
+013096
+013097
+013098
+013099
+013100
+013102
+013103
+013104
+013105
+013106
+013107
+013108
+013109
+013110
+013111
+013113
+013114
+013115
+013116
+013117
+013118
+013119
+013120
+013121
+013123
+013124
+013126
+013127
+013128
+013129
+013131
+013132
+013133
+013134
+013135
+013137
+013138
+013139
+013140
+013141
+013142
+013144
+013145
+013146
+013147
+013148
+013149
+013150
+013151
+013152
+013153
+013155
+013156
+013158
+013159
+013161
+013162
+013163
+013165
+013166
+013167
+013168
+013169
+013170
+013172
+013173
+013176
+013177
+013178
+013179
+013180
+013181
+013183
+013184
+013185
+013186
+013187
+013188
+013189
+013191
+013192
+013193
+013194
+013195
+013196
+013197
+013198
+013199
+013200
+013201
+013202
+013203
+013204
+013205
+013206
+013209
+013210
+013211
+013213
+013214
+013215
+013216
+013217
+013218
+013219
+013220
+013223
+013225
+013226
+013227
+013228
+013229
+013230
+013231
+013232
+013233
+013234
+013235
+013236
+013237
+013238
+013239
+013240
+013241
+013242
+013243
+013245
+013246
+013247
+013248
+013250
+013251
+013252
+013254
+013256
+013257
+013258
+013259
+013261
+013263
+013265
+013266
+013267
+013268
+013269
+013270
+013271
+013272
+013273
+013274
+013275
+013276
+013277
+013279
+013280
+013281
+013282
+013283
+013284
+013285
+013288
+013290
+013291
+013292
+013293
+013295
+013296
+013297
+013298
+013299
+013300
+013301
+013302
+013303
+013304
+013306
+013307
+013308
+013309
+013310
+013311
+013312
+013313
+013319
+013321
+013322
+013323
+013324
+013325
+013326
+013327
+013328
+013329
+013330
+013331
+013332
+013333
+013334
+013335
+013337
+013338
+013340
+013341
+013342
+013345
+013346
+013347
+013348
+013349
+013351
+013353
+013354
+013355
+013356
+013357
+013359
+013360
+013361
+013362
+013364
+013365
+013366
+013367
+013368
+013369
+013370
+013372
+013374
+013375
+013376
+013377
+013378
+013379
+013380
+013381
+013383
+013384
+013385
+013386
+013387
+013390
+013391
+013392
+013393
+013394
+013395
+013398
+013399
+013400
+013401
+013402
+013405
+013406
+013407
+013408
+013409
+013410
+013412
+013413
+013414
+013416
+013418
+013421
+013422
+013424
+013425
+013427
+013428
+013429
+013430
+013432
+013433
+013434
+013436
+013437
+013438
+013439
+013441
+013442
+013443
+013445
+013446
+013447
+013448
+013450
+013452
+013453
+013455
+013456
+013457
+013458
+013459
+013460
+013461
+013462
+013463
+013464
+013465
+013466
+013470
+013472
+013473
+013477
+013478
+013479
+013480
+013481
+013482
+013483
+013484
+013486
+013487
+013488
+013489
+013490
+013491
+013492
+013493
+013494
+013495
+013496
+013497
+013498
+013499
+013500
+013501
+013502
+013503
+013504
+013505
+013506
+013507
+013508
+013509
+013510
+013513
+013515
+013516
+013517
+013518
+013520
+013521
+013522
+013523
+013524
+013525
+013526
+013527
+013528
+013530
+013531
+013532
+013533
+013534
+013535
+013536
+013537
+013538
+013539
+013540
+013541
+013542
+013544
+013545
+013547
+013548
+013550
+013551
+013552
+013553
+013554
+013555
+013556
+013557
+013559
+013560
+013563
+013564
+013565
+013566
+013569
+013570
+013571
+013572
+013574
+013575
+013576
+013577
+013578
+013580
+013581
+013582
+013583
+013584
+013585
+013588
+013589
+013590
+013591
+013593
+013594
+013595
+013596
+013598
+013599
+013600
+013603
+013604
+013606
+013607
+013609
+013611
+013612
+013613
+013614
+013615
+013616
+013617
+013618
+013620
+013621
+013622
+013623
+013624
+013625
+013626
+013627
+013628
+013629
+013630
+013631
+013635
+013637
+013639
+013640
+013642
+013643
+013644
+013649
+013650
+013651
+013653
+013655
+013656
+013657
+013658
+013659
+013660
+013661
+013662
+013663
+013664
+013666
+013667
+013669
+013670
+013672
+013673
+013674
+013676
+013677
+013678
+013679
+013680
+013681
+013683
+013684
+013685
+013686
+013687
+013688
+013690
+013691
+013692
+013693
+013694
+013696
+013697
+013698
+013699
+013701
+013702
+013704
+013705
+013706
+013707
+013708
+013709
+013711
+013712
+013713
+013714
+013715
+013716
+013717
+013718
+013720
+013721
+013722
+013723
+013724
+013725
+013726
+013727
+013729
+013730
+013731
+013732
+013733
+013734
+013737
+013738
+013739
+013740
+013741
+013742
+013743
+013744
+013746
+013748
+013749
+013750
+013751
+013752
+013755
+013756
+013758
+013759
+013760
+013762
+013764
+013767
+013769
+013770
+013771
+013772
+013773
+013774
+013775
+013776
+013779
+013781
+013782
+013783
+013784
+013785
+013786
+013787
+013788
+013789
+013790
+013791
+013792
+013793
+013794
+013795
+013797
+013799
+013800
+013801
+013802
+013805
+013807
+013808
+013809
+013813
+013814
+013815
+013816
+013817
+013818
+013819
+013820
+013821
+013822
+013824
+013825
+013826
+013827
+013828
+013829
+013830
+013831
+013832
+013834
+013835
+013836
+013837
+013838
+013839
+013840
+013841
+013842
+013843
+013844
+013845
+013847
+013848
+013850
+013851
+013852
+013853
+013854
+013856
+013857
+013858
+013859
+013860
+013861
+013862
+013863
+013864
+013865
+013866
+013867
+013868
+013869
+013870
+013872
+013873
+013875
+013876
+013877
+013878
+013881
+013882
+013883
+013884
+013885
+013886
+013887
+013888
+013889
+013890
+013891
+013892
+013893
+013894
+013895
+013896
+013897
+013899
+013900
+013901
+013902
+013903
+013904
+013906
+013907
+013908
+013909
+013912
+013913
+013914
+013915
+013916
+013917
+013918
+013919
+013920
+013921
+013922
+013923
+013924
+013925
+013928
+013930
+013931
+013932
+013933
+013934
+013935
+013936
+013938
+013939
+013940
+013941
+013942
+013943
+013944
+013945
+013946
+013947
+013948
+013950
+013951
+013953
+013954
+013956
+013957
+013958
+013959
+013960
+013961
+013962
+013964
+013965
+013966
+013967
+013968
+013970
+013971
+013972
+013973
+013975
+013976
+013977
+013979
+013982
+013983
+013984
+013985
+013986
+013987
+013988
+013989
+013990
+013991
+013992
+013993
+013994
+013995
+013996
+013997
+013999
+014000
+014001
+014003
+014004
+014005
+014006
+014008
+014009
+014011
+014013
+014014
+014015
+014016
+014017
+014018
+014019
+014022
+014023
+014024
+014026
+014027
+014028
+014029
+014031
+014032
+014033
+014034
+014035
+014036
+014037
+014038
+014040
+014041
+014042
+014044
+014045
+014048
+014050
+014052
+014053
+014054
+014055
+014056
+014057
+014058
+014059
+014060
+014061
+014062
+014063
+014064
+014065
+014066
+014067
+014068
+014069
+014070
+014071
+014073
+014074
+014075
+014076
+014079
+014080
+014081
+014082
+014083
+014084
+014085
+014086
+014089
+014090
+014091
+014092
+014094
+014095
+014096
+014097
+014098
+014099
+014100
+014101
+014102
+014103
+014104
+014105
+014106
+014107
+014111
+014113
+014114
+014115
+014116
+014117
+014118
+014121
+014122
+014124
+014125
+014126
+014127
+014128
+014129
+014130
+014131
+014132
+014133
+014134
+014135
+014136
+014137
+014138
+014140
+014141
+014142
+014143
+014144
+014145
+014147
+014148
+014149
+014150
+014151
+014152
+014153
+014154
+014155
+014156
+014157
+014158
+014159
+014161
+014162
+014163
+014164
+014165
+014166
+014167
+014168
+014170
+014172
+014173
+014174
+014175
+014176
+014177
+014178
+014179
+014180
+014181
+014182
+014183
+014184
+014186
+014187
+014188
+014189
+014190
+014191
+014193
+014196
+014197
+014198
+014199
+014201
+014202
+014203
+014204
+014206
+014207
+014208
+014209
+014210
+014211
+014212
+014213
+014216
+014217
+014218
+014219
+014220
+014221
+014223
+014224
+014225
+014226
+014227
+014228
+014229
+014230
+014231
+014233
+014235
+014236
+014237
+014238
+014239
+014240
+014241
+014242
+014243
+014246
+014248
+014249
+014250
+014251
+014254
+014255
+014256
+014257
+014258
+014259
+014260
+014261
+014262
+014263
+014264
+014265
+014266
+014267
+014269
+014270
+014271
+014274
+014275
+014276
+014277
+014278
+014281
+014282
+014284
+014286
+014287
+014288
+014289
+014291
+014292
+014293
+014294
+014296
+014297
+014298
+014299
+014300
+014301
+014302
+014303
+014306
+014308
+014309
+014314
+014315
+014316
+014317
+014319
+014320
+014321
+014322
+014323
+014324
+014325
+014327
+014328
+014329
+014331
+014332
+014333
+014334
+014335
+014337
+014338
+014339
+014340
+014341
+014343
+014344
+014345
+014346
+014348
+014349
+014350
+014353
+014354
+014355
+014356
+014357
+014358
+014359
+014360
+014363
+014364
+014365
+014366
+014367
+014368
+014369
+014370
+014371
+014372
+014373
+014374
+014375
+014376
+014377
+014378
+014379
+014381
+014382
+014383
+014385
+014386
+014388
+014390
+014391
+014393
+014394
+014396
+014397
+014398
+014399
+014400
+014401
+014402
+014403
+014404
+014405
+014406
+014407
+014408
+014409
+014410
+014411
+014412
+014413
+014414
+014415
+014417
+014418
+014419
+014421
+014423
+014424
+014425
+014427
+014429
+014430
+014433
+014435
+014438
+014439
+014440
+014441
+014442
+014443
+014446
+014447
+014449
+014450
+014451
+014452
+014453
+014454
+014455
+014456
+014458
+014459
+014460
+014461
+014462
+014463
+014464
+014465
+014466
+014467
+014468
+014469
+014470
+014471
+014473
+014474
+014475
+014476
+014478
+014479
+014480
+014481
+014482
+014483
+014484
+014485
+014486
+014487
+014488
+014489
+014490
+014491
+014492
+014493
+014494
+014495
+014497
+014498
+014500
+014501
+014502
+014503
+014504
+014505
+014507
+014508
+014509
+014510
+014511
+014513
+014514
+014515
+014516
+014517
+014518
+014519
+014520
+014521
+014523
+014524
+014525
+014526
+014527
+014528
+014530
+014531
+014532
+014533
+014534
+014537
+014538
+014539
+014540
+014542
+014543
+014544
+014545
+014546
+014547
+014548
+014549
+014550
+014551
+014552
+014553
+014555
+014556
+014558
+014559
+014561
+014563
+014564
+014566
+014567
+014569
+014570
+014571
+014572
+014573
+014575
+014576
+014577
+014578
+014580
+014581
+014582
+014583
+014584
+014585
+014586
+014587
+014589
+014590
+014591
+014592
+014593
+014594
+014595
+014596
+014597
+014598
+014599
+014600
+014601
+014602
+014605
+014606
+014608
+014609
+014610
+014611
+014614
+014615
+M000001
+M000002
+M000003
+M000004
+M000005
+M000006
+M000007
+M000008
+M000009
+M000010
+M000011
+M000012
+M000013
+M000014
+M000015
+M000017
+M000018
+M000020
+M000023
+M000025
+M000027
+M000028
+M000029
+M000030
+M000031
+M000032
+M000033
+M000034
+M000035
+M000036
+M000037
+M000038
+M000040
+M000041
+M000042
+M000043
+M000044
+M000045
+M000046
+M000047
+M000049
+M000050
+M000051
+M000052
+M000053
+M000054
+M000056
+M000057
+M000058
+M000059
+M000060
+M000061
+M000062
+M000064
+M000065
+M000068
+M000069
+M000070
+M000071
+M000074
+M000075
+M000077
+M000078
+M000079
+M000080
+M000081
+M000082
+M000083
+M000084
+M000087
+M000089
+M000090
+M000092
+M000093
+M000094
+M000095
+M000096
+M000097
+M000098
+M000100
+M000101
+M000102
+M000103
+M000105
+M000107
+M000108
+M000109
+M000110
+M000111
+M000112
+M000113
+M000116
+M000117
+M000120
+M000121
+M000122
+M000123
+M000125
+M000126
+M000127
+M000128
+M000129
+M000131
+M000132
+M000135
+M000136
+M000137
+M000138
+M000140
+M000141
+M000142
+M000143
+M000144
+M000145
+M000146
+M000147
+M000148
+M000149
+M000150
+M000151
+M000152
+M000154
+M000155
+M000156
+M000157
+M000158
+M000159
+M000161
+M000162
+M000163
+M000164
+M000165
+M000167
+M000168
+M000169
+M000170
+M000171
+M000172
+M000173
+M000174
+M000175
+M000176
+M000177
+M000180
+M000181
+M000182
+M000183
+M000184
+M000185
+M000186
+M000187
+M000188
+M000190
+M000191
+M000192
+M000193
+M000194
+M000195
+M000196
+M000197
+M000198
+M000199
+M000200
+M000201
+M000202
+M000203
+M000204
+M000205
+M000206
+M000209
+M000210
+M000212
+M000213
+M000214
+M000215
+M000216
+M000217
+M000218
+M000219
+M000220
+M000221
+M000222
+M000223
+M000224
+M000225
+M000226
+M000227
+M000229
+M000230
+M000231
+M000232
+M000233
+M000234
+M000235
+M000236
+M000237
+M000238
+M000240
+M000242
+M000243
+M000244
+M000245
+M000247
+M000248
+M000249
+M000250
+M000251
+M000252
+M000254
+M000255
+M000256
+M000257
+M000258
+M000259
+M000260
+M000261
+M000262
+M000267
+M000269
+M000270
+M000271
+M000273
+M000275
+M000276
+M000277
+M000278
+M000279
+M000280
+M000281
+M000282
+M000283
+M000284
+M000286
+M000287
+M000288
+M000289
+M000290
+M000291
+M000292
+M000293
+M000294
+M000295
+M000297
+M000298
+M000300
+M000301
+M000303
+M000305
+M000308
+M000309
+M000310
+M000311
+M000312
+M000314
+M000315
+M000316
+M000318
+M000319
+M000321
+M000322
+M000323
+M000325
+M000326
+M000328
+M000329
+M000330
+M000331
+M000332
+M000333
+M000334
+M000335
+M000336
+M000338
+M000340
+M000341
+M000342
+M000345
+M000347
+M000349
+M000351
+M000353
+M000354
+M000355
+M000356
+M000357
+M000359
+M000360
+M000361
+M000362
+M000364
+M000365
+M000366
+M000367
+M000368
+M000369
+M000370
+M000371
+M000372
+M000373
+M000375
+M000376
+M000377
+M000378
+M000380
+M000381
+M000383
+M000384
+M000385
+M000386
+M000388
+M000390
+M000391
+M000392
+M000393
+M000394
+M000395
+M000396
+M000397
+M000398
+M000399
+M000400
+M000401
+M000402
+M000403
+M000404
+M000405
+M000406
+M000407
+M000408
+M000410
+M000411
+M000412
+M000413
+M000414
+M000415
+M000416
+M000417
+M000418
+M000420
+M000422
+M000423
+M000425
+M000426
+M000427
+M000428
+M000430
+M000431
+M000432
+M000434
+M000435
+M000436
+M000437
+M000438
+M000440
+M000441
+M000442
+M000443
+M000444
+M000445
+M000446
+M000447
+M000448
+M000449
+M000450
+M000451
+M000452
+M000453
+M000455
+M000456
+M000457
+M000458
+M000459
+M000460
+M000461
+M000462
+M000463
+M000464
+M000465
+M000466
+M000468
+M000469
+M000470
+M000471
+M000473
+M000474
+M000477
+M000478
+M000479
+M000480
+M000481
+M000482
+M000483
+M000484
+M000485
+M000487
+M000488
+M000491
+M000492
+M000493
+M000494
+M000495
+M000496
+M000498
+M000499
+M000500
+M000501
+M000502
+M000503
+M000504
+M000505
+M000506
+M000508
+M000509
+M000511
+M000512
+M000513
+M000514
+M000517
+M000518
+M000520
+M000521
+M000522
+M000524
+M000525
+M000526
+M000527
+M000528
+M000529
+M000530
+M000532
+M000533
+M000535
+M000536
+M000537
+M000538
+M000539
+M000540
+M000541
+M000542
+M000543
+M000544
+M000545
+M000546
+M000547
+M000548
+M000549
+M000553
+M000554
+M000555
+M000558
+M000559
+M000560
+M000561
+M000562
+M000563
+M000564
+M000566
+M000567
+M000568
+M000569
+M000570
+M000572
+M000573
+M000574
+M000575
+M000577
+M000578
+M000581
+M000582
+M000583
+M000584
+M000585
+M000586
+M000587
+M000588
+M000589
+M000590
+M000591
+M000592
+M000593
+M000594
+M000595
+M000596
+M000598
+M000599
+M000602
+M000603
+M000604
+M000606
+M000607
+M000608
+M000610
+M000611
+M000614
+M000615
+M000616
+M000617
+M000618
+M000619
+M000620
+M000621
+M000622
+M000623
+M000624
+M000625
+M000627
+M000628
+M000631
+M000632
+M000634
+M000635
+M000636
+M000637
+M000639
+M000641
+M000642
+M000643
+M000644
+M000647
+M000648
+M000649
+M000650
+M000651
+M000652
+M000653
+M000654
+M000655
+M000656
+M000657
+M000658
+M000659
+M000660
+M000661
+M000662
+M000663
+M000664
+M000666
+M000667
+M000668
+M000669
+M000670
+M000671
+M000672
+M000673
+M000674
+M000675
+M000676
+M000677
+M000678
+M000681
+M000682
+M000683
+M000684
+M000685
+M000686
+M000688
+M000689
+M000690
+M000691
+M000692
+M000693
+M000694
+M000695
+M000697
+M000698
+M000699
+M000701
+M000702
+M000703
+M000705
+M000706
+M000707
+M000709
+M000711
+M000712
+M000713
+M000714
+M000716
+M000718
+M000719
+M000720
+M000721
+M000722
+M000723
+M000724
+M000725
+M000726
+M000727
+M000728
+M000729
+M000732
+M000733
+M000734
+M000735
+M000736
+M000737
+M000738
+M000739
+M000740
+M000741
+M000743
+M000744
+M000745
+M000746
+M000747
+M000748
+M000752
+M000753
+M000754
+M000755
+M000756
+M000757
+M000758
+M000760
+M000761
+M000762
+M000763
+M000764
+M000765
+M000766
+M000768
+M000769
+M000770
+M000771
+M000772
+M000773
+M000774
+M000775
+M000777
+M000778
+M000779
+M000782
+M000784
+M000785
+M000786
+M000788
+M000789
+M000790
+M000791
+M000793
+M000794
+M000795
+M000796
+M000797
+M000798
+M000799
+M000800
+M000801
+M000802
+M000804
+M000805
+M000806
+M000808
+M000809
+M000810
+M000811
+M000812
+M000816
+M000817
+M000819
+M000821
+M000822
+M000823
+M000826
+M000828
+M000829
+M000830
+M000831
+M000833
+M000834
+M000835
+M000836
+M000837
+M000839
+M000840
+M000841
+M000842
+M000843
+M000844
+M000845
+M000846
+M000848
+M000849
+M000850
+M000851
+M000852
+M000853
+M000854
+M000855
+M000856
+M000857
+M000858
+M000860
+M000861
+M000863
+M000864
+M000866
+M000867
+M000868
+M000869
+M000870
+M000871
+M000873
+M000874
+M000875
+M000877
+M000878
+M000879
+M000880
+M000882
+M000883
+M000884
+M000885
+M000887
+M000888
+M000890
+M000891
+M000892
+M000893
+M000894
+M000895
+M000896
+M000898
+M000899
+M000901
+M000902
+M000906
+M000907
+M000908
+M000910
+M000911
+M000912
+M000913
+M000914
+M000915
+M000916
+M000919
+M000920
+M000922
+M000923
+M000924
+M000925
+M000927
+M000928
+M000929
+M000930
+M000931
+M000933
+M000935
+M000936
+M000937
+M000938
+M000939
+M000940
+M000941
+M000942
+M000943
+M000944
+M000945
+M000946
+M000947
+M000948
+M000950
+M000951
+M000952
+M000953
+M000955
+M000957
+M000958
+M000959
+M000960
+M000961
+M000962
+M000963
+M000964
+M000965
+M000967
+M000968
+M000969
+M000970
+M000971
+M000973
+M000975
+M000976
+M000977
+M000978
+M000979
+M000980
+M000981
+M000982
+M000983
+M000984
+M000985
+M000986
+M000987
+M000988
+M000990
+M000991
+M000992
+M000993
+M000994
+M000995
+M000996
+M000997
+M000999
+M001000
+M001001
+M001004
+M001006
+M001007
+M001010
+M001011
+M001012
+M001013
+M001015
+M001016
+M001017
+M001018
+M001019
+M001020
+M001022
+M001023
+M001024
+M001025
+M001026
+M001027
+M001028
+M001030
+M001031
+M001032
+M001033
+M001034
+M001035
+M001036
+M001037
+M001039
+M001040
+M001041
+M001042
+M001043
+M001044
+M001045
+M001046
+M001047
+M001049
+M001050
+M001051
+M001053
+M001054
+M001055
+M001056
+M001057
+M001058
+M001060
+M001061
+M001062
+M001063
+M001064
+M001065
+M001066
+M001067
+M001068
+M001069
+M001070
+M001071
+M001072
+M001073
+M001074
+M001075
+M001076
+M001078
+M001079
+M001080
+M001081
+M001084
+M001085
+M001087
+M001088
+M001089
+M001090
+M001091
+M001092
+M001093
+M001094
+M001095
+M001096
+M001097
+M001098
+M001099
+M001100
+M001102
+M001103
+M001104
+M001105
+M001106
+M001107
+M001108
+M001109
+M001110
+M001111
+M001112
+M001114
+M001115
+M001116
+M001117
+M001118
+M001119
+M001121
+M001122
+M001123
+M001124
+M001125
+M001126
+M001127
+M001128
+M001129
+M001131
+M001132
+M001133
+M001134
+M001135
+M001136
+M001137
+M001138
+M001139
+M001140
+M001141
+M001142
+M001143
+M001144
+M001145
+M001146
+M001147
+M001148
+M001149
+M001150
+M001151
+M001153
+M001154
+M001155
+M001156
+M001157
+M001158
+M001159
+M001160
+M001162
+M001163
+M001164
+M001165
+M001166
+M001167
+M001172
+M001173
+M001174
+M001175
+M001177
+M001180
+M001181
+M001183
+M001184
+M001185
+M001186
+M001187
+M001188
+M001189
+M001190
+M001192
+M001194
+M001195
+M001196
+M001198
+M001199
+M001200
+M001201
+M001202
+M001204
+M001205
+M001206
+M001207
+M001208
+M001210
+M001213
+M001216
+M001217
+M001220
+M001221
+M001222
+M001223
+M001224
+M001226
+M001227
+M001228
+M001229
+M001230
+M001231
+M001232
+M001233
+M001234
+M001235
+M001236
+M001237
+M001238
+M001239
+M001240
+M001241
+M001242
+M001243
+M001244
+M001245
+M001246
+M001247
+M001248
+M001251
+M001252
+M001253
+M001254
+M001255
+M001256
+M001257
+M001258
+M001259
+M001260
+M001261
+M001263
+M001264
+M001265
+M001266
+M001267
+M001268
+M001269
+M001271
+M001272
+M001273
+M001274
+M001276
+M001277
+M001279
+M001280
+M001283
+M001284
+M001286
+M001287
+M001288
+M001289
+M001290
+M001291
+M001292
+M001293
+M001294
+M001295
+M001296
+M001299
+M001300
+M001301
+M001302
+M001303
+M001304
+M001306
+M001308
+M001309
+M001310
+M001311
+M001312
+M001314
+M001316
+M001317
+M001318
+M001319
+M001321
+M001322
+M001323
+M001324
+M001325
+M001326
+M001327
+M001328
+M001329
+M001331
+M001333
+M001334
+M001335
+M001336
+M001337
+M001338
+M001339
+M001340
+M001341
+M001342
+M001344
+M001345
+M001346
+M001348
+M001350
+M001351
+M001353
+M001354
+M001355
+M001356
+M001357
+M001358
+M001360
+M001361
+M001362
+M001363
+M001364
+M001365
+M001366
+M001367
+M001368
+M001370
+M001371
+M001372
+M001373
+M001374
+M001376
+M001377
+M001378
+M001379
+M001381
+M001382
+M001383
+M001385
+M001386
+M001387
+M001388
+M001389
+M001390
+M001391
+M001392
+M001393
+M001394
+M001395
+M001396
+M001397
+M001398
+M001399
+M001400
+M001402
+M001403
+M001404
+M001405
+M001407
+M001408
+M001409
+M001410
+M001411
+M001412
+M001413
+M001414
+M001415
+M001416
+M001417
+M001418
+M001422
+M001423
+M001424
+M001427
+M001430
+M001431
+M001432
+M001434
+M001435
+M001439
+M001440
+M001441
+M001442
+M001444
+M001445
+M001446
+M001447
+M001449
+M001450
+M001451
+M001452
+M001455
+M001456
+M001458
+M001459
+M001460
+M001461
+M001462
+M001464
+M001465
+M001466
+M001468
+M001469
+M001470
+M001471
+M001472
+M001474
+M001475
+M001476
+M001477
+M001478
+M001480
+M001481
+M001482
+M001484
+M001487
+M001488
+M001489
+M001490
+M001491
+M001492
+M001493
+M001494
+M001495
+M001496
+M001497
+M001498
+M001499
+M001500
+M001501
+M001502
+M001503
+M001504
+M001505
+M001506
+M001507
+M001508
+M001509
+M001510
+M001511
+M001512
+M001513
+M001514
+M001515
+M001516
+M001517
+M001518
+M001519
+M001521
+M001524
+M001525
+M001526
+M001528
+M001529
+M001530
+M001531
+M001532
+M001535
+M001536
+M001537
+M001540
+M001541
+M001542
+M001543
+M001544
+M001545
+M001546
+M001547
+M001549
+M001550
+M001551
+M001552
+M001553
+M001554
+M001555
+M001556
+M001557
+M001558
+M001559
+M001560
+M001561
+M001562
+M001563
+M001564
+M001565
+M001566
+M001568
+M001569
+M001570
+M001571
+M001572
+M001573
+M001574
+M001575
+M001576
+M001578
+M001579
+M001580
+M001581
+M001582
+M001584
+M001585
+M001586
+M001587
+M001588
+M001590
+M001591
+M001593
+M001594
+M001595
+M001596
+M001597
+M001599
+M001600
+M001601
+M001602
+M001604
+M001605
+M001606
+M001607
+M001608
+M001609
+M001610
+M001611
+M001612
+M001613
+M001615
+M001616
+M001618
+M001619
+M001620
+M001621
+M001622
+M001623
+M001625
+M001626
+M001628
+M001629
+M001630
+M001631
+M001633
+M001635
+M001638
+M001639
+M001641
+M001642
+M001643
+M001644
+M001645
+M001646
+M001649
+M001650
+M001651
+M001652
+M001654
+M001655
+M001656
+M001657
+M001658
+M001659
+M001660
+M001661
+M001662
+M001665
+M001667
+M001668
+M001669
+M001670
+M001671
+M001673
+M001674
+M001677
+M001678
+M001679
+M001680
+M001681
+M001682
+M001683
+M001684
+M001685
+M001686
+M001687
+M001688
+M001689
+M001690
+M001692
+M001693
+M001694
+M001696
+M001697
+M001698
+M001699
+M001700
+M001701
+M001702
+M001703
+M001704
+M001706
+M001707
+M001708
+M001709
+M001710
+M001711
+M001712
+M001713
+M001714
+M001715
+M001716
+M001717
+M001718
+M001719
+M001720
+M001722
+M001724
+M001726
+M001727
+M001728
+M001729
+M001730
+M001731
+M001732
+M001733
+M001734
+M001736
+M001737
+M001739
+M001740
+M001741
+M001743
+M001744
+M001745
+M001746
+M001747
+M001748
+M001749
+M001750
+M001751
+M001753
+M001754
+M001756
+M001757
+M001758
+M001760
+M001761
+M001762
+M001763
+M001764
+M001765
+M001766
+M001767
+M001769
+M001773
+M001774
+M001776
+M001777
+M001778
+M001779
+M001780
+M001784
+M001785
+M001786
+M001787
+M001788
+M001790
+M001791
+M001792
+M001793
+M001794
+M001795
+M001796
+M001797
+M001799
+M001800
+M001802
+M001803
+M001804
+M001805
+M001806
+M001807
+M001809
+M001810
+M001811
+M001812
+M001813
+M001814
+M001815
+M001817
+M001818
+M001819
+M001820
+M001822
+M001823
+M001824
+M001825
+M001826
+M001827
+M001828
+M001830
+M001831
+M001832
+M001833
+M001834
+M001837
+M001838
+M001839
+M001841
+M001842
+M001844
+M001845
+M001847
+M001849
+M001850
+M001852
+M001853
+M001854
+M001855
+M001856
+M001857
+M001858
+M001860
+M001862
+M001863
+M001864
+M001865
+M001866
+M001867
+M001868
+M001869
+M001870
+M001872
+M001873
+M001875
+M001876
+M001877
+M001878
+M001879
+M001880
+M001881
+M001883
+M001884
+M001885
+M001886
+M001887
+M001889
+M001890
+M001891
+M001892
+M001893
+M001894
+M001895
+M001896
+M001898
+M001899
+M001900
+M001901
+M001902
+M001903
+M001904
+M001905
+M001907
+M001908
+M001909
+M001910
+M001911
+M001912
+M001913
+M001914
+M001915
+M001916
+M001917
+M001920
+M001921
+M001922
+M001923
+M001924
+M001925
+M001926
+M001927
+M001928
+M001929
+M001930
+M001932
+M001933
+M001934
+M001935
+M001936
+M001937
+M001938
+M001939
+M001940
+M001941
+M001942
+M001943
+M001944
+M001946
+M001947
+M001948
+M001949
+M001950
+M001951
+M001953
+M001954
+M001955
+M001956
+M001957
+M001958
+M001959
+M001960
+M001962
+M001963
+M001964
+M001966
+M001967
+M001968
+M001970
+M001971
+M001972
+M001973
+M001974
+M001975
+M001977
+M001978
+M001979
+M001980
+M001982
+M001984
+M001985
+M001986
+M001987
+M001988
+M001989
+M001990
+M001991
+M001992
+M001993
+M001994
+M001996
+M001997
+M001998
+M002000
+M002001
+M002002
+M002003
+M002004
+M002005
+M002006
+M002007
+M002008
+M002010
+M002012
+M002013
+M002014
+M002015
+M002016
+M002017
+M002018
+M002019
+M002020
+M002021
+M002022
+M002023
+M002025
+M002026
+M002027
+M002028
+M002029
+M002030
+M002031
+M002032
+M002033
+M002034
+M002035
+M002036
+M002037
+M002038
+M002039
+M002040
+M002041
+M002042
+M002043
+M002044
+M002045
+M002046
+M002048
+M002050
+M002051
+M002052
+M002053
+M002054
+M002056
+M002057
+M002058
+M002060
+M002061
+M002062
+M002063
+M002064
+M002065
+M002066
+M002067
+M002068
+M002069
+M002071
+M002072
+M002073
+M002075
+M002076
+M002077
+M002079
+M002080
+M002081
+M002082
+M002083
+M002084
+M002085
+M002086
+M002088
+M002089
+M002090
+M002092
+M002094
+M002095
+M002096
+M002097
+M002098
+M002099
+M002100
+M002101
+M002109
+M002110
+M002111
+M002112
+M002113
+M002114
+M002115
+M002116
+M002117
+M002118
+M002119
+M002120
+M002121
+M002123
+M002124
+M002125
+M002126
+M002127
+M002128
+M002129
+M002131
+M002132
+M002133
+M002135
+M002136
+M002138
+M002140
+M002141
+M002142
+M002143
+M002144
+M002145
+M002146
+M002148
+M002150
+M002151
+M002152
+M002153
+M002154
+M002155
+M002156
+M002157
+M002158
+M002159
+M002161
+M002162
+M002163
+M002164
+M002165
+M002166
+M002167
+M002169
+M002170
+M002172
+M002173
+M002174
+M002175
+M002176
+M002177
+M002179
+M002180
+M002181
+M002182
+M002183
+M002184
+M002186
+M002187
+M002188
+M002189
+M002190
+M002191
+M002193
+M002194
+M002195
+M002196
+M002197
+M002198
+M002199
+M002200
+M002201
+M002202
+M002203
+M002204
+M002205
+M002206
+M002207
+M002208
+M002210
+M002211
+M002212
+M002213
+M002214
+M002215
+M002216
+M002217
+M002218
+M002219
+M002220
+M002221
+M002222
+M002224
+M002225
+M002226
+M002227
+M002228
+M002229
+M002230
+M002231
+M002232
+M002233
+M002234
+M002236
+M002238
+M002239
+M002241
+M002243
+M002244
+M002248
+M002249
+M002250
+M002251
+M002253
+M002254
+M002255
+M002256
+M002257
+M002258
+M002260
+M002261
+M002262
+M002263
+M002264
+M002265
+M002266
+M002268
+M002269
+M002270
+M002271
+M002274
+M002275
+M002276
+M002278
+M002279
+M002281
+M002282
+M002283
+M002284
+M002285
+M002286
+M002287
+M002288
+M002289
+M002290
+M002291
+M002292
+M002293
+M002294
+M002295
+M002296
+M002297
+M002298
+M002299
+M002300
+M002303
+M002305
+M002306
+M002307
+M002308
+M002309
+M002310
+M002311
+M002314
+M002316
+M002319
+M002320
+M002321
+M002322
+M002324
+M002325
+M002327
+M002328
+M002329
+M002330
+M002331
+M002333
+M002334
+M002335
+M002336
+M002337
+M002338
+M002339
+M002340
+M002341
+M002342
+M002343
+M002344
+M002347
+M002348
+M002349
+M002350
+M002351
+M002353
+M002354
+M002355
+M002356
+M002358
+M002360
+M002361
+M002362
+M002363
+M002365
+M002366
+M002367
+M002368
+M002369
+M002370
+M002371
+M002372
+M002373
+M002374
+M002375
+M002376
+M002377
+M002378
+M002379
+M002380
+M002381
+M002384
+M002385
+M002386
+M002387
+M002389
+M002390
+M002391
+M002392
+M002393
+M002394
+M002395
+M002396
+M002398
+M002400
+M002402
+M002405
+M002406
+M002407
+M002408
+M002409
+M002410
+M002411
+M002412
+M002413
+M002414
+M002415
+M002416
+M002417
+M002418
+M002419
+M002420
+M002421
+M002422
+M002423
+M002424
+M002425
+M002426
+M002427
+M002428
+M002429
+M002430
+M002431
+M002432
+M002433
+M002434
+M002435
+M002436
+M002437
+M002438
+M002439
+M002440
+M002441
+M002442
+M002443
+M002444
+M002446
+M002447
+M002448
+M002449
+M002450
+M002451
+M002452
+M002454
+M002455
+M002456
+M002457
+M002458
+M002461
+M002462
+M002463
+M002464
+M002465
+M002466
+M002467
+M002468
+M002469
+M002472
+M002474
+M002476
+M002477
+M002478
+M002479
+M002480
+M002481
+M002482
+M002484
+M002485
+M002487
+M002488
+M002489
+M002490
+M002491
+M002493
+M002494
+M002496
+M002497
+M002498
+M002499
+M002500
+M002501
+M002502
+M002503
+M002504
+M002505
+M002506
+M002507
+M002508
+M002509
+M002510
+M002511
+M002512
+M002513
+M002515
+M002516
+M002518
+M002519
+M002520
+M002521
+M002523
+M002524
+M002525
+M002526
+M002527
+M002528
+M002529
+M002532
+M002533
+M002534
+M002535
+M002536
+M002538
+M002539
+M002540
+M002541
+M002543
+M002545
+M002546
+M002547
+M002548
+M002549
+M002551
+M002552
+M002553
+M002554
+M002555
+M002556
+M002557
+M002559
+M002560
+M002561
+M002562
+M002563
+M002564
+M002565
+M002567
+M002568
+M002569
+M002570
+M002575
+M002576
+M002577
+M002579
+M002580
+M002581
+M002583
+M002584
+M002585
+M002586
+M002587
+M002588
+M002591
+M002592
+M002593
+M002594
+M002595
+M002596
+M002598
+M002599
+M002600
+M002601
+M002602
+M002603
+M002604
+M002605
+M002607
+M002608
+M002610
+M002611
+M002612
+M002613
+M002614
+M002615
+M002616
+M002617
+M002618
+M002619
+M002620
+M002621
+M002622
+M002623
+M002624
+M002625
+M002626
+M002628
+M002629
+M002630
+M002631
+M002632
+M002633
+M002634
+M002637
+M002638
+M002639
+M002640
+M002641
+M002642
+M002643
+M002644
+M002645
+M002648
+M002649
+M002650
+M002652
+M002653
+M002654
+M002655
+M002657
+M002659
+M002660
+M002663
+M002664
+M002665
+M002666
+M002667
+M002669
+M002671
+M002672
+M002673
+M002674
+M002675
+M002676
+M002677
+M002678
+M002680
+M002681
+M002682
+M002683
+M002684
+M002687
+M002688
+M002689
+M002690
+M002691
+M002692
+M002693
+M002694
+M002695
+M002696
+M002697
+M002698
+M002699
+M002700
+M002702
+M002703
+M002704
+M002705
+M002706
+M002708
+M002709
+M002710
+M002711
+M002713
+M002714
+M002715
+M002716
+M002717
+M002719
+M002720
+M002721
+M002722
+M002723
+M002724
+M002725
+M002726
+M002727
+M002729
+M002730
+M002731
+M002732
+M002734
+M002736
+M002737
+M002738
+M002739
+M002740
+M002742
+M002743
+M002744
+M002745
+M002746
+M002748
+M002751
+M002752
+M002753
+M002756
+M002757
+M002758
+M002759
+M002760
+M002762
+M002763
+M002765
+M002766
+M002767
+M002768
+M002771
+M002773
+M002774
+M002775
+M002776
+M002777
+M002778
+M002779
+M002780
+M002782
+M002783
+M002785
+M002786
+M002787
+M002788
+M002790
+M002791
+M002792
+M002793
+M002794
+M002796
+M002801
+M002802
+M002803
+M002804
+M002805
+M002806
+M002807
+M002808
+M002809
+M002810
+M002811
+M002812
+M002813
+M002814
+M002815
+M002816
+M002817
+M002818
+M002819
+M002820
+M002821
+M002822
+M002823
+M002825
+M002826
+M002827
+M002828
+M002829
+M002830
+M002831
+M002832
+M002833
+M002834
+M002835
+M002836
+M002837
+M002838
+M002840
+M002841
+M002843
+M002844
+M002845
+M002846
+M002847
+M002849
+M002850
+M002851
+M002852
+M002853
+M002854
+M002855
+M002856
+M002857
+M002858
+M002859
+M002860
+M002861
+M002862
+M002863
+M002864
+M002865
+M002866
+M002869
+M002871
+M002872
+M002873
+M002874
+M002875
+M002877
+M002878
+M002879
+M002880
+M002881
+M002882
+M002884
+M002885
+M002886
+M002887
+M002889
+M002890
+M002892
+M002893
+M002894
+M002895
+M002896
+M002898
+M002901
+M002902
+M002903
+M002904
+M002905
+M002906
+M002907
+M002908
+M002909
+M002910
+M002911
+M002912
+M002913
+M002914
+M002915
+M002916
+M002918
+M002920
+M002921
+M002924
+M002925
+M002926
+M002927
+M002929
+M002930
+M002933
+M002934
+M002935
+M002936
+M002937
+M002938
+M002939
+M002940
+M002941
+M002942
+M002943
+M002944
+M002945
+M002946
+M002947
+M002948
+M002949
+M002953
+M002955
+M002956
+M002957
+M002958
+M002959
+M002960
+M002961
+M002962
+M002963
+M002964
+M002965
+M002966
+M002967
+M002968
+M002969
+M002970
+M002971
+M002972
+M002973
+M002975
+M002977
+M002978
+M002979
+M002980
+M002981
+M002983
+M002984
+M002985
+M002986
+M002987
+M002988
+M002989
+M002990
+M002991
+M002992
+M002993
+M002994
+M002995
+M002996
+M002997
+M002999
+M003000
+M003001
+M003002
+M003003
+M003007
+M003008
+M003009
+M003010
+M003011
+M003012
+M003014
+M003015
+M003016
+M003018
+M003019
+M003021
+M003022
+M003023
+M003024
+M003025
+M003026
+M003028
+M003029
+M003030
+M003031
+M003032
+M003033
+M003034
+M003035
+M003037
+M003038
+M003040
+M003041
+M003042
+M003043
+M003044
+M003045
+M003046
+M003047
+M003048
+M003049
+M003050
+M003051
+M003052
+M003053
+M003054
+M003055
+M003056
+M003057
+M003058
+M003059
+M003060
+M003061
+M003063
+M003064
+M003065
+M003067
+M003068
+M003069
+M003070
+M003071
+M003072
+M003073
+M003075
+M003076
+M003078
+M003079
+M003080
+M003081
+M003084
+M003085
+M003086
+M003087
+M003088
+M003089
+M003090
+M003091
+M003092
+M003093
+M003094
+M003096
+M003097
+M003098
+M003099
+M003100
+M003101
+M003102
+M003103
+M003107
+M003109
+M003110
+M003112
+M003114
+M003115
+M003117
+M003120
+M003121
+M003122
+M003123
+M003124
+M003125
+M003126
+M003127
+M003128
+M003129
+M003130
+M003131
+M003132
+M003133
+M003134
+M003135
+M003136
+M003139
+M003140
+M003141
+M003143
+M003144
+M003145
+M003146
+M003147
+M003148
+M003150
+M003152
+M003153
+M003155
+M003156
+M003157
+M003158
+M003159
+M003160
+M003161
+M003162
+M003163
+M003164
+M003165
+M003166
+M003167
+M003168
+M003169
+M003170
+M003173
+M003175
+M003176
+M003177
+M003178
+M003180
+M003181
+M003182
+M003183
+M003184
+M003185
+M003186
+M003187
+M003188
+M003189
+M003192
+M003194
+M003196
+M003197
+M003198
+M003199
+M003200
+M003201
+M003203
+M003204
+M003205
+M003206
+M003207
+M003208
+M003209
+M003210
+M003211
+M003212
+M003213
+M003214
+M003215
+M003216
+M003217
+M003218
+M003219
+M003220
+M003221
+M003222
+M003223
+M003225
+M003226
+M003228
+M003230
+M003231
+M003232
+M003233
+M003234
+M003236
+M003237
+M003238
+M003239
+M003240
+M003241
+M003242
+M003243
+M003244
+M003246
+M003247
+M003248
+M003249
+M003251
+M003252
+M003253
+M003254
+M003256
+M003257
+M003258
+M003259
+M003260
+M003261
+M003262
+M003263
+M003264
+M003265
+M003266
+M003267
+M003269
+M003270
+M003271
+M003272
+M003273
+M003274
+M003275
+M003276
+M003277
+M003279
+M003280
+M003281
+M003283
+M003284
+M003285
+M003286
+M003287
+M003288
+M003289
+M003290
+M003291
+M003292
+M003294
+M003295
+M003296
+M003297
+M003298
+M003299
+M003302
+M003303
+M003304
+M003305
+M003306
+M003307
+M003308
+M003309
+M003310
+M003311
+M003313
+M003314
+M003316
+M003317
+M003318
+M003319
+M003320
+M003322
+M003323
+M003324
+M003325
+M003326
+M003327
+M003328
+M003329
+M003330
+M003332
+M003333
+M003335
+M003336
+M003337
+M003338
+M003340
+M003341
+M003342
+M003343
+M003344
+M003345
+M003346
+M003347
+M003348
+M003349
+M003351
+M003352
+M003353
+M003354
+M003355
+M003356
+M003357
+M003358
+M003359
+M003361
+M003362
+M003364
+M003366
+M003367
+M003368
+M003369
+M003370
+M003371
+M003372
+M003374
+M003375
+M003376
+M003377
+M003378
+M003380
+M003381
+M003382
+M003383
+M003384
+M003385
+M003386
+M003387
+M003388
+M003389
+M003390
+M003392
+M003393
+M003394
+M003395
+M003396
+M003397
+M003398
+M003399
+M003400
+M003401
+M003402
+M003403
+M003404
+M003405
+M003406
+M003407
+M003408
+M003409
+M003411
+M003412
+M003413
+M003414
+M003415
+M003416
+M003417
+M003418
+M003419
+M003420
+M003421
+M003422
+M003425
+M003426
+M003427
+M003428
+M003429
+M003431
+M003433
+M003434
+M003435
+M003436
+M003438
+M003442
+M003443
+M003444
+M003445
+M003446
+M003447
+M003448
+M003449
+M003451
+M003452
+M003453
+M003454
+M003455
+M003456
+M003457
+M003458
+M003460
+M003461
+M003462
+M003465
+M003467
+M003468
+M003469
+M003471
+M003473
+M003474
+M003475
+M003477
+M003478
+M003479
+M003482
+M003484
+M003485
+M003487
+M003489
+M003490
+M003492
+M003493
+M003496
+M003497
+M003498
+M003499
+M003500
+M003501
+M003502
+M003503
+M003504
+M003505
+M003506
+M003507
+M003508
+M003509
+M003510
+M003512
+M003513
+M003514
+M003515
+M003516
+M003518
+M003519
+M003520
+M003521
+M003522
+M003523
+M003524
+M003525
+M003526
+M003527
+M003528
+M003529
+M003530
+M003531
+M003532
+M003533
+M003534
+M003535
+M003536
+M003538
+M003542
+M003543
+M003544
+M003545
+M003546
+M003548
+M003549
+M003550
+M003551
+M003552
+M003553
+M003554
+M003555
+M003556
+M003557
+M003558
+M003559
+M003560
+M003561
+M003562
+M003563
+M003564
+M003565
+M003567
+M003568
+M003569
+M003570
+M003571
+M003572
+M003573
+M003574
+M003576
+M003577
+M003578
+M003579
+M003580
+M003581
+M003585
+M003586
+M003587
+M003588
+M003589
+M003590
+M003591
+M003593
+M003594
+M003595
+M003597
+M003598
+M003599
+M003600
+M003601
+M003604
+M003605
+M003606
+M003607
+M003609
+M003611
+M003612
+M003614
+M003615
+M003616
+M003617
+M003618
+M003619
+M003620
+M003622
+M003623
+M003624
+M003625
+M003626
+M003627
+M003628
+M003629
+M003630
+M003631
+M003632
+M003633
+M003634
+M003635
+M003636
+M003637
+M003639
+M003640
+M003641
+M003642
+M003643
+M003644
+M003646
+M003647
+M003648
+M003650
+M003651
+M003652
+M003654
+M003655
+M003656
+M003657
+M003658
+M003659
+M003660
+M003661
+M003662
+M003663
+M003665
+M003666
+M003667
+M003668
+M003670
+M003671
+M003672
+M003673
+M003674
+M003675
+M003676
+M003678
+M003679
+M003680
+M003681
+M003682
+M003683
+M003684
+M003686
+M003687
+M003688
+M003690
+M003691
+M003693
+M003695
+M003697
+M003698
+M003699
+M003700
+M003701
+M003702
+M003704
+M003705
+M003706
+M003707
+M003708
+M003709
+M003711
+M003713
+M003714
+M003715
+M003716
+M003717
+M003718
+M003719
+M003720
+M003724
+M003725
+M003726
+M003727
+M003728
+M003730
+M003731
+M003732
+M003733
+M003734
+M003735
+M003736
+M003737
+M003738
+M003739
+M003742
+M003743
+M003745
+M003746
+M003747
+M003748
+M003749
+M003750
+M003753
+M003754
+M003755
+M003757
+M003758
+M003760
+M003764
+M003766
+M003767
+M003768
+M003769
+M003770
+M003772
+M003774
+M003775
+M003777
+M003778
+M003781
+M003786
+M003787
+M003788
+M003789
+M003791
+M003792
+M003793
+M003794
+M003795
+M003796
+M003797
+M003798
+M003799
+M003801
+M003802
+M003803
+M003804
+M003805
+M003806
+M003808
+M003809
+M003810
+M003811
+M003813
+M003815
+M003816
+M003817
+M003819
+M003820
+M003821
+M003822
+M003824
+M003825
+M003826
+M003827
+M003828
+M003829
+M003830
+M003832
+M003833
+M003834
+M003835
+M003836
+M003837
+M003838
+M003840
+M003841
+M003842
+M003843
+M003844
+M003845
+M003846
+M003847
+M003848
+M003850
+M003851
+M003852
+M003853
+M003854
+M003855
+M003856
+M003860
+M003861
+M003862
+M003863
+M003864
+M003865
+M003866
+M003867
+M003869
+M003870
+M003871
+M003872
+M003873
+M003874
+M003875
+M003876
+M003878
+M003879
+M003880
+M003882
+M003883
+M003885
+M003887
+M003888
+M003889
+M003890
+M003891
+M003893
+M003894
+M003895
+M003896
+M003899
+M003901
+M003903
+M003904
+M003905
+M003906
+M003907
+M003908
+M003909
+M003911
+M003912
+M003913
+M003914
+M003915
+M003916
+M003917
+M003918
+M003919
+M003920
+M003921
+M003922
+M003923
+M003924
+M003925
+M003927
+M003928
+M003929
+M003930
+M003931
+M003932
+M003933
+M003935
+M003936
+M003938
+M003939
+M003940
+M003941
+M003943
+M003944
+M003945
+M003947
+M003948
+M003949
+M003950
+M003951
+M003952
+M003953
+M003955
+M003956
+M003957
+M003958
+M003959
+M003960
+M003961
+M003963
+M003965
+M003966
+M003968
+M003969
+M003970
+M003971
+M003972
+M003974
+M003975
+M003976
+M003977
+M003978
+M003980
+M003981
+M003982
+M003983
+M003984
+M003985
+M003986
+M003987
+M003988
+M003989
+M003990
+M003992
+M003993
+M003994
+M003995
+M003996
+M003998
+M003999
+M004000
+M004001
+M004002
+M004003
+M004004
+M004005
+M004006
+M004009
+M004010
+M004011
+M004013
+M004014
+M004016
+M004017
+M004018
+M004019
+M004020
+M004021
+M004022
+M004023
+M004024
+M004025
+M004026
+M004027
+M004028
+M004029
+M004030
+M004031
+M004032
+M004034
+M004035
+M004036
+M004038
+M004039
+M004041
+M004042
+M004044
+M004045
+M004046
+M004047
+M004048
+M004049
+M004051
+M004053
+M004054
+M004055
+M004056
+M004057
+M004058
+M004059
+M004060
+M004061
+M004062
+M004064
+M004065
+M004066
+M004069
+M004070
+M004071
+M004072
+M004073
+M004074
+M004076
+M004077
+M004079
+M004080
+M004081
+M004082
+M004084
+M004085
+M004086
+M004087
+M004088
+M004089
+M004091
+M004092
+M004093
+M004094
+M004096
+M004097
+M004099
+M004100
+M004101
+M004103
+M004104
+M004105
+M004106
+M004107
+M004108
+M004109
+M004111
+M004112
+M004113
+M004114
+M004115
+M004116
+M004118
+M004119
+M004121
+M004123
+M004125
+M004126
+M004127
+M004128
+M004131
+M004132
+M004135
+M004136
+M004137
+M004138
+M004139
+M004140
+M004141
+M004142
+M004143
+M004144
+M004145
+M004147
+M004148
+M004150
+M004151
+M004155
+M004156
+M004159
+M004160
+M004161
+M004162
+M004165
+M004167
+M004168
+M004169
+M004171
+M004172
+M004173
+M004174
+M004175
+M004177
+M004178
+M004179
+M004181
+M004182
+M004184
+M004185
+M004186
+M004187
+M004188
+M004189
+M004190
+M004191
+M004193
+M004194
+M004195
+M004196
+M004197
+M004198
+M004199
+M004200
+M004201
+M004202
+M004203
+M004204
+M004205
+M004207
+M004208
+M004209
+M004210
+M004211
+M004212
+M004213
+M004214
+M004215
+M004216
+M004217
+M004218
+M004219
+M004220
+M004221
+M004223
+M004224
+M004225
+M004226
+M004227
+M004228
+M004229
+M004230
+M004231
+M004232
+M004233
+M004234
+M004236
+M004237
+M004238
+M004239
+M004241
+M004242
+M004243
+M004244
+M004245
+M004246
+M004247
+M004248
+M004249
+M004250
+M004251
+M004252
+M004253
+M004254
+M004255
+M004256
+M004257
+M004258
+M004259
+M004260
+M004261
+M004262
+M004263
+M004265
+M004267
+M004269
+M004271
+M004272
+M004274
+M004277
+M004278
+M004279
+M004280
+M004282
+M004283
+M004285
+M004286
+M004288
+M004289
+M004291
+M004295
+M004296
+M004298
+M004300
+M004301
+M004302
+M004305
+M004306
+M004309
+M004310
+M004312
+M004313
+M004314
+M004315
+M004316
+M004321
+M004323
+M004324
+M004325
+M004326
+M004327
+M004328
+M004333
+M004334
+M004335
+M004337
+M004339
+M004340
+M004341
+M004342
+M004343
+M004345
+M004347
+M004348
+M004349
+M004351
+M004352
+M004353
+M004355
+M004356
+M004357
+M004359
+M004360
+M004361
+M004362
+M004365
+M004367
+M004368
+M004369
+M004370
+M004372
+M004373
+M004374
+M004375
+M004376
+M004378
+M004379
+M004380
+M004381
+M004382
+M004383
+M004384
+M004385
+M004386
+M004389
+M004390
+M004391
+M004392
+M004393
+M004395
+M004396
+M004397
+M004400
+M004401
+M004402
+M004403
+M004404
+M004405
+M004406
+M004407
+M004408
+M004409
+M004410
+M004413
+M004415
+M004416
+M004417
+M004418
+M004419
+M004421
+M004422
+M004423
+M004425
+M004426
+M004429
+M004430
+M004431
+M004433
+M004434
+M004435
+M004436
+M004437
+M004440
+M004441
+M004442
+M004445
+M004447
+M004448
+M004449
+M004450
+M004451
+M004452
+M004453
+M004454
+M004456
+M004457
+M004459
+M004460
+M004461
+M004462
+M004463
+M004464
+M004465
+M004466
+M004467
+M004468
+M004470
+M004471
+M004475
+M004476
+M004478
+M004479
+M004480
+M004481
+M004482
+M004483
+M004484
+M004485
+M004486
+M004487
+M004491
+M004492
+M004493
+M004496
+M004497
+M004498
+M004500
+M004501
+M004502
+M004503
+M004505
+M004506
+M004507
+M004508
+M004509
+M004510
+M004511
+M004512
+M004514
+M004515
+M004516
+M004519
+M004520
+M004522
+M004523
+M004524
+M004525
+M004526
+M004527
+M004528
+M004529
+M004530
+M004531
+M004532
+M004533
+M004534
+M004535
+M004536
+M004537
+M004538
+M004539
+M004541
+M004542
+M004543
+M004546
+M004547
+M004548
+M004549
+M004550
+M004551
+M004552
+M004554
+M004557
+M004558
+M004559
+M004561
+M004563
+M004564
+M004565
+M004566
+M004567
+M004569
+M004570
+M004571
+M004572
+M004575
+M004576
+M004577
+M004578
+M004579
+M004580
+M004583
+M004584
+M004585
+M004586
+M004587
+M004588
+M004589
+M004590
+M004591
+M004592
+M004593
+M004594
+M004595
+M004596
+M004597
+M004598
+M004599
+M004600
+M004603
+M004604
+M004606
+M004607
+M004608
+M004609
+M004610
+M004611
+M004612
+M004613
+M004614
+M004617
+M004618
+M004620
+M004622
+M004623
+M004624
+M004625
+M004626
+M004627
+M004628
+M004629
+M004630
+M004632
+M004633
+M004634
+M004635
+M004636
+M004637
+M004638
+M004639
+M004640
+M004641
+M004642
+M004643
+M004644
+M004646
+M004647
+M004648
+M004649
+M004650
+M004651
+M004653
+M004654
+M004655
+M004656
+M004658
+M004659
+M004660
+M004662
+M004663
+M004664
+M004665
+M004666
+M004667
+M004669
+M004670
+M004671
+M004672
+M004673
+M004674
+M004675
+M004676
+M004677
+M004678
+M004681
+M004683
+M004685
+M004686
+M004687
+M004689
+M004690
+M004691
+M004692
+M004693
+M004694
+M004696
+M004697
+M004699
+M004700
+M004701
+M004703
+M004704
+M004705
+M004706
+M004709
+M004710
+M004711
+M004712
+M004713
+M004714
+M004715
+M004716
+M004717
+M004718
+M004721
+M004722
+M004723
+M004725
+M004726
+M004727
+M004728
+M004729
+M004730
+M004732
+M004735
+M004737
+M004738
+M004739
+M004740
+M004741
+M004743
+M004744
+M004746
+M004747
+M004748
+M004751
+M004752
+M004753
+M004754
+M004755
+M004756
+M004757
+M004758
+M004760
+M004761
+M004762
+M004763
+M004764
+M004765
+M004766
+M004767
+M004768
+M004769
+M004770
+M004771
+M004772
+M004773
+M004774
+M004775
+M004777
+M004778
+M004780
+M004781
+M004782
+M004783
+M004785
+M004787
+M004788
+M004789
+M004791
+M004793
+M004794
+M004795
+M004796
+M004797
+M004798
+M004799
+M004800
+M004802
+M004803
+M004804
+M004805
+M004806
+M004810
+M004812
+M004813
+M004814
+M004815
+M004816
+M004820
+M004821
+M004824
+M004825
+M004826
+M004827
+M004828
+M004829
+M004830
+M004831
+M004832
+M004833
+M004834
+M004835
+M004836
+M004837
+M004838
+M004839
+M004840
+M004842
+M004843
+M004846
+M004847
+M004848
+M004849
+M004850
+M004855
+M004856
+M004857
+M004859
+M004860
+M004862
+M004866
+M004868
+M004869
+M004871
+M004872
+M004874
+M004875
+M004876
+M004877
+M004878
+M004879
+M004880
+M004882
+M004883
+M004884
+M004885
+M004886
+M004888
+M004889
+M004890
+M004891
+M004892
+M004893
+M004894
+M004895
+M004896
+M004897
+M004898
+M004899
+M004900
+M004901
+M004902
+M004903
+M004905
+M004907
+M004908
+M004909
+M004910
+M004913
+M004914
+M004915
+M004916
+M004917
+M004918
+M004919
+M004920
+M004921
+M004922
+M004923
+M004925
+M004926
+M004927
+M004928
+M004929
+M004930
+M004931
+M004932
+M004933
+M004934
+M004935
+M004936
+M004937
+M004938
+M004939
+M004941
+M004942
+M004943
+M004944
+M004946
+M004948
+M004949
+M004950
+M004951
+M004953
+M004954
+M004955
+M004956
+M004958
+M004959
+M004961
+M004962
+M004963
+M004964
+M004966
+M004967
+M004969
+M004970
+M004971
+M004976
+M004978
+M004979
+M004980
+M004981
+M004982
+M004984
+M004985
+M004987
+M004989
+M004990
+M004992
+M004993
+M004994
+M004995
+M004998
+M004999
+M005000
+M005001
+M005002
+M005003
+M005004
+M005005
+M005006
+M005007
+M005008
+M005010
+M005011
+M005012
+M005013
+M005014
+M005015
+M005016
+M005017
+M005018
+M005019
+M005020
+M005021
+M005022
+M005023
+M005024
+M005025
+M005026
+M005027
+M005028
+M005029
+M005030
+M005032
+M005034
+M005035
+M005036
+M005038
+M005040
+M005042
+M005043
+M005044
+M005045
+M005046
+M005047
+M005049
+M005051
+M005053
+M005055
+M005056
+M005057
+M005058
+M005059
+M005060
+M005061
+M005062
+M005063
+M005065
+M005066
+M005067
+M005068
+M005070
+M005071
+M005072
+M005073
+M005074
+M005075
+M005076
+M005078
+M005079
+M005080
+M005081
+M005082
+M005083
+M005085
+M005086
+M005088
+M005089
+M005090
+M005091
+M005093
+M005094
+M005096
+M005097
+M005098
+M005099
+M005100
+M005101
+M005102
+M005103
+M005104
+M005105
+M005107
+M005108
+M005110
+M005111
+M005112
+M005113
+M005114
+M005115
+M005116
+M005117
+M005118
+M005120
+M005121
+M005122
+M005123
+M005124
+M005125
+M005126
+M005127
+M005128
+M005129
+M005130
+M005131
+M005132
+M005133
+M005134
+M005135
+M005136
+M005137
+M005138
+M005140
+M005143
+M005145
+M005146
+M005148
+M005149
+M005150
+M005151
+M005153
+M005154
+M005155
+M005157
+M005158
+M005159
+M005160
+M005161
+M005162
+M005164
+M005165
+M005167
+M005168
+M005169
+M005170
+M005171
+M005172
+M005173
+M005174
+M005177
+M005179
+M005181
+M005182
+M005183
+M005184
+M005185
+M005187
+M005189
+M005190
+M005191
+M005192
+M005193
+M005194
+M005196
+M005198
+M005200
+M005201
+M005203
+M005204
+M005205
+M005206
+M005207
+M005208
+M005209
+M005210
+M005211
+M005214
+M005215
+M005216
+M005218
+M005219
+M005220
+M005222
+M005223
+M005224
+M005225
+M005226
+M005227
+M005228
+M005230
+M005231
+M005233
+M005234
+M005236
+M005237
+M005238
+M005239
+M005240
+M005241
+M005242
+M005243
+M005244
+M005245
+M005246
+M005247
+M005249
+M005251
+M005252
+M005253
+M005254
+M005255
+M005256
+M005257
+M005258
+M005259
+M005260
+M005261
+M005262
+M005263
+M005265
+M005267
+M005268
+M005269
+M005270
+M005271
+M005272
+M005273
+M005276
+M005279
+M005280
+M005281
+M005282
+M005283
+M005284
+M005285
+M005286
+M005287
+M005288
+M005289
+M005290
+M005291
+M005292
+M005293
+M005294
+M005295
+M005297
+M005298
+M005299
+M005301
+M005302
+M005303
+M005304
+M005305
+M005306
+M005307
+M005311
+M005313
+M005314
+M005315
+M005316
+M005318
+M005319
+M005320
+M005322
+M005323
+M005324
+M005325
+M005326
+M005327
+M005329
+M005330
+M005331
+M005332
+M005333
+M005334
+M005335
+M005337
+M005338
+M005339
+M005340
+M005342
+M005343
+M005344
+M005345
+M005346
+M005348
+M005349
+M005350
+M005351
+M005353
+M005354
+M005355
+M005357
+M005360
+M005362
+M005363
+M005365
+M005366
+M005367
+M005368
+M005369
+M005370
+M005371
+M005372
+M005373
+M005374
+M005377
+M005378
+M005379
+M005380
+M005381
+M005382
+M005383
+M005384
+M005385
+M005386
+M005387
+M005388
+M005389
+M005390
+M005391
+M005392
+M005393
+M005394
+M005395
+M005397
+M005398
+M005400
+M005401
+M005402
+M005403
+M005405
+M005406
+M005408
+M005409
+M005410
+M005411
+M005412
+M005414
+M005416
+M005417
+M005418
+M005420
+M005421
+M005422
+M005423
+M005424
+M005426
+M005427
+M005428
+M005429
+M005430
+M005431
+M005432
+M005434
+M005435
+M005436
+M005437
+M005438
+M005440
+M005442
+M005443
+M005444
+M005446
+M005447
+M005448
+M005449
+M005450
+M005451
+M005452
+M005453
+M005455
+M005456
+M005459
+M005460
+M005461
+M005463
+M005464
+M005466
+M005470
+M005473
+M005474
+M005475
+M005476
+M005478
+M005479
+M005480
+M005482
+M005483
+M005484
+M005488
+M005489
+M005490
+M005491
+M005492
+M005493
+M005494
+M005495
+M005496
+M005497
+M005498
+M005499
+M005500
+M005501
+M005502
+M005503
+M005505
+M005506
+M005507
+M005508
+M005509
+M005510
+M005511
+M005512
+M005513
+M005514
+M005515
+M005516
+M005517
+M005518
+M005520
+M005521
+M005524
+M005525
+M005526
+M005527
+M005528
+M005529
+M005530
+M005532
+M005533
+M005534
+M005535
+M005536
+M005538
+M005539
+M005541
+M005542
+M005544
+M005545
+M005546
+M005547
+M005548
+M005551
+M005552
+M005553
+M005554
+M005556
+M005557
+M005558
+M005559
+M005560
+M005562
+M005563
+M005564
+M005565
+M005566
+M005567
+M005568
+M005569
+M005570
+M005572
+M005575
+M005576
+M005577
+M005578
+M005579
+M005580
+M005581
+M005582
+M005584
+M005585
+M005586
+M005587
+M005588
+M005590
+M005591
+M005592
+M005593
+M005594
+M005595
+M005598
+M005599
+M005600
+M005601
+M005602
+M005603
+M005604
+M005605
+M005606
+M005608
+M005611
+M005613
+M005614
+M005615
+M005616
+M005618
+M005619
+M005620
+M005622
+M005623
+M005624
+M005625
+M005626
+M005627
+M005630
+M005631
+M005633
+M005634
+M005635
+M005637
+M005640
+M005641
+M005642
+M005643
+M005644
+M005645
+M005646
+M005649
+M005650
+M005651
+M005652
+M005653
+M005654
+M005655
+M005656
+M005657
+M005658
+M005659
+M005660
+M005661
+M005662
+M005664
+M005665
+M005666
+M005667
+M005669
+M005670
+M005671
+M005673
+M005677
+M005678
+M005679
+M005680
+M005681
+M005682
+M005683
+M005684
+M005685
+M005686
+M005687
+M005688
+M005689
+M005690
+M005691
+M005692
+M005693
+M005695
+M005696
+M005699
+M005700
+M005701
+M005703
+M005704
+M005705
+M005706
+M005707
+M005708
+M005709
+M005710
+M005711
+M005713
+M005714
+M005715
+M005716
+M005717
+M005718
+M005719
+M005720
+M005721
+M005723
+M005724
+M005725
+M005727
+M005730
+M005731
+M005732
+M005733
+M005734
+M005735
+M005736
+M005737
+M005738
+M005739
+M005740
+M005743
+M005745
+M005746
+M005748
+M005749
+M005750
+M005752
+M005753
+M005754
+M005755
+M005756
+M005757
+M005758
+M005760
+M005762
+M005763
+M005764
+M005765
+M005766
+M005767
+M005768
+M005769
+M005771
+M005772
+M005773
+M005774
+M005775
+M005776
+M005777
+M005778
+M005779
+M005780
+M005781
+M005782
+M005783
+M005784
+M005785
+M005786
+M005788
+M005789
+M005791
+M005792
+M005794
+M005795
+M005796
+M005798
+M005800
+M005801
+M005802
+M005804
+M005805
+M005806
+M005807
+M005808
+M005810
+M005811
+M005812
+M005814
+M005815
+M005817
+M005819
+M005820
+M005821
+M005822
+M005823
+M005824
+M005825
+M005827
+M005828
+M005829
+M005830
+M005831
+M005832
+M005834
+M005835
+M005836
+M005837
+M005838
+M005839
+M005840
+M005841
+M005842
+M005843
+M005844
+M005845
+M005847
+M005848
+M005849
+M005852
+M005853
+M005855
+M005856
+M005857
+M005858
+M005859
+M005860
+M005861
+M005862
+M005863
+M005864
+M005865
+M005866
+M005867
+M005868
+M005870
+M005872
+M005875
+M005877
+M005878
+M005879
+M005880
+M005881
+M005882
+M005883
+M005884
+M005885
+M005886
+M005887
+M005888
+M005889
+M005890
+M005892
+M005893
+M005894
+M005896
+M005897
+M005898
+M005899
+M005900
+M005901
+M005902
+M005903
+M005905
+M005906
+M005907
+M005908
+M005909
+M005910
+M005911
+M005912
+M005913
+M005914
+M005915
+M005916
+M005917
+M005918
+M005919
+M005921
+M005922
+M005923
+M005924
+M005925
+M005926
+M005927
+M005928
+M005929
+M005930
+M005931
+M005934
+M005936
+M005938
+M005939
+M005940
+M005941
+M005943
+M005944
+M005945
+M005947
+M005948
+M005949
+M005950
+M005952
+M005953
+M005954
+M005956
+M005957
+M005958
+M005959
+M005962
+M005963
+M005964
+M005965
+M005966
+M005967
+M005970
+M005971
+M005972
+M005974
+M005975
+M005976
+M005977
+M005978
+M005979
+M005980
+M005982
+M005983
+M005984
+M005985
+M005986
+M005987
+M005988
+M005989
+M005990
+M005991
+M005992
+M005993
+M005994
+M005995
+M005996
+M005997
+M005998
+M005999
+M006000
+M006001
+M006002
+M006003
+M006004
+M006008
+M006009
+M006010
+M006011
+M006013
+M006015
+M006017
+M006018
+M006019
+M006020
+M006021
+M006023
+M006025
+M006026
+M006027
+M006028
+M006029
+M006030
+M006031
+M006032
+M006034
+M006035
+M006037
+M006038
+M006039
+M006040
+M006042
+M006043
+M006044
+M006045
+M006046
+M006047
+M006048
+M006049
+M006050
+M006051
+M006052
+M006054
+M006055
+M006056
+M006057
+M006059
+M006060
+M006062
+M006063
+M006066
+M006067
+M006069
+M006070
+M006071
+M006072
+M006073
+M006074
+M006075
+M006076
+M006077
+M006078
+M006080
+M006081
+M006082
+M006083
+M006084
+M006085
+M006087
+M006088
+M006090
+M006091
+M006092
+M006093
+M006094
+M006096
+M006097
+M006099
+M006100
+M006102
+M006103
+M006104
+M006105
+M006107
+M006108
+M006110
+M006111
+M006112
+M006113
+M006114
+M006115
+M006119
+M006120
+M006122
+M006124
+M006125
+M006126
+M006127
+M006128
+M006129
+M006130
+M006131
+M006134
+M006135
+M006136
+M006138
+M006139
+M006140
+M006141
+M006143
+M006144
+M006146
+M006147
+M006148
+M006151
+M006152
+M006153
+M006154
+M006155
+M006156
+M006157
+M006158
+M006159
+M006160
+M006161
+M006162
+M006164
+M006165
+M006166
+M006167
+M006168
+M006171
+M006173
+M006174
+M006175
+M006176
+M006178
+M006179
+M006180
+M006182
+M006183
+M006184
+M006187
+M006188
+M006189
+M006190
+M006191
+M006192
+M006193
+M006194
+M006195
+M006196
+M006197
+M006198
+M006200
+M006201
+M006202
+M006203
+M006206
+M006207
+M006208
+M006209
+M006211
+M006216
+M006217
+M006218
+M006219
+M006220
+M006223
+M006224
+M006226
+M006227
+M006228
+M006229
+M006231
+M006232
+M006233
+M006234
+M006237
+M006238
+M006239
+M006240
+M006242
+M006243
+M006244
+M006247
+M006248
+M006250
+M006252
+M006253
+M006254
+M006255
+M006256
+M006257
+M006259
+M006260
+M006261
+M006262
+M006264
+M006265
+M006266
+M006267
+M006268
+M006269
+M006270
+M006271
+M006273
+M006274
+M006275
+M006276
+M006277
+M006278
+M006279
+M006280
+M006282
+M006283
+M006284
+M006285
+M006287
+M006288
+M006289
+M006291
+M006292
+M006293
+M006294
+M006296
+M006297
+M006298
+M006299
+M006300
+M006301
+M006302
+M006303
+M006305
+M006307
+M006308
+M006309
+M006310
+M006311
+M006315
+M006316
+M006317
+M006318
+M006319
+M006320
+M006321
+M006322
+M006323
+M006324
+M006325
+M006326
+M006327
+M006328
+M006329
+M006333
+M006334
+M006335
+M006336
+M006338
+M006339
+M006340
+M006341
+M006342
+M006344
+M006345
+M006346
+M006347
+M006348
+M006349
+M006350
+M006352
+M006354
+M006355
+M006356
+M006358
+M006359
+M006360
+M006361
+M006362
+M006363
+M006364
+M006365
+M006366
+M006367
+M006368
+M006369
+M006370
+M006372
+M006373
+M006374
+M006375
+M006376
+M006377
+M006379
+M006380
+M006381
+M006382
+M006384
+M006386
+M006387
+M006388
+M006391
+M006392
+M006395
+M006396
+M006397
+M006398
+M006399
+M006400
+M006401
+M006402
+M006403
+M006404
+M006405
+M006406
+M006407
+M006408
+M006409
+M006410
+M006412
+M006413
+M006414
+M006415
+M006416
+M006417
+M006418
+M006419
+M006421
+M006422
+M006423
+M006424
+M006425
+M006427
+M006428
+M006429
+M006430
+M006431
+M006434
+M006435
+M006436
+M006437
+M006438
+M006439
+M006440
+M006441
+M006443
+M006444
+M006445
+M006446
+M006447
+M006448
+M006449
+M006450
+M006451
+M006452
+M006453
+M006455
+M006456
+M006458
+M006459
+M006460
+M006461
+M006462
+M006464
+M006465
+M006466
+M006467
+M006468
+M006469
+M006470
+M006471
+M006472
+M006474
+M006475
+M006476
+M006478
+M006479
+M006480
+M006482
+M006483
+M006484
+M006485
+M006486
+M006487
+M006488
+M006489
+M006490
+M006491
+M006492
+M006493
+M006495
+M006496
+M006497
+M006498
+M006499
+M006500
+M006502
+M006503
+M006505
+M006506
+M006507
+M006508
+M006509
+M006510
+M006511
+M006513
+M006515
+M006517
+M006519
+M006520
+M006522
+M006524
+M006526
+M006527
+M006528
+M006529
+M006530
+M006532
+M006534
+M006535
+M006536
+M006537
+M006538
+M006539
+M006540
+M006541
+M006543
+M006544
+M006545
+M006547
+M006548
+M006550
+M006551
+M006552
+M006553
+M006554
+M006555
+M006556
+M006557
+M006558
+M006559
+M006560
+M006562
+M006563
+M006564
+M006565
+M006566
+M006569
+M006571
+M006572
+M006578
+M006579
+M006580
+M006581
+M006582
+M006583
+M006584
+M006585
+M006586
+M006587
+M006590
+M006591
+M006592
+M006593
+M006594
+M006596
+M006597
+M006598
+M006599
+M006600
+M006601
+M006602
+M006603
+M006604
+M006605
+M006606
+M006607
+M006608
+M006609
+M006611
+M006612
+M006613
+M006614
+M006615
+M006616
+M006617
+M006618
+M006619
+M006621
+M006622
+M006623
+M006624
+M006625
+M006628
+M006629
+M006632
+M006633
+M006635
+M006636
+M006637
+M006638
+M006639
+M006641
+M006642
+M006643
+M006645
+M006646
+M006647
+M006649
+M006650
+M006651
+M006653
+M006654
+M006655
+M006656
+M006657
+M006659
+M006660
+M006661
+M006663
+M006664
+M006665
+M006666
+M006667
+M006668
+M006669
+M006670
+M006671
+M006672
+M006673
+M006675
+M006676
+M006677
+M006678
+M006679
+M006680
+M006681
+M006682
+M006683
+M006684
+M006685
+M006688
+M006689
+M006690
+M006691
+M006695
+M006696
+M006697
+M006698
+M006700
+M006702
+M006703
+M006704
+M006706
+M006707
+M006708
+M006710
+M006711
+M006713
+M006714
+M006715
+M006716
+M006717
+M006719
+M006720
+M006721
+M006722
+M006723
+M006725
+M006727
+M006728
+M006729
+M006730
+M006731
+M006732
+M006734
+M006736
+M006737
+M006738
+M006739
+M006740
+M006742
+M006743
+M006744
+M006745
+M006746
+M006747
+M006748
+M006749
+M006750
+M006751
+M006752
+M006753
+M006754
+M006757
+M006758
+M006760
+M006761
+M006763
+M006764
+M006767
+M006768
+M006769
+M006770
+M006771
+M006772
+M006773
+M006775
+M006776
+M006777
+M006778
+M006779
+M006780
+M006781
+M006782
+M006783
+M006785
+M006786
+M006787
+M006788
+M006789
+M006790
+M006791
+M006792
+M006793
+M006794
+M006795
+M006796
+M006797
+M006798
+M006799
+M006800
+M006801
+M006802
+M006803
+M006804
+M006805
+M006808
+M006809
+M006810
+M006812
+M006813
+M006815
+M006816
+M006817
+M006818
+M006820
+M006821
+M006822
+M006823
+M006824
+M006825
+M006826
+M006827
+M006829
+M006830
+M006831
+M006832
+M006833
+M006835
+M006837
+M006838
+M006841
+M006842
+M006843
+M006845
+M006847
+M006849
+M006850
+M006851
+M006854
+M006855
+M006856
+M006857
+M006858
+M006859
+M006860
+M006861
+M006862
+M006863
+M006864
+M006865
+M006866
+M006867
+M006868
+M006869
+M006870
+M006872
+M006873
+M006874
+M006875
+M006876
+M006877
+M006878
+M006879
+M006880
+M006881
+M006882
+M006884
+M006885
+M006886
+M006887
+M006889
+M006890
+M006891
+M006892
+M006893
+M006894
+M006895
+M006896
+M006897
+M006898
+M006899
+M006900
+M006901
+M006902
+M006903
+M006904
+M006905
+M006906
+M006907
+M006908
+M006909
+M006910
+M006911
+M006913
+M006914
+M006915
+M006916
+M006917
+M006918
+M006919
+M006920
+M006921
+M006922
+M006923
+M006924
+M006925
+M006926
+M006927
+M006928
+M006929
+M006930
+M006931
+M006932
+M006933
+M006934
+M006935
+M006936
+M006937
+M006938
+M006939
+M006940
+M006941
+M006942
+M006943
+M006945
+M006946
+M006947
+M006948
+M006950
+M006951
+M006952
+M006953
+M006954
+M006955
+M006956
+M006957
+M006958
+M006959
+M006960
+M006961
+M006962
+M006963
+M006964
+M006965
+M006966
+M006968
+M006969
+M006970
+M006971
+M006973
+M006976
+M006977
+M006978
+M006981
+M006983
+M006984
+M006985
+M006988
+M006989
+M006990
+M006991
+M006993
+M006994
+M006995
+M006996
+M006997
+M006998
+M006999
+M007002
+M007003
+M007004
+M007005
+M007006
+M007008
+M007009
+M007010
+M007011
+M007012
+M007013
+M007015
+M007016
+M007017
+M007018
+M007019
+M007021
+M007022
+M007023
+M007024
+M007026
+M007028
+M007029
+M007030
+M007031
+M007032
+M007033
+M007035
+M007036
+M007038
+M007039
+M007040
+M007042
+M007043
+M007044
+M007045
+M007046
+M007047
+M007048
+M007049
+M007050
+M007051
+M007052
+M007053
+M007054
+M007056
+M007057
+M007058
+M007059
+M007060
+M007061
+M007064
+M007065
+M007066
+M007067
+M007068
+M007069
+M007070
+M007071
+M007072
+M007073
+M007074
+M007076
+M007077
+M007078
+M007079
+M007080
+M007081
+M007082
+M007083
+M007084
+M007086
+M007087
+M007088
+M007090
+M007091
+M007092
+M007093
+M007094
+M007096
+M007098
+M007099
+M007100
+M007101
+M007103
+M007104
+M007105
+M007106
+M007107
+M007108
+M007109
+M007110
+M007111
+M007112
+M007113
+M007114
+M007115
+M007116
+M007117
+M007118
+M007119
+M007120
+M007122
+M007123
+M007125
+M007127
+M007128
+M007129
+M007130
+M007132
+M007133
+M007135
+M007137
+M007138
+M007139
+M007140
+M007141
+M007142
+M007143
+M007144
+M007145
+M007146
+M007147
+M007148
+M007150
+M007151
+M007152
+M007153
+M007154
+M007155
+M007156
+M007158
+M007159
+M007160
+M007161
+M007162
+M007163
+M007164
+M007166
+M007167
+M007168
+M007170
+M007172
+M007173
+M007174
+M007175
+M007176
+M007177
+M007178
+M007179
+M007180
+M007181
+M007182
+M007183
+M007184
+M007185
+M007186
+M007187
+M007188
+M007190
+M007192
+M007194
+M007195
+M007196
+M007197
+M007198
+M007200
+M007201
+M007202
+M007203
+M007204
+M007205
+M007206
+M007207
+M007208
+M007210
+M007211
+M007212
+M007213
+M007214
+M007215
+M007217
+M007218
+M007219
+M007220
+M007221
+M007222
+M007223
+M007224
+M007225
+M007226
+M007227
+M007228
+M007229
+M007230
+M007231
+M007233
+M007234
+M007235
+M007236
+M007237
+M007238
+M007239
+M007241
+M007242
+M007243
+M007244
+M007247
+M007248
+M007249
+M007250
+M007252
+M007253
+M007254
+M007256
+M007257
+M007258
+M007259
+M007260
+M007261
+M007262
+M007265
+M007266
+M007267
+M007268
+M007269
+M007270
+M007271
+M007272
+M007273
+M007274
+M007275
+M007276
+M007277
+M007278
+M007279
+M007282
+M007284
+M007285
+M007287
+M007288
+M007289
+M007290
+M007292
+M007293
+M007294
+M007295
+M007296
+M007299
+M007300
+M007302
+M007303
+M007304
+M007305
+M007306
+M007307
+M007308
+M007309
+M007310
+M007311
+M007312
+M007313
+M007315
+M007316
+M007319
+M007320
+M007321
+M007323
+M007326
+M007327
+M007328
+M007329
+M007330
+M007331
+M007332
+M007333
+M007334
+M007335
+M007336
+M007337
+M007338
+M007339
+M007340
+M007341
+M007342
+M007343
+M007344
+M007345
+M007346
+M007347
+M007348
+M007349
+M007350
+M007351
+M007356
+M007357
+M007358
+M007360
+M007361
+M007362
+M007363
+M007364
+M007366
+M007367
+M007368
+M007370
+M007371
+M007372
+M007373
+M007374
+M007375
+M007376
+M007377
+M007378
+M007379
+M007380
+M007381
+M007382
+M007383
+M007385
+M007386
+M007387
+M007388
+M007389
+M007390
+M007391
+M007392
+M007393
+M007394
+M007395
+M007396
+M007397
+M007398
+M007400
+M007401
+M007402
+M007403
+M007404
+M007406
+M007407
+M007408
+M007410
+M007412
+M007413
+M007414
+M007415
+M007416
+M007417
+M007419
+M007420
+M007421
+M007422
+M007424
+M007425
+M007426
+M007427
+M007430
+M007431
+M007432
+M007433
+M007434
+M007435
+M007437
+M007439
+M007441
+M007442
+M007443
+M007446
+M007447
+M007448
+M007449
+M007453
+M007455
+M007456
+M007457
+M007458
+M007460
+M007461
+M007462
+M007463
+M007464
+M007465
+M007466
+M007467
+M007468
+M007469
+M007470
+M007471
+M007472
+M007474
+M007475
+M007476
+M007477
+M007478
+M007479
+M007482
+M007483
+M007484
+M007485
+M007486
+M007487
+M007488
+M007489
+M007490
+M007491
+M007493
+M007494
+M007495
+M007497
+M007498
+M007499
+M007500
+M007501
+M007502
+M007504
+M007505
+M007506
+M007507
+M007508
+M007509
+M007510
+M007511
+M007512
+M007515
+M007517
+M007518
+M007519
+M007520
+M007521
+M007524
+M007525
+M007526
+M007527
+M007528
+M007529
+M007530
+M007531
+M007532
+M007533
+M007534
+M007536
+M007537
+M007538
+M007539
+M007541
+M007542
+M007544
+M007545
+M007546
+M007547
+M007548
+M007552
+M007553
+M007555
+M007557
+M007560
+M007562
+M007563
+M007564
+M007565
+M007566
+M007568
+M007569
+M007570
+M007571
+M007574
+M007575
+M007576
+M007578
+M007579
+M007580
+M007582
+M007583
+M007584
+M007586
+M007588
+M007590
+M007591
+M007592
+M007593
+M007594
+M007595
+M007596
+M007600
+M007601
+M007602
+M007603
+M007604
+M007605
+M007606
+M007608
+M007609
+M007611
+M007613
+M007614
+M007615
+M007616
+M007618
+M007619
+M007620
+M007621
+M007622
+M007623
+M007631
+M007632
+M007633
+M007634
+M007636
+M007637
+M007638
+M007639
+M007640
+M007641
+M007642
+M007643
+M007646
+M007647
+M007648
+M007649
+M007650
+M007651
+M007652
+M007653
+M007656
+M007657
+M007658
+M007662
+M007663
+M007664
+M007665
+M007667
+M007668
+M007669
+M007670
+M007671
+M007672
+M007673
+M007674
+M007677
+M007680
+M007681
+M007682
+M007683
+M007684
+M007685
+M007686
+M007687
+M007688
+M007690
+M007694
+M007696
+M007697
+M007698
+M007699
+M007700
+M007701
+M007702
+M007703
+M007704
+M007705
+M007707
+M007710
+M007711
+M007712
+M007713
+M007714
+M007716
+M007717
+M007718
+M007719
+M007720
+M007721
+M007722
+M007723
+M007724
+M007725
+M007726
+M007727
+M007728
+M007729
+M007730
+M007731
+M007733
+M007734
+M007735
+M007736
+M007737
+M007738
+M007739
+M007740
+M007741
+M007743
+M007744
+M007745
+M007746
+M007747
+M007748
+M007749
+M007752
+M007753
+M007754
+M007755
+M007757
+M007760
+M007761
+M007762
+M007763
+M007764
+M007765
+M007766
+M007768
+M007769
+M007771
+M007773
+M007774
+M007775
+M007778
+M007780
+M007781
+M007782
+M007783
+M007784
+M007785
+M007786
+M007787
+M007788
+M007789
+M007790
+M007792
+M007793
+M007794
+M007795
+M007796
+M007797
+M007798
+M007799
+M007800
+M007801
+M007802
+M007803
+M007804
+M007805
+M007807
+M007809
+M007810
+M007813
+M007814
+M007815
+M007816
+M007817
+M007819
+M007823
+M007825
+M007826
+M007827
+M007829
+M007830
+M007831
+M007832
+M007833
+M007834
+M007835
+M007836
+M007837
+M007838
+M007839
+M007840
+M007841
+M007842
+M007843
+M007844
+M007845
+M007846
+M007847
+M007848
+M007851
+M007852
+M007853
+M007854
+M007855
+M007856
+M007857
+M007858
+M007859
+M007860
+M007861
+M007863
+M007864
+M007865
+M007866
+M007868
+M007869
+M007870
+M007871
+M007872
+M007873
+M007874
+M007875
+M007876
+M007877
+M007879
+M007880
+M007881
+M007882
+M007883
+M007884
+M007885
+M007887
+M007891
+M007892
+M007894
+M007895
+M007897
+M007898
+M007899
+M007900
+M007901
+M007902
+M007903
+M007904
+M007905
+M007906
+M007907
+M007908
+M007909
+M007910
+M007911
+M007912
+M007913
+M007914
+M007915
+M007916
+M007917
+M007918
+M007919
+M007920
+M007921
+M007922
+M007923
+M007925
+M007926
+M007927
+M007928
+M007929
+M007930
+M007931
+M007932
+M007934
+M007935
+M007936
+M007937
+M007938
+M007939
+M007942
+M007943
+M007944
+M007945
+M007947
+M007948
+M007950
+M007951
+M007952
+M007953
+M007954
+M007955
+M007956
+M007957
+M007958
+M007959
+M007961
+M007962
+M007963
+M007964
+M007965
+M007966
+M007967
+M007968
+M007969
+M007972
+M007973
+M007974
+M007976
+M007977
+M007978
+M007979
+M007980
+M007981
+M007982
+M007983
+M007984
+M007985
+M007986
+M007987
+M007988
+M007989
+M007990
+M007991
+M007992
+M007993
+M007994
+M007996
+M007997
+M007998
+M008000
+M008001
+M008003
+M008004
+M008005
+M008007
+M008008
+M008010
+M008011
+M008012
+M008013
+M008015
+M008017
+M008018
+M008019
+M008020
+M008021
+M008022
+M008023
+M008024
+M008026
+M008027
+M008028
+M008030
+M008031
+M008033
+M008034
+M008035
+M008036
+M008037
+M008038
+M008040
+M008041
+M008042
+M008043
+M008044
+M008045
+M008046
+M008047
+M008048
+M008049
+M008050
+M008051
+M008054
+M008056
+M008058
+M008059
+M008061
+M008062
+M008063
+M008064
+M008065
+M008066
+M008067
+M008070
+M008071
+M008072
+M008073
+M008074
+M008075
+M008076
+M008078
+M008079
+M008080
+M008081
+M008083
+M008085
+M008086
+M008089
+M008090
+M008091
+M008092
+M008093
+M008094
+M008095
+M008096
+M008097
+M008098
+M008099
+M008101
+M008102
+M008103
+M008104
+M008106
+M008107
+M008108
+M008109
+M008110
+M008111
+M008112
+M008113
+M008115
+M008116
+M008118
+M008119
+M008120
+M008122
+M008123
+M008124
+M008125
+M008126
+M008127
+M008128
+M008129
+M008130
+M008132
+M008133
+M008134
+M008135
+M008136
+M008137
+M008138
+M008140
+M008142
+M008143
+M008145
+M008146
+M008148
+M008149
+M008150
+M008151
+M008153
+M008154
+M008155
+M008156
+M008158
+M008160
+M008161
+M008163
+M008164
+M008165
+M008167
+M008169
+M008171
+M008172
+M008175
+M008176
+M008178
+M008180
+M008181
+M008182
+M008183
+M008184
+M008185
+M008186
+M008187
+M008188
+M008189
+M008190
+M008192
+M008193
+M008194
+M008195
+M008196
+M008197
+M008198
+M008200
+M008201
+M008202
+M008203
+M008204
+M008206
+M008209
+M008210
+M008211
+M008212
+M008213
+M008214
+M008215
+M008217
+M008218
+M008219
+M008220
+M008221
+M008222
+M008223
+M008224
+M008225
+M008226
+M008228
+M008229
+M008230
+M008231
+M008233
+M008234
+M008236
+M008237
+M008239
+M008240
+M008241
+M008242
+M008243
+M008244
+M008245
+M008246
+M008247
+M008248
+M008249
+M008250
+M008251
+M008252
+M008253
+M008254
+M008255
+M008257
+M008258
+M008259
+M008260
+M008261
+M008262
+M008263
+M008264
+M008265
+M008267
+M008268
+M008269
+M008270
+M008271
+M008272
+M008273
+M008274
+M008277
+M008278
+M008279
+M008280
+M008281
+M008283
+M008285
+M008286
+M008287
+M008288
+M008289
+M008290
+M008293
+M008294
+M008295
+M008297
+M008298
+M008299
+M008300
+M008301
+M008302
+M008303
+M008304
+M008305
+M008306
+M008307
+M008308
+M008309
+M008311
+M008313
+M008314
+M008316
+M008318
+M008319
+M008321
+M008322
+M008323
+M008324
+M008325
+M008326
+M008327
+M008328
+M008329
+M008330
+M008332
+M008334
+M008335
+M008336
+M008337
+M008341
+M008342
+M008344
+M008345
+M008346
+M008347
+M008348
+M008350
+M008351
+M008353
+M008355
+M008356
+M008358
+M008359
+M008361
+M008362
+M008364
+M008365
+M008366
+M008368
+M008369
+M008370
+M008372
+M008373
+M008374
+M008375
+M008376
+M008377
+M008379
+M008380
+M008384
+M008385
+M008386
+M008387
+M008389
+M008390
+M008391
+M008392
+M008393
+M008394
+M008396
+M008397
+M008398
+M008400
+M008402
+M008403
+M008404
+M008405
+M008406
+M008407
+M008408
+M008409
+M008410
+M008411
+M008412
+M008413
+M008414
+M008415
+M008416
+M008417
+M008418
+M008419
+M008420
+M008421
+M008422
+M008423
+M008424
+M008425
+M008426
+M008427
+M008428
+M008430
+M008432
+M008434
+M008435
+M008436
+M008437
+M008438
+M008439
+M008440
+M008441
+M008442
+M008444
+M008445
+M008446
+M008447
+M008448
+M008450
+M008452
+M008453
+M008455
+M008456
+M008459
+M008460
+M008462
+M008464
+M008465
+M008466
+M008467
+M008468
+M008471
+M008472
+M008473
+M008476
+M008477
+M008478
+M008479
+M008480
+M008481
+M008482
+M008483
+M008485
+M008486
+M008487
+M008488
+M008491
+M008492
+M008494
+M008495
+M008497
+M008499
+M008501
+M008503
+M008507
+M008508
+M008509
+M008510
+M008512
+M008513
+M008514
+M008515
+M008516
+M008519
+M008520
+M008521
+M008522
+M008523
+M008524
+M008525
+M008527
+M008529
+M008530
+M008531
+M008532
+M008533
+M008534
+M008535
+M008536
+M008537
+M008538
+M008540
+M008541
+M008543
+M008544
+M008545
+M008546
+M008547
+M008548
+M008549
+M008550
+M008551
+M008552
+M008553
+M008554
+M008555
+M008557
+M008558
+M008561
+M008562
+M008563
+M008566
+M008568
+M008569
+M008570
+M008571
+M008572
+M008573
+M008574
+M008575
+M008577
+M008578
+M008579
+M008580
+M008581
+M008582
+M008584
+M008585
+M008586
+M008587
+M008589
+M008590
+M008591
+M008593
+M008594
+M008595
+M008596
+M008599
+M008600
+M008601
+M008602
+M008604
+M008605
+M008606
+M008607
+M008608
+M008609
+M008611
+M008612
+M008613
+M008615
+M008616
+M008618
+M008619
+M008621
+M008622
+M008623
+M008624
+M008625
+M008626
+M008627
+M008628
+M008629
+M008631
+M008632
+M008634
+M008636
+M008637
+M008638
+M008639
+M008640
+M008641
+M008642
+M008643
+M008644
+M008645
+M008647
+M008648
+M008649
+M008650
+M008651
+M008652
+M008654
+M008655
+M008656
+M008658
+M008659
+M008660
+M008661
+M008662
+M008663
+M008665
+M008666
+M008667
+M008669
+M008670
+M008671
+M008672
+M008673
+M008674
+M008675
+M008676
+M008677
+M008678
+M008679
+M008680
+M008681
+M008682
+M008684
+M008685
+M008686
+M008687
+M008688
+M008689
+M008690
+M008693
+M008695
+M008698
+M008699
+M008700
+M008702
+M008703
+M008705
+M008706
+M008709
+M008710
+M008711
+M008712
+M008713
+M008714
+M008715
+M008716
+M008717
+M008718
+M008719
+M008721
+M008722
+M008723
+M008724
+M008726
+M008727
+M008728
+M008729
+M008731
+M008732
+M008733
+M008735
+M008736
+M008737
+M008738
+M008741
+M008742
+M008743
+M008744
+M008745
+M008746
+M008747
+M008750
+M008751
+M008752
+M008753
+M008754
+M008756
+M008757
+M008760
+M008762
+M008763
+M008764
+M008765
+M008766
+M008767
+M008768
+M008769
+M008770
+M008771
+M008772
+M008773
+M008776
+M008777
+M008778
+M008779
+M008780
+M008781
+M008783
+M008784
+M008785
+M008786
+M008787
+M008788
+M008789
+M008790
+M008791
+M008792
+M008793
+M008794
+M008795
+M008796
+M008797
+M008798
+M008799
+M008800
+M008802
+M008804
+M008805
+M008806
+M008808
+M008809
+M008810
+M008811
+M008812
+M008813
+M008814
+M008815
+M008816
+M008819
+M008820
+M008821
+M008823
+M008825
+M008826
+M008827
+M008829
+M008830
+M008831
+M008832
+M008833
+M008834
+M008836
+M008839
+M008841
+M008842
+M008844
+M008845
+M008846
+M008847
+M008848
+M008849
+M008850
+M008852
+M008854
+M008855
+M008856
+M008857
+M008858
+M008860
+M008863
+M008864
+M008865
+M008866
+M008867
+M008868
+M008869
+M008870
+M008872
+M008873
+M008874
+M008875
+M008876
+M008878
+M008879
+M008880
+M008881
+M008882
+M008883
+M008884
+M008885
+M008886
+M008889
+M008890
+M008891
+M008892
+M008893
+M008894
+M008896
+M008897
+M008898
+M008899
+M008901
+M008903
+M008907
+M008908
+M008909
+M008911
+M008912
+M008913
+M008914
+M008915
+M008916
+M008917
+M008918
+M008919
+M008920
+M008921
+M008922
+M008923
+M008924
+M008925
+M008926
+M008928
+M008929
+M008930
+M008931
+M008932
+M008933
+M008935
+M008937
+M008938
+M008940
+M008941
+M008942
+M008945
+M008946
+M008947
+M008948
+M008949
+M008950
+M008951
+M008952
+M008954
+M008956
+M008957
+M008958
+M008959
+M008960
+M008961
+M008962
+M008963
+M008964
+M008965
+M008968
+M008969
+M008972
+M008974
+M008975
+M008976
+M008977
+M008978
+M008979
+M008980
+M008981
+M008983
+M008985
+M008986
+M008987
+M008988
+M008989
+M008990
+M008991
+M008992
+M008993
+M008994
+M008996
+M008997
+M008999
+M009000
+M009003
+M009004
+M009005
+M009006
+M009007
+M009009
+M009010
+M009011
+M009012
+M009013
+M009014
+M009015
+M009016
+M009017
+M009018
+M009019
+M009020
+M009021
+M009023
+M009024
+M009025
+M009026
+M009027
+M009028
+M009029
+M009030
+M009032
+M009033
+M009034
+M009035
+M009036
+M009037
+M009038
+M009039
+M009040
+M009042
+M009044
+M009045
+M009046
+M009047
+M009048
+M009050
+M009051
+M009053
+M009054
+M009056
+M009057
+M009060
+M009061
+M009062
+M009063
+M009064
+M009065
+M009066
+M009067
+M009068
+M009069
+M009070
+M009071
+M009073
+M009074
+M009076
+M009078
+M009079
+M009080
+M009081
+M009082
+M009083
+M009085
+M009086
+M009087
+M009089
+M009090
+M009091
+M009092
+M009093
+M009094
+M009095
+M009097
+M009099
+M009100
+M009101
+M009104
+M009105
+M009106
+M009107
+M009108
+M009109
+M009110
+M009111
+M009112
+M009114
+M009115
+M009116
+M009117
+M009118
+M009119
+M009120
+M009121
+M009122
+M009124
+M009126
+M009127
+M009128
+M009129
+M009130
+M009131
+M009132
+M009133
+M009134
+M009136
+M009138
+M009139
+M009141
+M009142
+M009143
+M009144
+M009145
+M009146
+M009147
+M009149
+M009151
+M009152
+M009153
+M009154
+M009155
+M009156
+M009157
+M009158
+M009159
+M009160
+M009162
+M009163
+M009164
+M009166
+M009167
+M009168
+M009169
+M009170
+M009172
+M009173
+M009174
+M009175
+M009176
+M009177
+M009178
+M009179
+M009180
+M009182
+M009183
+M009185
+M009186
+M009188
+M009189
+M009190
+M009191
+M009192
+M009193
+M009194
+M009195
+M009196
+M009197
+M009198
+M009200
+M009201
+M009202
+M009203
+M009204
+M009205
+M009206
+M009208
+M009210
+M009211
+M009213
+M009214
+M009215
+M009217
+M009218
+M009219
+M009221
+M009222
+M009223
+M009224
+M009226
+M009227
+M009228
+M009229
+M009231
+M009232
+M009234
+M009235
+M009236
+M009237
+M009239
+M009240
+M009241
+M009242
+M009243
+M009245
+M009246
+M009247
+M009248
+M009249
+M009250
+M009253
+M009254
+M009255
+M009256
+M009257
+M009258
+M009259
+M009260
+M009261
+M009262
+M009263
+M009264
+M009265
+M009266
+M009267
+M009268
+M009269
+M009271
+M009272
+M009274
+M009275
+M009276
+M009277
+M009278
+M009279
+M009280
+M009281
+M009282
+M009284
+M009285
+M009286
+M009288
+M009290
+M009292
+M009293
+M009294
+M009295
+M009296
+M009297
+M009299
+M009300
+M009301
+M009304
+M009305
+M009306
+M009307
+M009308
+M009309
+M009310
+M009311
+M009312
+M009313
+M009315
+M009317
+M009318
+M009319
+M009320
+M009321
+M009322
+M009323
+M009324
+M009325
+M009326
+M009327
+M009328
+M009329
+M009330
+M009333
+M009334
+M009335
+M009336
+M009337
+M009339
+M009340
+M009341
+M009342
+M009343
+M009344
+M009345
+M009346
+M009347
+M009348
+M009350
+M009353
+M009356
+M009358
+M009360
+M009361
+M009362
+M009364
+M009365
+M009366
+M009367
+M009368
+M009369
+M009371
+M009372
+M009374
+M009375
+M009376
+M009378
+M009379
+M009380
+M009381
+M009382
+M009384
+M009386
+M009387
+M009388
+M009389
+M009390
+M009391
+M009392
+M009393
+M009394
+M009395
+M009396
+M009397
+M009398
+M009403
+M009404
+M009406
+M009407
+M009408
+M009409
+M009411
+M009412
+M009413
+M009414
+M009415
+M009416
+M009417
+M009418
+M009419
+M009420
+M009422
+M009423
+M009424
+M009426
+M009427
+M009428
+M009429
+M009430
+M009431
+M009434
+M009435
+M009436
+M009438
+M009439
+M009440
+M009442
+M009444
+M009446
+M009447
+M009448
+M009451
+M009452
+M009453
+M009454
+M009456
+M009457
+M009458
+M009460
+M009461
+M009463
+M009464
+M009465
+M009466
+M009467
+M009468
+M009469
+M009470
+M009471
+M009472
+M009473
+M009474
+M009475
+M009476
+M009480
+M009481
+M009482
+M009483
+M009484
+M009486
+M009487
+M009489
+M009490
+M009491
+M009492
+M009494
+M009495
+M009496
+M009497
+M009498
+M009499
+M009500
+M009501
+M009502
+M009503
+M009504
+M009505
+M009506
+M009507
+M009508
+M009509
+M009510
+M009512
+M009513
+M009514
+M009515
+M009518
+M009520
+M009522
+M009523
+M009524
+M009525
+M009526
+M009527
+M009528
+M009529
+M009530
+M009531
+M009532
+M009533
+M009534
+M009536
+M009538
+M009540
+M009542
+M009544
+M009545
+M009546
+M009547
+M009548
+M009549
+M009550
+M009551
+M009552
+M009553
+M009555
+M009557
+M009558
+M009559
+M009560
+M009563
+M009564
+M009565
+M009567
+M009568
+M009569
+M009570
+M009571
+M009572
+M009573
+M009574
+M009575
+M009576
+M009578
+M009580
+M009581
+M009582
+M009583
+M009585
+M009586
+M009587
+M009588
+M009589
+M009590
+M009591
+M009592
+M009593
+M009594
+M009595
+M009596
+M009597
+M009598
+M009599
+M009601
+M009602
+M009603
+M009604
+M009605
+M009607
+M009610
+M009611
+M009612
+M009614
+M009615
+M009616
+M009617
+M009618
+M009619
+M009620
+M009621
+M009622
+M009623
+M009624
+M009627
+M009628
+M009629
+M009630
+M009631
+M009632
+M009633
+M009634
+M009635
+M009636
+M009637
+M009638
+M009639
+M009640
+M009641
+M009642
+M009644
+M009646
+M009647
+M009648
+M009649
+M009650
+M009651
+M009652
+M009653
+M009655
+M009656
+M009657
+M009658
+M009659
+M009660
+M009661
+M009662
+M009663
+M009664
+M009665
+M009667
+M009668
+M009669
+M009670
+M009672
+M009674
+M009675
+M009676
+M009677
+M009678
+M009679
+M009680
+M009681
+M009682
+M009683
+M009684
+M009685
+M009686
+M009687
+M009688
+M009690
+M009691
+M009692
+M009693
+M009694
+M009695
+M009696
+M009697
+M009698
+M009699
+M009700
+M009701
+M009702
+M009704
+M009705
+M009706
+M009708
+M009711
+M009713
+M009715
+M009718
+M009719
+M009721
+M009722
+M009723
+M009724
+M009725
+M009728
+M009729
+M009731
+M009732
+M009733
+M009734
+M009735
+M009736
+M009737
+M009738
+M009739
+M009740
+M009741
+M009742
+M009743
+M009744
+M009745
+M009746
+M009747
+M009748
+M009752
+M009753
+M009754
+M009755
+M009756
+M009757
+M009759
+M009760
+M009761
+M009763
+M009764
+M009765
+M009766
+M009767
+M009769
+M009770
+M009772
+M009774
+M009775
+M009778
+M009779
+M009780
+M009781
+M009782
+M009783
+M009784
+M009785
+M009786
+M009787
+M009788
+M009789
+M009791
+M009792
+M009793
+M009794
+M009795
+M009796
+M009797
+M009798
+M009799
+M009800
+M009801
+M009802
+M009803
+M009804
+M009805
+M009806
+M009807
+M009808
+M009809
+M009810
+M009811
+M009812
+M009813
+M009814
+M009815
+M009817
+M009818
+M009819
+M009820
+M009821
+M009822
+M009823
+M009824
+M009825
+M009826
+M009827
+M009828
+M009829
+M009830
+M009832
+M009833
+M009834
+M009835
+M009836
+M009837
+M009838
+M009839
+M009840
+M009842
+M009845
+M009846
+M009847
+M009848
+M009850
+M009851
+M009853
+M009854
+M009855
+M009856
+M009857
+M009858
+M009859
+M009860
+M009861
+M009862
+M009864
+M009865
+M009866
+M009868
+M009869
+M009870
+M009872
+M009873
+M009874
+M009875
+M009876
+M009878
+M009879
+M009882
+M009883
+M009884
+M009885
+M009886
+M009887
+M009888
+M009889
+M009891
+M009892
+M009893
+M009895
+M009896
+M009897
+M009898
+M009899
+M009900
+M009902
+M009904
+M009906
+M009907
+M009909
+M009911
+M009912
+M009914
+M009915
+M009916
+M009918
+M009920
+M009921
+M009922
+M009923
+M009925
+M009927
+M009928
+M009929
+M009930
+M009931
+M009932
+M009934
+M009935
+M009936
+M009937
+M009938
+M009939
+M009940
+M009943
+M009944
+M009947
+M009948
+M009949
+M009950
+M009951
+M009952
+M009953
+M009956
+M009957
+M009959
+M009962
+M009963
+M009964
+M009965
+M009966
+M009967
+M009969
+M009970
+M009971
+M009973
+M009974
+M009975
+M009976
+M009978
+M009980
+M009981
+M009982
+M009983
+M009984
+M009985
+M009987
+M009988
+M009989
+M009990
+M009993
+M009994
+M009995
+M009997
+M009998
+M009999
+M010001
+M010002
+M010004
+M010005
+M010006
+M010008
+M010009
+M010010
+M010011
+M010012
+M010013
+M010014
+M010015
+M010017
+M010019
+M010020
+M010021
+M010022
+M010024
+M010025
+M010027
+M010030
+M010031
+M010033
+M010034
+M010035
+M010036
+M010038
+M010040
+M010041
+M010042
+M010044
+M010045
+M010047
+M010048
+M010049
+M010050
+M010051
+M010053
+M010054
+M010055
+M010056
+M010058
+M010059
+M010060
+M010061
+M010062
+M010063
+M010064
+M010065
+M010066
+M010067
+M010069
+M010070
+M010071
+M010073
+M010074
+M010075
+M010077
+M010078
+M010079
+M010081
+M010084
+M010085
+M010086
+M010087
+M010089
+M010090
+M010091
+M010092
+M010093
+M010094
+M010095
+M010096
+M010097
+M010098
+M010099
+M010100
+M010101
+M010102
+M010103
+M010104
+M010105
+M010106
+M010107
+M010108
+M010109
+M010111
+M010112
+M010113
+M010115
+M010117
+M010118
+M010119
+M010120
+M010121
+M010122
+M010123
+M010124
+M010125
+M010127
+M010128
+M010129
+M010132
+M010133
+M010134
+M010136
+M010137
+M010138
+M010139
+M010140
+M010144
+M010146
+M010147
+M010149
+M010151
+M010152
+M010153
+M010154
+M010155
+M010156
+M010158
+M010159
+M010163
+M010166
+M010168
+M010169
+M010170
+M010171
+M010172
+M010173
+M010175
+M010176
+M010177
+M010178
+M010179
+M010180
+M010181
+M010184
+M010185
+M010186
+M010187
+M010188
+M010190
+M010191
+M010192
+M010194
+M010197
+M010198
+M010200
+M010201
+M010202
+M010203
+M010204
+M010205
+M010206
+M010207
+M010208
+M010209
+M010210
+M010211
+M010212
+M010214
+M010215
+M010216
+M010217
+M010218
+M010219
+M010220
+M010221
+M010222
+M010224
+M010225
+M010227
+M010228
+M010229
+M010230
+M010231
+M010232
+M010234
+M010235
+M010237
+M010239
+M010240
+M010241
+M010242
+M010243
+M010244
+M010246
+M010247
+M010249
+M010250
+M010251
+M010252
+M010253
+M010255
+M010256
+M010257
+M010258
+M010259
+M010260
+M010261
+M010262
+M010263
+M010264
+M010265
+M010266
+M010267
+M010268
+M010269
+M010271
+M010272
+M010273
+M010274
+M010276
+M010277
+M010278
+M010279
+M010281
+M010283
+M010284
+M010285
+M010287
+M010289
+M010290
+M010291
+M010292
+M010293
+M010294
+M010295
+M010296
+M010297
+M010299
+M010300
+M010301
+M010302
+M010303
+M010304
+M010306
+M010307
+M010309
+M010310
+M010311
+M010312
+M010313
+M010314
+M010316
+M010318
+M010319
+M010320
+M010321
+M010322
+M010323
+M010324
+M010325
+M010326
+M010328
+M010330
+M010332
+M010333
+M010334
+M010335
+M010336
+M010337
+M010338
+M010339
+M010340
+M010341
+M010344
+M010345
+M010346
+M010347
+M010348
+M010349
+M010350
+M010351
+M010352
+M010353
+M010354
+M010355
+M010356
+M010357
+M010358
+M010359
+M010361
+M010362
+M010363
+M010364
+M010365
+M010366
+M010367
+M010368
+M010369
+M010370
+M010371
+M010372
+M010373
+M010374
+M010375
+M010376
+M010377
+M010379
+M010380
+M010382
+M010383
+M010385
+M010386
+M010387
+M010389
+M010391
+M010393
+M010394
+M010395
+M010396
+M010397
+M010398
+M010399
+M010400
+M010402
+M010403
+M010406
+M010407
+M010408
+M010410
+M010411
+M010412
+M010413
+M010414
+M010415
+M010416
+M010417
+M010418
+M010419
+M010420
+M010422
+M010423
+M010424
+M010425
+M010426
+M010427
+M010428
+M010430
+M010431
+M010433
+M010434
+M010435
+M010436
+M010437
+M010438
+M010440
+M010442
+M010444
+M010446
+M010448
+M010449
+M010450
+M010451
+M010452
+M010453
+M010454
+M010455
+M010457
+M010459
+M010460
+M010461
+M010462
+M010463
+M010465
+M010466
+M010467
+M010468
+M010469
+M010470
+M010471
+M010472
+M010473
+M010474
+M010475
+M010476
+M010477
+M010478
+M010480
+M010481
+M010482
+M010483
+M010484
+M010485
+M010486
+M010487
+M010488
+M010489
+M010490
+M010491
+M010493
+M010494
+M010497
+M010498
+M010500
+M010501
+M010502
+M010503
+M010504
+M010505
+M010506
+M010507
+M010508
+M010510
+M010511
+M010513
+M010514
+M010515
+M010516
+M010517
+M010518
+M010519
+M010521
+M010522
+M010523
+M010524
+M010527
+M010528
+M010530
+M010531
+M010532
+M010533
+M010534
+M010535
+M010536
+M010537
+M010538
+M010539
+M010540
+M010542
+M010543
+M010544
+M010548
+M010550
+M010551
+M010554
+M010555
+M010556
+M010559
+M010560
+M010561
+M010562
+M010564
+M010566
+M010567
+M010568
+M010569
+M010570
+M010571
+M010572
+M010573
+M010574
+M010575
+M010577
+M010578
+M010579
+M010580
+M010581
+M010582
+M010583
+M010584
+M010585
+M010589
+M010590
+M010591
+M010592
+M010593
+M010594
+M010595
+M010596
+M010597
+M010598
+M010599
+M010602
+M010603
+M010604
+M010605
+M010606
+M010607
+M010608
+M010609
+M010610
+M010611
+M010612
+M010613
+M010614
+M010615
+M010619
+M010620
+M010621
+M010622
+M010623
+M010624
+M010625
+M010626
+M010627
+M010628
+M010629
+M010630
+M010631
+M010632
+M010633
+M010634
+M010636
+M010638
+M010640
+M010641
+M010643
+M010644
+M010645
+M010646
+M010649
+M010650
+M010652
+M010653
+M010654
+M010655
+M010656
+M010657
+M010659
+M010660
+M010661
+M010662
+M010663
+M010664
+M010666
+M010667
+M010668
+M010669
+M010670
+M010672
+M010673
+M010674
+M010675
+M010676
+M010677
+M010678
+M010679
+M010680
+M010681
+M010682
+M010683
+M010684
+M010685
+M010686
+M010687
+M010688
+M010689
+M010690
+M010691
+M010692
+M010693
+M010694
+M010695
+M010696
+M010697
+M010700
+M010701
+M010702
+M010704
+M010705
+M010707
+M010708
+M010709
+M010710
+M010712
+M010714
+M010715
+M010716
+M010717
+M010718
+M010719
+M010721
+M010722
+M010723
+M010724
+M010725
+M010726
+M010727
+M010728
+M010730
+M010732
+M010733
+M010734
+M010735
+M010737
+M010738
+M010740
+M010741
+M010742
+M010743
+M010744
+M010746
+M010747
+M010748
+M010749
+M010750
+M010751
+M010754
+M010755
+M010757
+M010758
+M010760
+M010761
+M010762
+M010763
+M010764
+M010765
+M010766
+M010767
+M010768
+M010769
+M010770
+M010771
+M010772
+M010774
+M010775
+M010776
+M010777
+M010778
+M010779
+M010780
+M010781
+M010782
+M010783
+M010786
+M010787
+M010788
+M010789
+M010790
+M010791
+M010793
+M010794
+M010796
+M010798
+M010799
+M010800
+M010801
+M010802
+M010803
+M010804
+M010805
+M010806
+M010807
+M010808
+M010809
+M010811
+M010812
+M010813
+M010814
+M010815
+M010818
+M010820
+M010821
+M010822
+M010824
+M010825
+M010826
+M010829
+M010830
+M010831
+M010832
+M010833
+M010834
+M010836
+M010837
+M010838
+M010839
+M010840
+M010841
+M010842
+M010844
+M010845
+M010846
+M010847
+M010848
+M010849
+M010851
+M010853
+M010854
+M010855
+M010856
+M010857
+M010858
+M010859
+M010860
+M010861
+M010862
+M010864
+M010865
+M010866
+M010867
+M010868
+M010869
+M010870
+M010871
+M010872
+M010873
+M010875
+M010876
+M010877
+M010879
+M010880
+M010881
+M010882
+M010883
+M010884
+M010885
+M010886
+M010887
+M010888
+M010889
+M010890
+M010891
+M010892
+M010893
+M010894
+M010896
+M010899
+M010900
+M010903
+M010904
+M010906
+M010907
+M010908
+M010910
+M010911
+M010912
+M010913
+M010914
+M010916
+M010918
+M010920
+M010922
+M010923
+M010924
+M010925
+M010926
+M010929
+M010930
+M010931
+M010932
+M010933
+M010934
+M010935
+M010937
+M010939
+M010941
+M010942
+M010943
+M010944
+M010947
+M010948
+M010949
+M010950
+M010951
+M010952
+M010953
+M010954
+M010955
+M010957
+M010958
+M010959
+M010961
+M010963
+M010965
+M010966
+M010968
+M010969
+M010970
+M010971
+M010972
+M010973
+M010974
+M010975
+M010977
+M010979
+M010980
+M010981
+M010982
+M010983
+M010984
+M010986
+M010987
+M010988
+M010989
+M010990
+M010991
+M010992
+M010993
+M010994
+M010997
+M010998
+M010999
+M011000
+M011001
+M011002
+M011003
+M011005
+M011006
+M011007
+M011009
+M011010
+M011011
+M011012
+M011013
+M011015
+M011016
+M011017
+M011019
+M011020
+M011023
+M011024
+M011025
+M011027
+M011029
+M011030
+M011031
+M011033
+M011034
+M011037
+M011038
+M011039
+M011040
+M011041
+M011042
+M011043
+M011044
+M011045
+M011047
+M011048
+M011049
+M011050
+M011051
+M011052
+M011053
+M011054
+M011056
+M011057
+M011058
+M011060
+M011061
+M011062
+M011063
+M011064
+M011065
+M011066
+M011067
+M011068
+M011069
+M011070
+M011071
+M011072
+M011076
+M011077
+M011078
+M011079
+M011080
+M011081
+M011082
+M011083
+M011085
+M011086
+M011087
+M011088
+M011090
+M011092
+M011093
+M011094
+M011096
+M011097
+M011098
+M011099
+M011100
+M011102
+M011103
+M011104
+M011105
+M011106
+M011107
+M011108
+M011109
+M011110
+M011111
+M011112
+M011113
+M011114
+M011115
+M011116
+M011117
+M011118
+M011119
+M011120
+M011121
+M011122
+M011123
+M011124
+M011125
+M011129
+M011130
+M011131
+M011134
+M011135
+M011137
+M011138
+M011139
+M011140
+M011141
+M011142
+M011143
+M011145
+M011147
+M011148
+M011149
+M011150
+M011151
+M011152
+M011153
+M011154
+M011155
+M011156
+M011157
+M011159
+M011160
+M011161
+M011163
+M011164
+M011165
+M011166
+M011167
+M011168
+M011169
+M011170
+M011172
+M011173
+M011174
+M011175
+M011176
+M011177
+M011178
+M011179
+M011180
+M011182
+M011183
+M011185
+M011186
+M011187
+M011188
+M011190
+M011191
+M011192
+M011193
+M011194
+M011195
+M011196
+M011197
+M011198
+M011200
+M011201
+M011202
+M011203
+M011204
+M011205
+M011206
+M011208
+M011209
+M011212
+M011214
+M011217
+M011218
+M011219
+M011221
+M011225
+M011227
+M011228
+M011229
+M011230
+M011231
+M011232
+M011233
+M011234
+M011235
+M011236
+M011237
+M011238
+M011239
+M011240
+M011241
+M011242
+M011243
+M011244
+M011245
+M011246
+M011247
+M011248
+M011250
+M011251
+M011253
+M011254
+M011256
+M011258
+M011259
+M011260
+M011262
+M011263
+M011264
+M011265
+M011266
+M011267
+M011268
+M011269
+M011272
+M011273
+M011274
+M011275
+M011276
+M011277
+M011278
+M011279
+M011281
+M011282
+M011283
+M011285
+M011286
+M011287
+M011288
+M011290
+M011291
+M011292
+M011293
+M011294
+M011296
+M011298
+M011299
+M011300
+M011302
+M011303
+M011304
+M011305
+M011306
+M011308
+M011309
+M011311
+M011312
+M011313
+M011314
+M011315
+M011316
+M011318
+M011319
+M011320
+M011321
+M011322
+M011324
+M011325
+M011326
+M011327
+M011328
+M011329
+M011330
+M011331
+M011333
+M011335
+M011336
+M011337
+M011338
+M011341
+M011344
+M011345
+M011346
+M011347
+M011348
+M011349
+M011350
+M011352
+M011353
+M011354
+M011355
+M011357
+M011358
+M011360
+M011361
+M011362
+M011364
+M011365
+M011366
+M011367
+M011368
+M011369
+M011370
+M011371
+M011373
+M011374
+M011375
+M011376
+M011377
+M011380
+M011381
+M011382
+M011383
+M011386
+M011388
+M011389
+M011390
+M011391
+M011392
+M011393
+M011394
+M011395
+M011398
+M011399
+M011400
+M011401
+M011403
+M011404
+M011405
+M011407
+M011408
+M011409
+M011410
+M011411
+M011413
+M011414
+M011415
+M011416
+M011417
+M011418
+M011420
+M011421
+M011422
+M011423
+M011424
+M011425
+M011426
+M011427
+M011428
+M011429
+M011431
+M011432
+M011433
+M011434
+M011437
+M011439
+M011440
+M011443
+M011444
+M011445
+M011446
+M011448
+M011449
+M011450
+M011451
+M011452
+M011453
+M011454
+M011455
+M011456
+M011457
+M011459
+M011460
+M011461
+M011462
+M011464
+M011465
+M011466
+M011467
+M011468
+M011469
+M011470
+M011472
+M011473
+M011474
+M011475
+M011476
+M011478
+M011479
+M011480
+M011481
+M011482
+M011483
+M011485
+M011486
+M011487
+M011488
+M011489
+M011490
+M011492
+M011494
+M011495
+M011496
+M011497
+M011498
+M011499
+M011500
+M011501
+M011502
+M011503
+M011505
+M011506
+M011507
+M011508
+M011509
+M011510
+M011512
+M011513
+M011514
+M011515
+M011516
+M011517
+M011518
+M011519
+M011520
+M011521
+M011522
+M011523
+M011524
+M011525
+M011526
+M011527
+M011528
+M011529
+M011530
+M011531
+M011532
+M011533
+M011535
+M011537
+M011538
+M011539
+M011540
+M011541
+M011542
+M011544
+M011545
+M011546
+M011547
+M011548
+M011549
+M011551
+M011552
+M011553
+M011554
+M011556
+M011557
+M011559
+M011560
+M011562
+M011563
+M011564
+M011565
+M011568
+M011570
+M011571
+M011572
+M011574
+M011575
+M011578
+M011579
+M011580
+M011581
+M011582
+M011584
+M011585
+M011586
+M011587
+M011588
+M011591
+M011593
+M011596
+M011597
+M011598
+M011599
+M011600
+M011601
+M011602
+M011603
+M011604
+M011605
+M011606
+M011610
+M011612
+M011613
+M011614
+M011615
+M011616
+M011617
+M011618
+M011619
+M011620
+M011621
+M011623
+M011624
+M011625
+M011626
+M011627
+M011628
+M011631
+M011633
+M011634
+M011635
+M011636
+M011637
+M011638
+M011639
+M011642
+M011644
+M011646
+M011647
+M011648
+M011649
+M011650
+M011651
+M011654
+M011655
+M011656
+M011657
+M011658
+M011659
+M011660
+M011661
+M011662
+M011663
+M011664
+M011665
+M011666
+M011669
+M011671
+M011672
+M011674
+M011675
+M011676
+M011677
+M011678
+M011679
+M011680
+M011681
+M011685
+M011686
+M011688
+M011689
+M011690
+M011691
+M011692
+M011693
+M011695
+M011696
+M011697
+M011699
+M011700
+M011701
+M011702
+M011704
+M011705
+M011706
+M011707
+M011708
+M011709
+M011710
+M011711
+M011712
+M011713
+M011714
+M011715
+M011718
+M011719
+M011720
+M011721
+M011722
+M011723
+M011724
+M011725
+M011726
+M011727
+M011728
+M011729
+M011730
+M011733
+M011734
+M011735
+M011736
+M011737
+M011739
+M011740
+M011741
+M011742
+M011744
+M011745
+M011746
+M011747
+M011748
+M011749
+M011750
+M011752
+M011753
+M011756
+M011758
+M011759
+M011760
+M011761
+M011762
+M011763
+M011764
+M011765
+M011766
+M011768
+M011769
+M011770
+M011771
+M011772
+M011773
+M011774
+M011775
+M011776
+M011778
+M011779
+M011780
+M011781
+M011783
+M011784
+M011786
+M011787
+M011788
+M011789
+M011790
+M011791
+M011792
+M011794
+M011799
+M011800
+M011801
+M011802
+M011803
+M011804
+M011807
+M011808
+M011810
+M011814
+M011815
+M011816
+M011817
+M011819
+M011820
+M011822
+M011824
+M011826
+M011828
+M011829
+M011830
+M011831
+M011832
+M011835
+M011836
+M011837
+M011838
+M011839
+M011840
+M011842
+M011843
+M011844
+M011845
+M011846
+M011847
+M011848
+M011849
+M011850
+M011851
+M011852
+M011853
+M011854
+M011855
+M011856
+M011857
+M011858
+M011859
+M011860
+M011861
+M011862
+M011865
+M011866
+M011867
+M011868
+M011869
+M011870
+M011871
+M011872
+M011874
+M011875
+M011876
+M011877
+M011878
+M011879
+M011880
+M011881
+M011882
+M011883
+M011884
+M011885
+M011886
+M011887
+M011888
+M011889
+M011890
+M011891
+M011893
+M011894
+M011895
+M011896
+M011898
+M011899
+M011900
+M011901
+M011902
+M011903
+M011905
+M011908
+M011909
+M011912
+M011913
+M011914
+M011915
+M011916
+M011917
+M011918
+M011919
+M011920
+M011921
+M011922
+M011923
+M011924
+M011925
+M011927
+M011928
+M011929
+M011930
+M011931
+M011932
+M011933
+M011934
+M011936
+M011938
+M011939
+M011941
+M011942
+M011943
+M011944
+M011945
+M011946
+M011947
+M011948
+M011949
+M011950
+M011951
+M011952
+M011953
+M011954
+M011955
+M011957
+M011958
+M011959
+M011960
+M011961
+M011963
+M011964
+M011966
+M011967
+M011968
+M011969
+M011970
+M011971
+M011973
+M011974
+M011975
+M011976
+M011977
+M011979
+M011980
+M011981
+M011982
+M011983
+M011984
+M011986
+M011987
+M011989
+M011990
+M011992
+M011995
+M011996
+M011998
+M011999
+M012000
+M012002
+M012003
+M012004
+M012006
+M012007
+M012008
+M012009
+M012010
+M012011
+M012012
+M012013
+M012014
+M012015
+M012016
+M012017
+M012018
+M012019
+M012022
+M012024
+M012026
+M012027
+M012028
+M012029
+M012030
+M012031
+M012033
+M012034
+M012035
+M012036
+M012037
+M012038
+M012039
+M012040
+M012042
+M012043
+M012045
+M012047
+M012048
+M012050
+M012052
+M012053
+M012054
+M012055
+M012056
+M012057
+M012058
+M012061
+M012062
+M012063
+M012064
+M012066
+M012067
+M012068
+M012070
+M012071
+M012072
+M012073
+M012074
+M012075
+M012076
+M012077
+M012078
+M012079
+M012080
+M012081
+M012082
+M012083
+M012085
+M012086
+M012088
+M012089
+M012090
+M012091
+M012092
+M012093
+M012095
+M012096
+M012097
+M012100
+M012101
+M012102
+M012103
+M012104
+M012105
+M012106
+M012107
+M012108
+M012109
+M012110
+M012111
+M012112
+M012113
+M012114
+M012115
+M012116
+M012119
+M012120
+M012121
+M012122
+M012123
+M012124
+M012125
+M012126
+M012128
+M012129
+M012130
+M012131
+M012133
+M012134
+M012135
+M012137
+M012138
+M012139
+M012140
+M012141
+M012142
+M012144
+M012146
+M012147
+M012148
+M012149
+M012150
+M012151
+M012152
+M012154
+M012155
+M012156
+M012157
+M012159
+M012161
+M012162
+M012164
+M012166
+M012169
+M012170
+M012171
+M012172
+M012173
+M012174
+M012175
+M012176
+M012177
+M012178
+M012180
+M012181
+M012182
+M012183
+M012184
+M012185
+M012186
+M012190
+M012191
+M012192
+M012194
+M012196
+M012197
+M012198
+M012199
+M012201
+M012202
+M012203
+M012204
+M012205
+M012206
+M012207
+M012208
+M012209
+M012210
+M012211
+M012212
+M012213
+M012214
+M012216
+M012217
+M012218
+M012221
+M012223
+M012224
+M012226
+M012227
+M012228
+M012229
+M012230
+M012231
+M012232
+M012233
+M012234
+M012236
+M012237
+M012239
+M012241
+M012242
+M012243
+M012244
+M012245
+M012246
+M012247
+M012248
+M012249
+M012251
+M012252
+M012253
+M012254
+M012255
+M012256
+M012257
+M012258
+M012259
+M012260
+M012261
+M012262
+M012266
+M012268
+M012269
+M012270
+M012271
+M012272
+M012273
+M012274
+M012275
+M012276
+M012278
+M012279
+M012281
+M012283
+M012284
+M012285
+M012286
+M012287
+M012288
+M012289
+M012291
+M012292
+M012293
+M012294
+M012295
+M012297
+M012298
+M012301
+M012303
+M012304
+M012305
+M012307
+M012311
+M012312
+M012313
+M012314
+M012315
+M012316
+M012317
+M012318
+M012319
+M012322
+M012323
+M012325
+M012327
+M012328
+M012329
+M012331
+M012333
+M012334
+M012335
+M012336
+M012338
+M012339
+M012341
+M012342
+M012344
+M012345
+M012346
+M012348
+M012349
+M012350
+M012351
+M012352
+M012353
+M012354
+M012357
+M012358
+M012359
+M012360
+M012363
+M012364
+M012366
+M012367
+M012368
+M012369
+M012370
+M012372
+M012373
+M012374
+M012375
+M012377
+M012378
+M012379
+M012380
+M012381
+M012382
+M012383
+M012384
+M012386
+M012387
+M012389
+M012390
+M012391
+M012392
+M012394
+M012395
+M012396
+M012401
+M012402
+M012403
+M012404
+M012405
+M012406
+M012407
+M012408
+M012409
+M012410
+M012411
+M012412
+M012413
+M012415
+M012416
+M012417
+M012418
+M012419
+M012421
+M012422
+M012424
+M012425
+M012426
+M012427
+M012428
+M012430
+M012431
+M012432
+M012433
+M012435
+M012436
+M012438
+M012439
+M012440
+M012441
+M012442
+M012443
+M012444
+M012446
+M012447
+M012448
+M012449
+M012450
+M012451
+M012452
+M012453
+M012455
+M012456
+M012457
+M012458
+M012460
+M012461
+M012462
+M012463
+M012464
+M012465
+M012466
+M012467
+M012468
+M012469
+M012470
+M012472
+M012473
+M012475
+M012476
+M012479
+M012480
+M012481
+M012482
+M012483
+M012485
+M012486
+M012487
+M012489
+M012490
+M012493
+M012494
+M012496
+M012497
+M012499
+M012500
+M012501
+M012502
+M012503
+M012504
+M012505
+M012507
+M012509
+M012510
+M012511
+M012512
+M012513
+M012514
+M012516
+M012517
+M012518
+M012519
+M012520
+M012521
+M012522
+M012524
+M012525
+M012526
+M012528
+M012531
+M012532
+M012533
+M012534
+M012535
+M012536
+M012537
+M012538
+M012539
+M012540
+M012541
+M012542
+M012544
+M012545
+M012546
+M012547
+M012548
+M012549
+M012550
+M012551
+M012552
+M012553
+M012556
+M012557
+M012560
+M012562
+M012563
+M012564
+M012565
+M012566
+M012569
+M012570
+M012571
+M012572
+M012573
+M012574
+M012575
+M012576
+M012580
+M012581
+M012582
+M012583
+M012585
+M012586
+M012588
+M012589
+M012590
+M012591
+M012592
+M012593
+M012594
+M012596
+M012597
+M012598
+M012599
+M012600
+M012603
+M012604
+M012605
+M012606
+M012607
+M012608
+M012609
+M012610
+M012612
+M012613
+M012614
+M012617
+M012618
+M012619
+M012620
+M012621
+M012623
+M012624
+M012626
+M012627
+M012628
+M012629
+M012630
+M012631
+M012632
+M012634
+M012635
+M012636
+M012637
+M012638
+M012641
+M012642
+M012643
+M012646
+M012647
+M012648
+M012649
+M012650
+M012651
+M012652
+M012653
+M012654
+M012656
+M012658
+M012659
+M012660
+M012661
+M012662
+M012663
+M012664
+M012665
+M012666
+M012667
+M012669
+M012671
+M012672
+M012674
+M012676
+M012677
+M012678
+M012680
+M012681
+M012682
+M012683
+M012684
+M012685
+M012687
+M012688
+M012690
+M012692
+M012693
+M012694
+M012695
+M012697
+M012699
+M012700
+M012701
+M012702
+M012703
+M012704
+M012705
+M012706
+M012708
+M012709
+M012710
+M012711
+M012714
+M012715
+M012717
+M012719
+M012721
+M012722
+M012723
+M012724
+M012725
+M012726
+M012727
+M012728
+M012729
+M012730
+M012731
+M012732
+M012734
+M012736
+M012737
+M012738
+M012739
+M012740
+M012742
+M012743
+M012744
+M012745
+M012746
+M012747
+M012748
+M012749
+M012750
+M012751
+M012752
+M012754
+M012755
+M012756
+M012757
+M012758
+M012759
+M012760
+M012762
+M012763
+M012764
+M012765
+M012766
+M012767
+M012768
+M012769
+M012770
+M012771
+M012772
+M012773
+M012774
+M012775
+M012776
+M012777
+M012778
+M012779
+M012780
+M012781
+M012783
+M012784
+M012785
+M012786
+M012787
+M012788
+M012790
+M012792
+M012794
+M012796
+M012797
+M012800
+M012801
+M012802
+M012803
+M012804
+M012806
+M012809
+M012811
+M012812
+M012814
+M012815
+M012816
+M012817
+M012818
+M012819
+M012820
+M012821
+M012822
+M012823
+M012824
+M012825
+M012826
+M012827
+M012828
+M012829
+M012831
+M012832
+M012834
+M012835
+M012838
+M012839
+M012840
+M012841
+M012842
+M012843
+M012845
+M012846
+M012847
+M012848
+M012849
+M012850
+M012851
+M012852
+M012853
+M012854
+M012855
+M012858
+M012859
+M012860
+M012861
+M012862
+M012863
+M012864
+M012865
+M012866
+M012867
+M012868
+M012869
+M012871
+M012872
+M012873
+M012874
+M012875
+M012876
+M012878
+M012879
+M012880
+M012881
+M012882
+M012884
+M012885
+M012886
+M012887
+M012888
+M012889
+M012890
+M012893
+M012894
+M012895
+M012896
+M012897
+M012898
+M012899
+M012900
+M012902
+M012904
+M012906
+M012907
+M012908
+M012909
+M012910
+M012911
+M012912
+M012914
+M012915
+M012916
+M012917
+M012918
+M012919
+M012920
+M012921
+M012922
+M012923
+M012924
+M012926
+M012928
+M012929
+M012931
+M012932
+M012933
+M012934
+M012935
+M012936
+M012937
+M012938
+M012939
+M012943
+M012944
+M012945
+M012947
+M012948
+M012950
+M012952
+M012953
+M012954
+M012955
+M012957
+M012958
+M012959
+M012960
+M012961
+M012963
+M012964
+M012965
+M012966
+M012967
+M012970
+M012971
+M012972
+M012973
+M012974
+M012975
+M012976
+M012977
+M012978
+M012979
+M012980
+M012982
+M012983
+M012984
+M012986
+M012987
+M012988
+M012989
+M012990
+M012991
+M012994
+M012995
+M012996
+M012997
+M012999
+M013001
+M013002
+M013005
+M013006
+M013008
+M013009
+M013011
+M013012
+M013014
+M013016
+M013017
+M013018
+M013019
+M013020
+M013021
+M013024
+M013025
+M013026
+M013027
+M013028
+M013029
+M013030
+M013032
+M013033
+M013034
+M013035
+M013036
+M013037
+M013038
+M013039
+M013040
+M013042
+M013043
+M013044
+M013045
+M013047
+M013048
+M013049
+M013051
+M013052
+M013053
+M013054
+M013055
+M013058
+M013059
+M013061
+M013062
+M013063
+M013064
+M013065
+M013066
+M013067
+M013069
+M013070
+M013072
+M013073
+M013077
+M013078
+M013079
+M013080
+M013081
+M013082
+M013083
+M013084
+M013085
+M013086
+M013089
+M013090
+M013091
+M013092
+M013094
+M013095
+M013096
+M013097
+M013098
+M013099
+M013100
+M013102
+M013103
+M013104
+M013105
+M013106
+M013107
+M013108
+M013109
+M013110
+M013111
+M013113
+M013114
+M013115
+M013116
+M013117
+M013118
+M013119
+M013120
+M013121
+M013123
+M013124
+M013126
+M013127
+M013128
+M013129
+M013131
+M013132
+M013133
+M013134
+M013135
+M013137
+M013138
+M013139
+M013140
+M013141
+M013142
+M013144
+M013145
+M013146
+M013147
+M013148
+M013149
+M013150
+M013151
+M013152
+M013153
+M013155
+M013156
+M013158
+M013159
+M013161
+M013162
+M013163
+M013165
+M013166
+M013167
+M013168
+M013169
+M013170
+M013172
+M013173
+M013176
+M013177
+M013178
+M013179
+M013180
+M013181
+M013183
+M013184
+M013185
+M013186
+M013187
+M013188
+M013189
+M013191
+M013192
+M013193
+M013194
+M013195
+M013196
+M013197
+M013198
+M013199
+M013200
+M013201
+M013202
+M013203
+M013204
+M013205
+M013206
+M013209
+M013210
+M013211
+M013213
+M013214
+M013215
+M013216
+M013217
+M013218
+M013219
+M013220
+M013223
+M013225
+M013226
+M013227
+M013228
+M013229
+M013230
+M013231
+M013232
+M013233
+M013234
+M013235
+M013236
+M013237
+M013238
+M013239
+M013240
+M013241
+M013242
+M013243
+M013245
+M013246
+M013247
+M013248
+M013250
+M013251
+M013252
+M013254
+M013256
+M013257
+M013258
+M013259
+M013261
+M013263
+M013265
+M013266
+M013267
+M013268
+M013269
+M013270
+M013271
+M013272
+M013273
+M013274
+M013275
+M013276
+M013277
+M013279
+M013280
+M013281
+M013282
+M013283
+M013284
+M013285
+M013288
+M013290
+M013291
+M013292
+M013293
+M013295
+M013296
+M013297
+M013298
+M013299
+M013300
+M013301
+M013302
+M013303
+M013304
+M013306
+M013307
+M013308
+M013309
+M013310
+M013311
+M013312
+M013313
+M013319
+M013321
+M013322
+M013323
+M013324
+M013325
+M013326
+M013327
+M013328
+M013329
+M013330
+M013331
+M013332
+M013333
+M013334
+M013335
+M013337
+M013338
+M013340
+M013341
+M013342
+M013345
+M013346
+M013347
+M013348
+M013349
+M013351
+M013353
+M013354
+M013355
+M013356
+M013357
+M013359
+M013360
+M013361
+M013362
+M013364
+M013365
+M013366
+M013367
+M013368
+M013369
+M013370
+M013372
+M013374
+M013375
+M013376
+M013377
+M013378
+M013379
+M013380
+M013381
+M013383
+M013384
+M013385
+M013386
+M013387
+M013390
+M013391
+M013392
+M013393
+M013394
+M013395
+M013398
+M013399
+M013400
+M013401
+M013402
+M013405
+M013406
+M013407
+M013408
+M013409
+M013410
+M013412
+M013413
+M013414
+M013416
+M013418
+M013421
+M013422
+M013424
+M013425
+M013427
+M013428
+M013429
+M013430
+M013432
+M013433
+M013434
+M013436
+M013437
+M013438
+M013439
+M013441
+M013442
+M013443
+M013445
+M013446
+M013447
+M013448
+M013450
+M013452
+M013453
+M013455
+M013456
+M013457
+M013458
+M013459
+M013460
+M013461
+M013462
+M013463
+M013464
+M013465
+M013466
+M013470
+M013472
+M013473
+M013477
+M013478
+M013479
+M013480
+M013481
+M013482
+M013483
+M013484
+M013486
+M013487
+M013488
+M013489
+M013490
+M013491
+M013492
+M013493
+M013494
+M013495
+M013496
+M013497
+M013498
+M013499
+M013500
+M013501
+M013502
+M013503
+M013504
+M013505
+M013506
+M013507
+M013508
+M013509
+M013510
+M013513
+M013515
+M013516
+M013517
+M013518
+M013520
+M013521
+M013522
+M013523
+M013524
+M013525
+M013526
+M013527
+M013528
+M013530
+M013531
+M013532
+M013533
+M013534
+M013535
+M013536
+M013537
+M013538
+M013539
+M013540
+M013541
+M013542
+M013544
+M013545
+M013547
+M013548
+M013550
+M013551
+M013552
+M013553
+M013554
+M013555
+M013556
+M013557
+M013559
+M013560
+M013563
+M013564
+M013565
+M013566
+M013569
+M013570
+M013571
+M013572
+M013574
+M013575
+M013576
+M013577
+M013578
+M013580
+M013581
+M013582
+M013583
+M013584
+M013585
+M013588
+M013589
+M013590
+M013591
+M013593
+M013594
+M013595
+M013596
+M013598
+M013599
+M013600
+M013603
+M013604
+M013606
+M013607
+M013609
+M013611
+M013612
+M013613
+M013614
+M013615
+M013616
+M013617
+M013618
+M013620
+M013621
+M013622
+M013623
+M013624
+M013625
+M013626
+M013627
+M013628
+M013629
+M013630
+M013631
+M013635
+M013637
+M013639
+M013640
+M013642
+M013643
+M013644
+M013649
+M013650
+M013651
+M013653
+M013655
+M013656
+M013657
+M013658
+M013659
+M013660
+M013661
+M013662
+M013663
+M013664
+M013666
+M013667
+M013669
+M013670
+M013672
+M013673
+M013674
+M013676
+M013677
+M013678
+M013679
+M013680
+M013681
+M013683
+M013684
+M013685
+M013686
+M013687
+M013688
+M013690
+M013691
+M013692
+M013693
+M013694
+M013696
+M013697
+M013698
+M013699
+M013701
+M013702
+M013704
+M013705
+M013706
+M013707
+M013708
+M013709
+M013711
+M013712
+M013713
+M013714
+M013715
+M013716
+M013717
+M013718
+M013720
+M013721
+M013722
+M013723
+M013724
+M013725
+M013726
+M013727
+M013729
+M013730
+M013731
+M013732
+M013733
+M013734
+M013737
+M013738
+M013739
+M013740
+M013741
+M013742
+M013743
+M013744
+M013746
+M013748
+M013749
+M013750
+M013751
+M013752
+M013755
+M013756
+M013758
+M013759
+M013760
+M013762
+M013764
+M013767
+M013769
+M013770
+M013771
+M013772
+M013773
+M013774
+M013775
+M013776
+M013779
+M013781
+M013782
+M013783
+M013784
+M013785
+M013786
+M013787
+M013788
+M013789
+M013790
+M013791
+M013792
+M013793
+M013794
+M013795
+M013797
+M013799
+M013800
+M013801
+M013802
+M013805
+M013807
+M013808
+M013809
+M013813
+M013814
+M013815
+M013816
+M013817
+M013818
+M013819
+M013820
+M013821
+M013822
+M013824
+M013825
+M013826
+M013827
+M013828
+M013829
+M013830
+M013831
+M013832
+M013834
+M013835
+M013836
+M013837
+M013838
+M013839
+M013840
+M013841
+M013842
+M013843
+M013844
+M013845
+M013847
+M013848
+M013850
+M013851
+M013852
+M013853
+M013854
+M013856
+M013857
+M013858
+M013859
+M013860
+M013861
+M013862
+M013863
+M013864
+M013865
+M013866
+M013867
+M013868
+M013869
+M013870
+M013872
+M013873
+M013875
+M013876
+M013877
+M013878
+M013881
+M013882
+M013883
+M013884
+M013885
+M013886
+M013887
+M013888
+M013889
+M013890
+M013891
+M013892
+M013893
+M013894
+M013895
+M013896
+M013897
+M013899
+M013900
+M013901
+M013902
+M013903
+M013904
+M013906
+M013907
+M013908
+M013909
+M013912
+M013913
+M013914
+M013915
+M013916
+M013917
+M013918
+M013919
+M013920
+M013921
+M013922
+M013923
+M013924
+M013925
+M013928
+M013930
+M013931
+M013932
+M013933
+M013934
+M013935
+M013936
+M013938
+M013939
+M013940
+M013941
+M013942
+M013943
+M013944
+M013945
+M013946
+M013947
+M013948
+M013950
+M013951
+M013953
+M013954
+M013956
+M013957
+M013958
+M013959
+M013960
+M013961
+M013962
+M013964
+M013965
+M013966
+M013967
+M013968
+M013970
+M013971
+M013972
+M013973
+M013975
+M013976
+M013977
+M013979
+M013982
+M013983
+M013984
+M013985
+M013986
+M013987
+M013988
+M013989
+M013990
+M013991
+M013992
+M013993
+M013994
+M013995
+M013996
+M013997
+M013999
+M014000
+M014001
+M014003
+M014004
+M014005
+M014006
+M014008
+M014009
+M014011
+M014013
+M014014
+M014015
+M014016
+M014017
+M014018
+M014019
+M014022
+M014023
+M014024
+M014026
+M014027
+M014028
+M014029
+M014031
+M014032
+M014033
+M014034
+M014035
+M014036
+M014037
+M014038
+M014040
+M014041
+M014042
+M014044
+M014045
+M014048
+M014050
+M014052
+M014053
+M014054
+M014055
+M014056
+M014057
+M014058
+M014059
+M014060
+M014061
+M014062
+M014063
+M014064
+M014065
+M014066
+M014067
+M014068
+M014069
+M014070
+M014071
+M014073
+M014074
+M014075
+M014076
+M014079
+M014080
+M014081
+M014082
+M014083
+M014084
+M014085
+M014086
+M014089
+M014090
+M014091
+M014092
+M014094
+M014095
+M014096
+M014097
+M014098
+M014099
+M014100
+M014101
+M014102
+M014103
+M014104
+M014105
+M014106
+M014107
+M014111
+M014113
+M014114
+M014115
+M014116
+M014117
+M014118
+M014121
+M014122
+M014124
+M014125
+M014126
+M014127
+M014128
+M014129
+M014130
+M014131
+M014132
+M014133
+M014134
+M014135
+M014136
+M014137
+M014138
+M014140
+M014141
+M014142
+M014143
+M014144
+M014145
+M014147
+M014148
+M014149
+M014150
+M014151
+M014152
+M014153
+M014154
+M014155
+M014156
+M014157
+M014158
+M014159
+M014161
+M014162
+M014163
+M014164
+M014165
+M014166
+M014167
+M014168
+M014170
+M014172
+M014173
+M014174
+M014175
+M014176
+M014177
+M014178
+M014179
+M014180
+M014181
+M014182
+M014183
+M014184
+M014186
+M014187
+M014188
+M014189
+M014190
+M014191
+M014193
+M014196
+M014197
+M014198
+M014199
+M014201
+M014202
+M014203
+M014204
+M014206
+M014207
+M014208
+M014209
+M014210
+M014211
+M014212
+M014213
+M014216
+M014217
+M014218
+M014219
+M014220
+M014221
+M014223
+M014224
+M014225
+M014226
+M014227
+M014228
+M014229
+M014230
+M014231
+M014233
+M014235
+M014236
+M014237
+M014238
+M014239
+M014240
+M014241
+M014242
+M014243
+M014246
+M014248
+M014249
+M014250
+M014251
+M014254
+M014255
+M014256
+M014257
+M014258
+M014259
+M014260
+M014261
+M014262
+M014263
+M014264
+M014265
+M014266
+M014267
+M014269
+M014270
+M014271
+M014274
+M014275
+M014276
+M014277
+M014278
+M014281
+M014282
+M014284
+M014286
+M014287
+M014288
+M014289
+M014291
+M014292
+M014293
+M014294
+M014296
+M014297
+M014298
+M014299
+M014300
+M014301
+M014302
+M014303
+M014306
+M014308
+M014309
+M014314
+M014315
+M014316
+M014317
+M014319
+M014320
+M014321
+M014322
+M014323
+M014324
+M014325
+M014327
+M014328
+M014329
+M014331
+M014332
+M014333
+M014334
+M014335
+M014337
+M014338
+M014339
+M014340
+M014341
+M014343
+M014344
+M014345
+M014346
+M014348
+M014349
+M014350
+M014353
+M014354
+M014355
+M014356
+M014357
+M014358
+M014359
+M014360
+M014363
+M014364
+M014365
+M014366
+M014367
+M014368
+M014369
+M014370
+M014371
+M014372
+M014373
+M014374
+M014375
+M014376
+M014377
+M014378
+M014379
+M014381
+M014382
+M014383
+M014385
+M014386
+M014388
+M014390
+M014391
+M014393
+M014394
+M014396
+M014397
+M014398
+M014399
+M014400
+M014401
+M014402
+M014403
+M014404
+M014405
+M014406
+M014407
+M014408
+M014409
+M014410
+M014411
+M014412
+M014413
+M014414
+M014415
+M014417
+M014418
+M014419
+M014421
+M014423
+M014424
+M014425
+M014427
+M014429
+M014430
+M014433
+M014435
+M014438
+M014439
+M014440
+M014441
+M014442
+M014443
+M014446
+M014447
+M014449
+M014450
+M014451
+M014452
+M014453
+M014454
+M014455
+M014456
+M014458
+M014459
+M014460
+M014461
+M014462
+M014463
+M014464
+M014465
+M014466
+M014467
+M014468
+M014469
+M014470
+M014471
+M014473
+M014474
+M014475
+M014476
+M014478
+M014479
+M014480
+M014481
+M014482
+M014483
+M014484
+M014485
+M014486
+M014487
+M014488
+M014489
+M014490
+M014491
+M014492
+M014493
+M014494
+M014495
+M014497
+M014498
+M014500
+M014501
+M014502
+M014503
+M014504
+M014505
+M014507
+M014508
+M014509
+M014510
+M014511
+M014513
+M014514
+M014515
+M014516
+M014517
+M014518
+M014519
+M014520
+M014521
+M014523
+M014524
+M014525
+M014526
+M014527
+M014528
+M014530
+M014531
+M014532
+M014533
+M014534
+M014537
+M014538
+M014539
+M014540
+M014542
+M014543
+M014544
+M014545
+M014546
+M014547
+M014548
+M014549
+M014550
+M014551
+M014552
+M014553
+M014555
+M014556
+M014558
+M014559
+M014561
+M014563
+M014564
+M014566
+M014567
+M014569
+M014570
+M014571
+M014572
+M014573
+M014575
+M014576
+M014577
+M014578
+M014580
+M014581
+M014582
+M014583
+M014584
+M014585
+M014586
+M014587
+M014589
+M014590
+M014591
+M014592
+M014593
+M014594
+M014595
+M014596
+M014597
+M014598
+M014599
+M014600
+M014601
+M014602
+M014605
+M014606
+M014608
+M014609
+M014610
+M014611
+M014614
+M014615
diff --git a/humanml3d_272/split/val.txt b/humanml3d_272/split/val.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d35324d36b762a3113bd0cebc5364f63dd3f2f15
--- /dev/null
+++ b/humanml3d_272/split/val.txt
@@ -0,0 +1,1338 @@
+012698
+012808
+013022
+003172
+008859
+005095
+012044
+002345
+006393
+006353
+008496
+006516
+011782
+001798
+001426
+006016
+005876
+006834
+004792
+013926
+003470
+005441
+000510
+005109
+004152
+012332
+012136
+013212
+001297
+003229
+003621
+012065
+008433
+006230
+010018
+001742
+004469
+007558
+000783
+011622
+012188
+009055
+014273
+008539
+009750
+013260
+000645
+014290
+014112
+008576
+007297
+011751
+010162
+006504
+013804
+008734
+012225
+004974
+004616
+001995
+000966
+001077
+009058
+001305
+007062
+005895
+011577
+007751
+005336
+004513
+014313
+010464
+008758
+005487
+002590
+007627
+011576
+001401
+012187
+004149
+002797
+010360
+013529
+000139
+002566
+011667
+002359
+002735
+000264
+004809
+013682
+003495
+002102
+010000
+003602
+007589
+000807
+010565
+007535
+006807
+000211
+003946
+006150
+000751
+009933
+009230
+004371
+004582
+011821
+007452
+007599
+013015
+002558
+004972
+004786
+005574
+010921
+009352
+012696
+012477
+010711
+006595
+006634
+012615
+001627
+013431
+007635
+009125
+011249
+010978
+011396
+012795
+007263
+010601
+000859
+004489
+003036
+005816
+011199
+008506
+008199
+010308
+000550
+010275
+004387
+004363
+010401
+010378
+013262
+004420
+014426
+012951
+014047
+003756
+006142
+014568
+008454
+007691
+012810
+011021
+002891
+004308
+006848
+000730
+011592
+000814
+004924
+011220
+002636
+014146
+007654
+012051
+005361
+004911
+013010
+013136
+012946
+009102
+001212
+012807
+009751
+012962
+003113
+011910
+006974
+002401
+013645
+011036
+011271
+011171
+006982
+003649
+009103
+000424
+005973
+004861
+008617
+001836
+000024
+005462
+001653
+009043
+006766
+013710
+009516
+008973
+003391
+005702
+007660
+014078
+011270
+006169
+005309
+010699
+010405
+000387
+011962
+013397
+003315
+008995
+014362
+008817
+010729
+013076
+005874
+003293
+002130
+011216
+007440
+012429
+008749
+012420
+008761
+002047
+013013
+008504
+014312
+001771
+011670
+002107
+010713
+011940
+002998
+004801
+014562
+006330
+010016
+010057
+011994
+004731
+011956
+007034
+004294
+004858
+001666
+002839
+003511
+003898
+009088
+012478
+001539
+005871
+005358
+008895
+002267
+006574
+011132
+004304
+005770
+012949
+003741
+011754
+006975
+002800
+003744
+007136
+005809
+003118
+002137
+002147
+005549
+004657
+007645
+002974
+010458
+012901
+004266
+013287
+000646
+009008
+008331
+014120
+007324
+013763
+005523
+001130
+003334
+013435
+006588
+003360
+001197
+005675
+011008
+007960
+004133
+006170
+007758
+007353
+009479
+014245
+004494
+005742
+012165
+009225
+001735
+007014
+000917
+005264
+011590
+005467
+002059
+010753
+007264
+010390
+004427
+007849
+001178
+005961
+008657
+000630
+011543
+002952
+000228
+002679
+002764
+002475
+003710
+010236
+009726
+002273
+005597
+004887
+011641
+009608
+002867
+001634
+008395
+006463
+005648
+013880
+008984
+009537
+000626
+012434
+005647
+011738
+003300
+003250
+009863
+013803
+008683
+009541
+000731
+003410
+007429
+014560
+012347
+012712
+013244
+014330
+002670
+013171
+012998
+012844
+008029
+011384
+011032
+000832
+000605
+007577
+010635
+010976
+001637
+013780
+005663
+010052
+011698
+008121
+012830
+006394
+003773
+005969
+006846
+005571
+006181
+010131
+003466
+013592
+003517
+000272
+005248
+004078
+012530
+008451
+008906
+008630
+008748
+001421
+008470
+009049
+009450
+006149
+001191
+009543
+011128
+012220
+005041
+006086
+008807
+000897
+010756
+001443
+011089
+012471
+011833
+001021
+012633
+010901
+003967
+001048
+013874
+009425
+000134
+004750
+002105
+005186
+009052
+006221
+005054
+012640
+012296
+003459
+001002
+004845
+014030
+012940
+010479
+002185
+013823
+011609
+014529
+000881
+004329
+005176
+011818
+004130
+000949
+000900
+012891
+010029
+012707
+003074
+005873
+005359
+010835
+014437
+011310
+002301
+012718
+006542
+004358
+012508
+009433
+011796
+009955
+002589
+013605
+013420
+013305
+001479
+001816
+000515
+005850
+004784
+012969
+000454
+010587
+002326
+000489
+010381
+013485
+003488
+008701
+010946
+014422
+009316
+012059
+013093
+005846
+003884
+007709
+011301
+010023
+011022
+011926
+006079
+002537
+004581
+013796
+004986
+007438
+002686
+007481
+000124
+001433
+013264
+013363
+001918
+006064
+000956
+010647
+010902
+002646
+005612
+014119
+004631
+011084
+002237
+011511
+005212
+010238
+012836
+008475
+006012
+000557
+009894
+003608
+009844
+003006
+014579
+006024
+005275
+007000
+010182
+004661
+004287
+007492
+011873
+013910
+005317
+007821
+012733
+003722
+013041
+013879
+006222
+003776
+000932
+000016
+005310
+007189
+013060
+006561
+007169
+012299
+010245
+000317
+011133
+012913
+000516
+003839
+014434
+005942
+012263
+002923
+011795
+001375
+002011
+004682
+003004
+000346
+007025
+009357
+002883
+003759
+007867
+013074
+012265
+003892
+005415
+010731
+000767
+013143
+000776
+006589
+010960
+006286
+009113
+010174
+013671
+005341
+014432
+009270
+009370
+009421
+001522
+008511
+004330
+007791
+009207
+010082
+006411
+006109
+007587
+013519
+009535
+007522
+006972
+009165
+012857
+014280
+002728
+007369
+007480
+006225
+006098
+000838
+010213
+011436
+007770
+011611
+013396
+009298
+005543
+003106
+001965
+007850
+010852
+013937
+012163
+005694
+008166
+009606
+005454
+005144
+010165
+000433
+001219
+011378
+011297
+001871
+005235
+001829
+000133
+006883
+013101
+012153
+003979
+008982
+008526
+011703
+005573
+003464
+001945
+011911
+011018
+003066
+000039
+000382
+M012698
+M012808
+M013022
+M003172
+M008859
+M005095
+M012044
+M002345
+M006393
+M006353
+M008496
+M006516
+M011782
+M001798
+M001426
+M006016
+M005876
+M006834
+M004792
+M013926
+M003470
+M005441
+M000510
+M005109
+M004152
+M012332
+M012136
+M013212
+M001297
+M003229
+M003621
+M012065
+M008433
+M006230
+M010018
+M001742
+M004469
+M007558
+M000783
+M011622
+M012188
+M009055
+M014273
+M008539
+M009750
+M013260
+M000645
+M014290
+M014112
+M008576
+M007297
+M011751
+M010162
+M006504
+M013804
+M008734
+M012225
+M004974
+M004616
+M001995
+M000966
+M001077
+M009058
+M001305
+M007062
+M005895
+M011577
+M007751
+M005336
+M004513
+M014313
+M010464
+M008758
+M005487
+M002590
+M007627
+M011576
+M001401
+M012187
+M004149
+M002797
+M010360
+M013529
+M000139
+M002566
+M011667
+M002359
+M002735
+M000264
+M004809
+M013682
+M003495
+M002102
+M010000
+M003602
+M007589
+M000807
+M010565
+M007535
+M006807
+M000211
+M003946
+M006150
+M000751
+M009933
+M009230
+M004371
+M004582
+M011821
+M007452
+M007599
+M013015
+M002558
+M004972
+M004786
+M005574
+M010921
+M009352
+M012696
+M012477
+M010711
+M006595
+M006634
+M012615
+M001627
+M013431
+M007635
+M009125
+M011249
+M010978
+M011396
+M012795
+M007263
+M010601
+M000859
+M004489
+M003036
+M005816
+M011199
+M008506
+M008199
+M010308
+M000550
+M010275
+M004387
+M004363
+M010401
+M010378
+M013262
+M004420
+M014426
+M012951
+M014047
+M003756
+M006142
+M014568
+M008454
+M007691
+M012810
+M011021
+M002891
+M004308
+M006848
+M000730
+M011592
+M000814
+M004924
+M011220
+M002636
+M014146
+M007654
+M012051
+M005361
+M004911
+M013010
+M013136
+M012946
+M009102
+M001212
+M012807
+M009751
+M012962
+M003113
+M011910
+M006974
+M002401
+M013645
+M011036
+M011271
+M011171
+M006982
+M003649
+M009103
+M000424
+M005973
+M004861
+M008617
+M001836
+M000024
+M005462
+M001653
+M009043
+M006766
+M013710
+M009516
+M008973
+M003391
+M005702
+M007660
+M014078
+M011270
+M006169
+M005309
+M010699
+M010405
+M000387
+M011962
+M013397
+M003315
+M008995
+M014362
+M008817
+M010729
+M013076
+M005874
+M003293
+M002130
+M011216
+M007440
+M012429
+M008749
+M012420
+M008761
+M002047
+M013013
+M008504
+M014312
+M001771
+M011670
+M002107
+M010713
+M011940
+M002998
+M004801
+M014562
+M006330
+M010016
+M010057
+M011994
+M004731
+M011956
+M007034
+M004294
+M004858
+M001666
+M002839
+M003511
+M003898
+M009088
+M012478
+M001539
+M005871
+M005358
+M008895
+M002267
+M006574
+M011132
+M004304
+M005770
+M012949
+M003741
+M011754
+M006975
+M002800
+M003744
+M007136
+M005809
+M003118
+M002137
+M002147
+M005549
+M004657
+M007645
+M002974
+M010458
+M012901
+M004266
+M013287
+M000646
+M009008
+M008331
+M014120
+M007324
+M013763
+M005523
+M001130
+M003334
+M013435
+M006588
+M003360
+M001197
+M005675
+M011008
+M007960
+M004133
+M006170
+M007758
+M007353
+M009479
+M014245
+M004494
+M005742
+M012165
+M009225
+M001735
+M007014
+M000917
+M005264
+M011590
+M005467
+M002059
+M010753
+M007264
+M010390
+M004427
+M007849
+M001178
+M005961
+M008657
+M000630
+M011543
+M002952
+M000228
+M002679
+M002764
+M002475
+M003710
+M010236
+M009726
+M002273
+M005597
+M004887
+M011641
+M009608
+M002867
+M001634
+M008395
+M006463
+M005648
+M013880
+M008984
+M009537
+M000626
+M012434
+M005647
+M011738
+M003300
+M003250
+M009863
+M013803
+M008683
+M009541
+M000731
+M003410
+M007429
+M014560
+M012347
+M012712
+M013244
+M014330
+M002670
+M013171
+M012998
+M012844
+M008029
+M011384
+M011032
+M000832
+M000605
+M007577
+M010635
+M010976
+M001637
+M013780
+M005663
+M010052
+M011698
+M008121
+M012830
+M006394
+M003773
+M005969
+M006846
+M005571
+M006181
+M010131
+M003466
+M013592
+M003517
+M000272
+M005248
+M004078
+M012530
+M008451
+M008906
+M008630
+M008748
+M001421
+M008470
+M009049
+M009450
+M006149
+M001191
+M009543
+M011128
+M012220
+M005041
+M006086
+M008807
+M000897
+M010756
+M001443
+M011089
+M012471
+M011833
+M001021
+M012633
+M010901
+M003967
+M001048
+M013874
+M009425
+M000134
+M004750
+M002105
+M005186
+M009052
+M006221
+M005054
+M012640
+M012296
+M003459
+M001002
+M004845
+M014030
+M012940
+M010479
+M002185
+M013823
+M011609
+M014529
+M000881
+M004329
+M005176
+M011818
+M004130
+M000949
+M000900
+M012891
+M010029
+M012707
+M003074
+M005873
+M005359
+M010835
+M014437
+M011310
+M002301
+M012718
+M006542
+M004358
+M012508
+M009433
+M011796
+M009955
+M002589
+M013605
+M013420
+M013305
+M001479
+M001816
+M000515
+M005850
+M004784
+M012969
+M000454
+M010587
+M002326
+M000489
+M010381
+M013485
+M003488
+M008701
+M010946
+M014422
+M009316
+M012059
+M013093
+M005846
+M003884
+M007709
+M011301
+M010023
+M011022
+M011926
+M006079
+M002537
+M004581
+M013796
+M004986
+M007438
+M002686
+M007481
+M000124
+M001433
+M013264
+M013363
+M001918
+M006064
+M000956
+M010647
+M010902
+M002646
+M005612
+M014119
+M004631
+M011084
+M002237
+M011511
+M005212
+M010238
+M012836
+M008475
+M006012
+M000557
+M009894
+M003608
+M009844
+M003006
+M014579
+M006024
+M005275
+M007000
+M010182
+M004661
+M004287
+M007492
+M011873
+M013910
+M005317
+M007821
+M012733
+M003722
+M013041
+M013879
+M006222
+M003776
+M000932
+M000016
+M005310
+M007189
+M013060
+M006561
+M007169
+M012299
+M010245
+M000317
+M011133
+M012913
+M000516
+M003839
+M014434
+M005942
+M012263
+M002923
+M011795
+M001375
+M002011
+M004682
+M003004
+M000346
+M007025
+M009357
+M002883
+M003759
+M007867
+M013074
+M012265
+M003892
+M005415
+M010731
+M000767
+M013143
+M000776
+M006589
+M010960
+M006286
+M009113
+M010174
+M013671
+M005341
+M014432
+M009270
+M009370
+M009421
+M001522
+M008511
+M004330
+M007791
+M009207
+M010082
+M006411
+M006109
+M007587
+M013519
+M009535
+M007522
+M006972
+M009165
+M012857
+M014280
+M002728
+M007369
+M007480
+M006225
+M006098
+M000838
+M010213
+M011436
+M007770
+M011611
+M013396
+M009298
+M005543
+M003106
+M001965
+M007850
+M010852
+M013937
+M012163
+M005694
+M008166
+M009606
+M005454
+M005144
+M010165
+M000433
+M001219
+M011378
+M011297
+M001871
+M005235
+M001829
+M000133
+M006883
+M013101
+M012153
+M003979
+M008982
+M008526
+M011703
+M005573
+M003464
+M001945
+M011911
+M011018
+M003066
+M000039
+M000382
\ No newline at end of file
diff --git a/humanml3d_272/texts.zip b/humanml3d_272/texts.zip
new file mode 100644
index 0000000000000000000000000000000000000000..3e255da87f5c88d1c8b09a6a2ff7f2347ba0c0c7
--- /dev/null
+++ b/humanml3d_272/texts.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f571593d39c305ed7df5836f052253159242a8e215f12cbf32b61fc9dd29b827
+size 12180150
diff --git a/models/__pycache__/causal_cnn.cpython-39.pyc b/models/__pycache__/causal_cnn.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f6c79b7f74b81620f2d01971b74b34d4019ee8b6
Binary files /dev/null and b/models/__pycache__/causal_cnn.cpython-39.pyc differ
diff --git a/models/__pycache__/diffloss.cpython-39.pyc b/models/__pycache__/diffloss.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..203cc7bf0e7a25c078ed08ff6aab102e2cd18971
Binary files /dev/null and b/models/__pycache__/diffloss.cpython-39.pyc differ
diff --git a/models/__pycache__/llama_model.cpython-39.pyc b/models/__pycache__/llama_model.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..eb568cd495ed623cdf07af1c5fb997ea66fd97c3
Binary files /dev/null and b/models/__pycache__/llama_model.cpython-39.pyc differ
diff --git a/models/__pycache__/resnet.cpython-39.pyc b/models/__pycache__/resnet.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b110ada46d21bded1463ffa6c17ce35b361427bc
Binary files /dev/null and b/models/__pycache__/resnet.cpython-39.pyc differ
diff --git a/models/__pycache__/tae.cpython-39.pyc b/models/__pycache__/tae.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ef525b796e20758528cf90818bc2c2a6de8452d2
Binary files /dev/null and b/models/__pycache__/tae.cpython-39.pyc differ
diff --git a/models/causal_cnn.py b/models/causal_cnn.py
new file mode 100644
index 0000000000000000000000000000000000000000..64e4a374016be505d84c25fe4d654004e64576ba
--- /dev/null
+++ b/models/causal_cnn.py
@@ -0,0 +1,108 @@
+import torch
+import torch.nn as nn
+from models.resnet import CausalResnet1D
+
+
+class CausalConv1d(nn.Module):
+ def __init__(self, in_channels, out_channels, kernel_size, stride=1, dilation=1):
+ super(CausalConv1d, self).__init__()
+ self.pad = (kernel_size - 1) * dilation + (1 - stride)
+ self.conv = nn.Conv1d(
+ in_channels,
+ out_channels,
+ kernel_size,
+ stride=stride,
+ padding=0, # no padding here
+ dilation=dilation
+ )
+
+ def forward(self, x):
+ x = nn.functional.pad(x, (self.pad, 0)) # only pad on the left
+ return self.conv(x)
+
+
+class CausalEncoder(nn.Module):
+ def __init__(self,
+ input_emb_width = 272,
+ hidden_size = 1024,
+ down_t = 2,
+ stride_t = 2,
+ width = 1024,
+ depth = 3,
+ dilation_growth_rate = 3,
+ activation='relu',
+ norm=None,
+ latent_dim=16,
+ clip_range = []
+ ):
+ super().__init__()
+ self.clip_range = clip_range
+ self.proj = nn.Linear(width, latent_dim*2)
+
+ blocks = []
+ filter_t, pad_t = stride_t * 2, stride_t // 2
+
+
+ blocks.append(CausalConv1d(input_emb_width, width, 3, 1, 1))
+ blocks.append(nn.ReLU())
+
+ for i in range(down_t):
+ input_dim = width
+ block = nn.Sequential(
+ CausalConv1d(input_dim, width, filter_t, stride_t, 1),
+ CausalResnet1D(width, depth, dilation_growth_rate, activation=activation, norm=norm),
+ )
+ blocks.append(block)
+ blocks.append(CausalConv1d(width, hidden_size, 3, 1, 1))
+ self.model = nn.Sequential(*blocks)
+
+ def reparameterize(self, mu, logvar):
+ std = torch.exp(0.5 * logvar)
+ eps = torch.randn_like(std)
+ return mu + eps * std
+
+ def forward(self, x):
+ x = self.model(x)
+ x = x.transpose(1, 2)
+ x = self.proj(x)
+ mu, logvar = x.chunk(2, dim=2)
+ logvar = torch.clamp(logvar, self.clip_range[0], self.clip_range[1])
+ z = self.reparameterize(mu, logvar)
+
+ return z, mu, logvar
+
+class CausalDecoder(nn.Module):
+ def __init__(self,
+ input_emb_width = 272,
+ hidden_size = 1024,
+ down_t = 2,
+ stride_t = 2,
+ width = 1024,
+ depth = 3,
+ dilation_growth_rate = 3,
+ activation='relu',
+ norm=None
+ ):
+ super().__init__()
+ blocks = []
+
+ filter_t, pad_t = stride_t * 2, stride_t // 2
+ blocks.append(CausalConv1d(hidden_size, width, 3, 1, 1))
+ blocks.append(nn.ReLU())
+ for i in range(down_t):
+ out_dim = width
+ block = nn.Sequential(
+ CausalResnet1D(width, depth, dilation_growth_rate, reverse_dilation=True, activation=activation, norm=norm),
+ nn.Upsample(scale_factor=2, mode='nearest'),
+ CausalConv1d(width, out_dim, 3, 1, 1)
+ )
+ blocks.append(block)
+ blocks.append(CausalConv1d(width, width, 3, 1, 1))
+ blocks.append(nn.ReLU())
+ blocks.append(CausalConv1d(width, input_emb_width, 3, 1, 1))
+
+ self.model = nn.Sequential(*blocks)
+
+ def forward(self, z):
+ z = z.transpose(1, 2)
+ return self.model(z)
diff --git a/models/diffloss.py b/models/diffloss.py
new file mode 100644
index 0000000000000000000000000000000000000000..d51cedf219aba4d4d0f51ef4a16599ad1a627b2b
--- /dev/null
+++ b/models/diffloss.py
@@ -0,0 +1,258 @@
+import torch
+import torch.nn as nn
+from torch.utils.checkpoint import checkpoint
+import math
+from timm.layers.mlp import SwiGLU
+from models.diffusion import create_diffusion
+
+
+class DiffLoss(nn.Module):
+ """Diffusion Loss"""
+ def __init__(self, target_channels, z_channels, depth, width, num_sampling_steps, grad_checkpointing=False, learn_sigma=False):
+ super(DiffLoss, self).__init__()
+ self.in_channels = target_channels
+ self.net = SimpleMLPAdaLN(
+ in_channels=target_channels,
+ model_channels=width,
+ out_channels=target_channels * 2 if learn_sigma else target_channels,
+ z_channels=z_channels,
+ num_res_blocks=depth,
+ grad_checkpointing=grad_checkpointing
+ )
+
+ self.train_diffusion = create_diffusion(timestep_respacing="", noise_schedule="cosine")
+ self.gen_diffusion = create_diffusion(timestep_respacing=num_sampling_steps, noise_schedule="cosine")
+
+ def forward(self, target, z, mask=None):
+ t = torch.randint(0, self.train_diffusion.num_timesteps, (target.shape[0],), device=target.device)
+ model_kwargs = dict(c=z)
+ loss_dict = self.train_diffusion.training_losses(self.net, target, t, model_kwargs)
+ loss = loss_dict["loss"]
+ pred_xstart = loss_dict["pred_xstart"]
+ if mask is not None:
+ loss = (loss * mask).sum() / mask.sum()
+ return loss.mean(), pred_xstart
+
+ def sample(self, z, temperature=1.0, cfg=1.0):
+
+ if not cfg == 1.0:
+ noise = torch.randn(z.shape[0] // 2, self.in_channels).to(z.device)
+ noise = torch.cat([noise, noise], dim=0)
+ model_kwargs = dict(c=z, cfg_scale=cfg)
+ sample_fn = self.net.forward_with_cfg
+ else:
+ noise = torch.randn(z.shape[0], self.in_channels).to(z.device)
+ model_kwargs = dict(c=z)
+ sample_fn = self.net.forward
+
+ sampled_token_latent = self.gen_diffusion.p_sample_loop(
+ sample_fn, noise.shape, noise, clip_denoised=False, model_kwargs=model_kwargs, progress=False,
+ temperature=temperature
+ )
+
+ return sampled_token_latent
+
+
+def modulate(x, shift, scale):
+ return x * (1 + scale) + shift
+
+
+class TimestepEmbedder(nn.Module):
+ """
+ Embeds scalar timesteps into vector representations.
+ """
+ def __init__(self, hidden_size, frequency_embedding_size=256):
+ super().__init__()
+ self.mlp = nn.Sequential(
+ nn.Linear(frequency_embedding_size, hidden_size, bias=True),
+ nn.SiLU(),
+ nn.Linear(hidden_size, hidden_size, bias=True),
+ )
+ self.frequency_embedding_size = frequency_embedding_size
+
+ @staticmethod
+ def timestep_embedding(t, dim, max_period=10000):
+ """
+ Create sinusoidal timestep embeddings.
+ :param t: a 1-D Tensor of N indices, one per batch element.
+ These may be fractional.
+ :param dim: the dimension of the output.
+ :param max_period: controls the minimum frequency of the embeddings.
+ :return: an (N, D) Tensor of positional embeddings.
+ """
+
+ half = dim // 2
+ freqs = torch.exp(
+ -math.log(max_period) * torch.arange(start=0, end=half, dtype=torch.float32) / half
+ ).to(device=t.device)
+ args = t[:, None].float() * freqs[None]
+ embedding = torch.cat([torch.cos(args), torch.sin(args)], dim=-1)
+ if dim % 2:
+ embedding = torch.cat([embedding, torch.zeros_like(embedding[:, :1])], dim=-1)
+ return embedding
+
+ def forward(self, t):
+ t_freq = self.timestep_embedding(t, self.frequency_embedding_size)
+ t_emb = self.mlp(t_freq)
+ return t_emb
+
+
+class ResBlock(nn.Module):
+ """
+ A residual block that can optionally change the number of channels.
+ :param channels: the number of input channels.
+ """
+
+ def __init__(
+ self,
+ channels
+ ):
+ super().__init__()
+ self.channels = channels
+
+ self.in_ln = nn.LayerNorm(channels, eps=1e-6)
+
+ self.mlp = nn.Sequential(
+ nn.Linear(channels, channels, bias=True),
+ nn.SiLU(),
+ nn.Linear(channels, channels, bias=True),
+ )
+
+
+ self.adaLN_modulation = nn.Sequential(
+ nn.SiLU(),
+ nn.Linear(channels, 3 * channels, bias=True)
+ )
+
+ def forward(self, x, y):
+ shift_mlp, scale_mlp, gate_mlp = self.adaLN_modulation(y).chunk(3, dim=-1)
+ h = modulate(self.in_ln(x), shift_mlp, scale_mlp)
+ h = self.mlp(h)
+ return x + gate_mlp * h
+
+
+class FinalLayer(nn.Module):
+ """
+ The final layer adopted from DiT.
+ """
+ def __init__(self, model_channels, out_channels):
+ super().__init__()
+ self.norm_final = nn.LayerNorm(model_channels, elementwise_affine=False, eps=1e-6)
+ self.linear = nn.Linear(model_channels, out_channels, bias=True)
+
+ self.adaLN_modulation = nn.Sequential(
+ nn.SiLU(),
+ nn.Linear(model_channels, 2 * model_channels, bias=True)
+ )
+
+ def forward(self, x, c):
+ shift, scale = self.adaLN_modulation(c).chunk(2, dim=-1)
+ x = modulate(self.norm_final(x), shift, scale)
+ x = self.linear(x)
+ return x
+
+
+class SimpleMLPAdaLN(nn.Module):
+ """
+ The MLP for Diffusion Loss.
+ :param in_channels: channels in the input Tensor.
+ :param model_channels: base channel count for the model.
+ :param out_channels: channels in the output Tensor.
+ :param z_channels: channels in the condition.
+ :param num_res_blocks: number of residual blocks per downsample.
+ """
+
+ def __init__(
+ self,
+ in_channels,
+ model_channels,
+ out_channels,
+ z_channels,
+ num_res_blocks,
+ grad_checkpointing=False
+ ):
+ super().__init__()
+
+ self.in_channels = in_channels
+ self.model_channels = model_channels
+ self.out_channels = out_channels
+ self.num_res_blocks = num_res_blocks
+ self.grad_checkpointing = grad_checkpointing
+
+ self.time_embed = TimestepEmbedder(model_channels)
+ self.cond_embed = nn.Linear(z_channels, model_channels)
+
+ self.input_proj = nn.Linear(in_channels, model_channels)
+
+ res_blocks = []
+ for i in range(num_res_blocks):
+ res_blocks.append(ResBlock(
+ model_channels
+ ))
+
+ self.res_blocks = nn.ModuleList(res_blocks)
+ self.final_layer = FinalLayer(model_channels, out_channels)
+
+ self.initialize_weights()
+
+ def initialize_weights(self):
+ def _basic_init(module):
+ if isinstance(module, nn.Linear):
+ torch.nn.init.xavier_uniform_(module.weight)
+ if module.bias is not None:
+ nn.init.constant_(module.bias, 0)
+ self.apply(_basic_init)
+
+ # Initialize timestep embedding MLP
+ nn.init.normal_(self.time_embed.mlp[0].weight, std=0.02)
+ nn.init.normal_(self.time_embed.mlp[2].weight, std=0.02)
+
+ # Zero-out adaLN modulation layers
+
+ for block in self.res_blocks:
+ nn.init.constant_(block.adaLN_modulation[-1].weight, 0)
+ nn.init.constant_(block.adaLN_modulation[-1].bias, 0)
+
+ nn.init.constant_(self.final_layer.adaLN_modulation[-1].weight, 0)
+ nn.init.constant_(self.final_layer.adaLN_modulation[-1].bias, 0)
+ nn.init.constant_(self.final_layer.linear.weight, 0)
+ nn.init.constant_(self.final_layer.linear.bias, 0)
+
+ def forward(self, x, t, c):
+ """
+ Apply the model to an input batch.
+ :param x: an [N x C] Tensor of inputs.
+ :param t: a 1-D batch of timesteps.
+ :param c: conditioning from AR transformer.
+ :return: an [N x C] Tensor of outputs.
+ """
+
+
+
+ x = x.float()
+
+ x = self.input_proj(x)
+ t = self.time_embed(t)
+ c = self.cond_embed(c)
+
+
+ y = t + c
+
+ if self.grad_checkpointing and not torch.jit.is_scripting():
+ for block in self.res_blocks:
+ x = checkpoint(block, x, y)
+ else:
+ for block in self.res_blocks:
+ x = block(x, y)
+
+ return self.final_layer(x, y)
+
+ def forward_with_cfg(self, x, t, c, cfg_scale):
+ half = x[: len(x) // 2]
+ combined = torch.cat([half, half], dim=0)
+ model_out = self.forward(combined, t, c)
+ eps, rest = model_out[:, :self.in_channels], model_out[:, self.in_channels:]
+ cond_eps, uncond_eps = torch.split(eps, len(eps) // 2, dim=0)
+ half_eps = uncond_eps + cfg_scale * (cond_eps - uncond_eps)
+ eps = torch.cat([half_eps, half_eps], dim=0)
+ return torch.cat([eps, rest], dim=1)
diff --git a/models/diffusion/__init__.py b/models/diffusion/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..4210525a4ea1db05b7541e3a3ed807b75730171b
--- /dev/null
+++ b/models/diffusion/__init__.py
@@ -0,0 +1,47 @@
+# Adopted from DiT, which is modified from OpenAI's diffusion repos
+# DiT: https://github.com/facebookresearch/DiT/diffusion
+# GLIDE: https://github.com/openai/glide-text2im/blob/main/glide_text2im/gaussian_diffusion.py
+# ADM: https://github.com/openai/guided-diffusion/blob/main/guided_diffusion
+# IDDPM: https://github.com/openai/improved-diffusion/blob/main/improved_diffusion/gaussian_diffusion.py
+
+from . import gaussian_diffusion as gd
+from .respace import SpacedDiffusion, space_timesteps
+
+
+def create_diffusion(
+ timestep_respacing,
+ noise_schedule="linear",
+ use_kl=False,
+ sigma_small=True,
+ predict_xstart=False,
+ learn_sigma=False,
+ rescale_learned_sigmas=False,
+ diffusion_steps=50
+):
+ betas = gd.get_named_beta_schedule(noise_schedule, diffusion_steps)
+ if use_kl:
+ loss_type = gd.LossType.RESCALED_KL
+ elif rescale_learned_sigmas:
+ loss_type = gd.LossType.RESCALED_MSE
+ else:
+ loss_type = gd.LossType.MSE
+ if timestep_respacing is None or timestep_respacing == "":
+ timestep_respacing = [diffusion_steps]
+ return SpacedDiffusion(
+ use_timesteps=space_timesteps(diffusion_steps, timestep_respacing),
+ betas=betas,
+ model_mean_type=(
+ gd.ModelMeanType.EPSILON if not predict_xstart else gd.ModelMeanType.START_X
+ ),
+ model_var_type=(
+ (
+ gd.ModelVarType.FIXED_LARGE
+ if not sigma_small
+ else gd.ModelVarType.FIXED_SMALL
+ )
+ if not learn_sigma
+ else gd.ModelVarType.LEARNED_RANGE
+ ),
+ loss_type=loss_type
+ # rescale_timesteps=rescale_timesteps,
+ )
diff --git a/models/diffusion/__pycache__/__init__.cpython-39.pyc b/models/diffusion/__pycache__/__init__.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..493eb7a91ccae9a06b3ba335ad57d217a76684c7
Binary files /dev/null and b/models/diffusion/__pycache__/__init__.cpython-39.pyc differ
diff --git a/models/diffusion/__pycache__/diffusion_utils.cpython-39.pyc b/models/diffusion/__pycache__/diffusion_utils.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..10452b2f0267f019582aba5837646611871cc64e
Binary files /dev/null and b/models/diffusion/__pycache__/diffusion_utils.cpython-39.pyc differ
diff --git a/models/diffusion/__pycache__/gaussian_diffusion.cpython-39.pyc b/models/diffusion/__pycache__/gaussian_diffusion.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..96e7e7929f71b0bf701f52355903cedefc400e1b
Binary files /dev/null and b/models/diffusion/__pycache__/gaussian_diffusion.cpython-39.pyc differ
diff --git a/models/diffusion/__pycache__/respace.cpython-39.pyc b/models/diffusion/__pycache__/respace.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..586db9c12c6a347b747dd8fec51376a49675c68f
Binary files /dev/null and b/models/diffusion/__pycache__/respace.cpython-39.pyc differ
diff --git a/models/diffusion/diffusion_utils.py b/models/diffusion/diffusion_utils.py
new file mode 100644
index 0000000000000000000000000000000000000000..86ef6a9ed81767302fbe36900013dfe1abaf25f4
--- /dev/null
+++ b/models/diffusion/diffusion_utils.py
@@ -0,0 +1,73 @@
+# Modified from OpenAI's diffusion repos
+# GLIDE: https://github.com/openai/glide-text2im/blob/main/glide_text2im/gaussian_diffusion.py
+# ADM: https://github.com/openai/guided-diffusion/blob/main/guided_diffusion
+# IDDPM: https://github.com/openai/improved-diffusion/blob/main/improved_diffusion/gaussian_diffusion.py
+
+import torch as th
+import numpy as np
+
+
+def normal_kl(mean1, logvar1, mean2, logvar2):
+ """
+ Compute the KL divergence between two gaussians.
+ Shapes are automatically broadcasted, so batches can be compared to
+ scalars, among other use cases.
+ """
+ tensor = None
+ for obj in (mean1, logvar1, mean2, logvar2):
+ if isinstance(obj, th.Tensor):
+ tensor = obj
+ break
+ assert tensor is not None, "at least one argument must be a Tensor"
+
+ # Force variances to be Tensors. Broadcasting helps convert scalars to
+ # Tensors, but it does not work for th.exp().
+ logvar1, logvar2 = [
+ x if isinstance(x, th.Tensor) else th.tensor(x).to(tensor)
+ for x in (logvar1, logvar2)
+ ]
+
+ return 0.5 * (
+ -1.0
+ + logvar2
+ - logvar1
+ + th.exp(logvar1 - logvar2)
+ + ((mean1 - mean2) ** 2) * th.exp(-logvar2)
+ )
+
+
+def approx_standard_normal_cdf(x):
+ """
+ A fast approximation of the cumulative distribution function of the
+ standard normal.
+ """
+ return 0.5 * (1.0 + th.tanh(np.sqrt(2.0 / np.pi) * (x + 0.044715 * th.pow(x, 3))))
+
+
+def discretized_gaussian_log_likelihood(x, *, means, log_scales):
+ """
+ Compute the log-likelihood of a Gaussian distribution discretizing to a
+ given image.
+ :param x: the target images. It is assumed that this was uint8 values,
+ rescaled to the range [-1, 1].
+ :param means: the Gaussian mean Tensor.
+ :param log_scales: the Gaussian log stddev Tensor.
+ :return: a tensor like x of log probabilities (in nats).
+ """
+ assert x.shape == means.shape == log_scales.shape
+ centered_x = x - means
+ inv_stdv = th.exp(-log_scales)
+ plus_in = inv_stdv * (centered_x + 1.0 / 255.0)
+ cdf_plus = approx_standard_normal_cdf(plus_in)
+ min_in = inv_stdv * (centered_x - 1.0 / 255.0)
+ cdf_min = approx_standard_normal_cdf(min_in)
+ log_cdf_plus = th.log(cdf_plus.clamp(min=1e-12))
+ log_one_minus_cdf_min = th.log((1.0 - cdf_min).clamp(min=1e-12))
+ cdf_delta = cdf_plus - cdf_min
+ log_probs = th.where(
+ x < -0.999,
+ log_cdf_plus,
+ th.where(x > 0.999, log_one_minus_cdf_min, th.log(cdf_delta.clamp(min=1e-12))),
+ )
+ assert log_probs.shape == x.shape
+ return log_probs
diff --git a/models/diffusion/gaussian_diffusion.py b/models/diffusion/gaussian_diffusion.py
new file mode 100644
index 0000000000000000000000000000000000000000..c03301b925e2976c7eb3a269bf4fb10a9f90bb0f
--- /dev/null
+++ b/models/diffusion/gaussian_diffusion.py
@@ -0,0 +1,917 @@
+# Modified from OpenAI's diffusion repos
+# GLIDE: https://github.com/openai/glide-text2im/blob/main/glide_text2im/gaussian_diffusion.py
+# ADM: https://github.com/openai/guided-diffusion/blob/main/guided_diffusion
+# IDDPM: https://github.com/openai/improved-diffusion/blob/main/improved_diffusion/gaussian_diffusion.py
+
+
+import math
+
+import numpy as np
+import torch as th
+import enum
+
+from .diffusion_utils import discretized_gaussian_log_likelihood, normal_kl
+
+
+def mean_flat(tensor):
+ """
+ Take the mean over all non-batch dimensions.
+ """
+ return tensor.mean(dim=list(range(1, len(tensor.shape)))) # tensor.shape = torch.Size([124, 512])
+
+
+class ModelMeanType(enum.Enum):
+ """
+ Which type of output the model predicts.
+ """
+
+ PREVIOUS_X = enum.auto() # the model predicts x_{t-1}
+ START_X = enum.auto() # the model predicts x_0
+ EPSILON = enum.auto() # the model predicts epsilon
+
+
+class ModelVarType(enum.Enum):
+ """
+ What is used as the model's output variance.
+ The LEARNED_RANGE option has been added to allow the model to predict
+ values between FIXED_SMALL and FIXED_LARGE, making its job easier.
+ """
+
+ LEARNED = enum.auto()
+ FIXED_SMALL = enum.auto()
+ FIXED_LARGE = enum.auto()
+ LEARNED_RANGE = enum.auto()
+
+
+class LossType(enum.Enum):
+ MSE = enum.auto() # use raw MSE loss (and KL when learning variances)
+ RESCALED_MSE = (
+ enum.auto()
+ ) # use raw MSE loss (with RESCALED_KL when learning variances)
+ KL = enum.auto() # use the variational lower-bound
+ RESCALED_KL = enum.auto() # like KL, but rescale to estimate the full VLB
+
+ def is_vb(self):
+ return self == LossType.KL or self == LossType.RESCALED_KL
+
+
+def _warmup_beta(beta_start, beta_end, num_diffusion_timesteps, warmup_frac):
+ betas = beta_end * np.ones(num_diffusion_timesteps, dtype=np.float64)
+ warmup_time = int(num_diffusion_timesteps * warmup_frac)
+ betas[:warmup_time] = np.linspace(beta_start, beta_end, warmup_time, dtype=np.float64)
+ return betas
+
+
+def get_beta_schedule(beta_schedule, *, beta_start, beta_end, num_diffusion_timesteps):
+ """
+ This is the deprecated API for creating beta schedules.
+ See get_named_beta_schedule() for the new library of schedules.
+ """
+ if beta_schedule == "quad":
+ betas = (
+ np.linspace(
+ beta_start ** 0.5,
+ beta_end ** 0.5,
+ num_diffusion_timesteps,
+ dtype=np.float64,
+ )
+ ** 2
+ )
+ elif beta_schedule == "linear":
+ betas = np.linspace(beta_start, beta_end, num_diffusion_timesteps, dtype=np.float64)
+ elif beta_schedule == "warmup10":
+ betas = _warmup_beta(beta_start, beta_end, num_diffusion_timesteps, 0.1)
+ elif beta_schedule == "warmup50":
+ betas = _warmup_beta(beta_start, beta_end, num_diffusion_timesteps, 0.5)
+ elif beta_schedule == "const":
+ betas = beta_end * np.ones(num_diffusion_timesteps, dtype=np.float64)
+ elif beta_schedule == "jsd": # 1/T, 1/(T-1), 1/(T-2), ..., 1
+ betas = 1.0 / np.linspace(
+ num_diffusion_timesteps, 1, num_diffusion_timesteps, dtype=np.float64
+ )
+ else:
+ raise NotImplementedError(beta_schedule)
+ assert betas.shape == (num_diffusion_timesteps,)
+ return betas
+
+
+def get_named_beta_schedule(schedule_name, num_diffusion_timesteps):
+ """
+ Get a pre-defined beta schedule for the given name.
+ The beta schedule library consists of beta schedules which remain similar
+ in the limit of num_diffusion_timesteps.
+ Beta schedules may be added, but should not be removed or changed once
+ they are committed to maintain backwards compatibility.
+ """
+ if schedule_name == "linear":
+ # Linear schedule from Ho et al, extended to work for any number of
+ # diffusion steps.
+ scale = 1000 / num_diffusion_timesteps
+ return get_beta_schedule(
+ "linear",
+ beta_start=scale * 0.0001,
+ beta_end=scale * 0.02,
+ num_diffusion_timesteps=num_diffusion_timesteps,
+ )
+ elif schedule_name == "cosine":
+ return betas_for_alpha_bar(
+ num_diffusion_timesteps,
+ lambda t: math.cos((t + 0.008) / 1.008 * math.pi / 2) ** 2,
+ )
+ else:
+ raise NotImplementedError(f"unknown beta schedule: {schedule_name}")
+
+
+def betas_for_alpha_bar(num_diffusion_timesteps, alpha_bar, max_beta=0.999):
+ """
+ Create a beta schedule that discretizes the given alpha_t_bar function,
+ which defines the cumulative product of (1-beta) over time from t = [0,1].
+ :param num_diffusion_timesteps: the number of betas to produce.
+ :param alpha_bar: a lambda that takes an argument t from 0 to 1 and
+ produces the cumulative product of (1-beta) up to that
+ part of the diffusion process.
+ :param max_beta: the maximum beta to use; use values lower than 1 to
+ prevent singularities.
+ """
+ betas = []
+ for i in range(num_diffusion_timesteps):
+ t1 = i / num_diffusion_timesteps
+ t2 = (i + 1) / num_diffusion_timesteps
+ betas.append(min(1 - alpha_bar(t2) / alpha_bar(t1), max_beta))
+ return np.array(betas)
+
+
+
+
+class GaussianDiffusion:
+ """
+ Utilities for training and sampling diffusion models.
+ Original ported from this codebase:
+ https://github.com/hojonathanho/diffusion/blob/1e0dceb3b3495bbe19116a5e1b3596cd0706c543/diffusion_tf/diffusion_utils_2.py#L42
+ :param betas: a 1-D numpy array of betas for each diffusion timestep,
+ starting at T and going to 1.
+ """
+
+ def __init__(
+ self,
+ *,
+ betas,
+ model_mean_type,
+ model_var_type,
+ loss_type
+ ):
+
+ self.model_mean_type = model_mean_type
+ self.model_var_type = model_var_type
+ self.loss_type = loss_type
+
+ # Use float64 for accuracy.
+ betas = np.array(betas, dtype=np.float64)
+ self.betas = betas
+ assert len(betas.shape) == 1, "betas must be 1-D"
+ assert (betas > 0).all() and (betas <= 1).all()
+
+ self.num_timesteps = int(betas.shape[0])
+
+ alphas = 1.0 - betas
+ self.alphas_cumprod = np.cumprod(alphas, axis=0)
+ self.alphas_cumprod_prev = np.append(1.0, self.alphas_cumprod[:-1])
+ self.alphas_cumprod_next = np.append(self.alphas_cumprod[1:], 0.0)
+ assert self.alphas_cumprod_prev.shape == (self.num_timesteps,)
+
+ # calculations for diffusion q(x_t | x_{t-1}) and others
+ self.sqrt_alphas_cumprod = np.sqrt(self.alphas_cumprod)
+ self.sqrt_one_minus_alphas_cumprod = np.sqrt(1.0 - self.alphas_cumprod)
+ self.log_one_minus_alphas_cumprod = np.log(1.0 - self.alphas_cumprod)
+ self.sqrt_recip_alphas_cumprod = np.sqrt(1.0 / self.alphas_cumprod)
+ self.sqrt_recipm1_alphas_cumprod = np.sqrt(1.0 / self.alphas_cumprod - 1)
+
+ # calculations for posterior q(x_{t-1} | x_t, x_0)
+ self.posterior_variance = (
+ betas * (1.0 - self.alphas_cumprod_prev) / (1.0 - self.alphas_cumprod)
+ )
+ # below: log calculation clipped because the posterior variance is 0 at the beginning of the diffusion chain
+ self.posterior_log_variance_clipped = np.log(
+ np.append(self.posterior_variance[1], self.posterior_variance[1:])
+ ) if len(self.posterior_variance) > 1 else np.array([])
+
+ self.posterior_mean_coef1 = (
+ betas * np.sqrt(self.alphas_cumprod_prev) / (1.0 - self.alphas_cumprod)
+ )
+ self.posterior_mean_coef2 = (
+ (1.0 - self.alphas_cumprod_prev) * np.sqrt(alphas) / (1.0 - self.alphas_cumprod)
+ )
+
+ def q_mean_variance(self, x_start, t):
+ """
+ Get the distribution q(x_t | x_0).
+ :param x_start: the [N x C x ...] tensor of noiseless inputs.
+ :param t: the number of diffusion steps (minus 1). Here, 0 means one step.
+ :return: A tuple (mean, variance, log_variance), all of x_start's shape.
+ """
+ mean = _extract_into_tensor(self.sqrt_alphas_cumprod, t, x_start.shape) * x_start
+ variance = _extract_into_tensor(1.0 - self.alphas_cumprod, t, x_start.shape)
+ log_variance = _extract_into_tensor(self.log_one_minus_alphas_cumprod, t, x_start.shape)
+ return mean, variance, log_variance
+
+ def q_sample(self, x_start, t, noise=None):
+ """
+ Diffuse the data for a given number of diffusion steps.
+ In other words, sample from q(x_t | x_0).
+ :param x_start: the initial data batch.
+ :param t: the number of diffusion steps (minus 1). Here, 0 means one step.
+ :param noise: if specified, the split-out normal noise.
+ :return: A noisy version of x_start.
+ """
+ if noise is None:
+ noise = th.randn_like(x_start)
+ assert noise.shape == x_start.shape
+ return (
+ _extract_into_tensor(self.sqrt_alphas_cumprod, t, x_start.shape) * x_start
+ + _extract_into_tensor(self.sqrt_one_minus_alphas_cumprod, t, x_start.shape) * noise
+ )
+
+ def q_posterior_mean_variance(self, x_start, x_t, t):
+ """
+ Compute the mean and variance of the diffusion posterior:
+ q(x_{t-1} | x_t, x_0)
+ """
+ assert x_start.shape == x_t.shape
+ posterior_mean = (
+ _extract_into_tensor(self.posterior_mean_coef1, t, x_t.shape) * x_start
+ + _extract_into_tensor(self.posterior_mean_coef2, t, x_t.shape) * x_t
+ )
+ posterior_variance = _extract_into_tensor(self.posterior_variance, t, x_t.shape)
+ posterior_log_variance_clipped = _extract_into_tensor(
+ self.posterior_log_variance_clipped, t, x_t.shape
+ )
+ assert (
+ posterior_mean.shape[0]
+ == posterior_variance.shape[0]
+ == posterior_log_variance_clipped.shape[0]
+ == x_start.shape[0]
+ )
+ return posterior_mean, posterior_variance, posterior_log_variance_clipped
+
+ def p_mean_variance(self, model, x, t, clip_denoised=True, denoised_fn=None, model_kwargs=None):
+ """
+ Apply the model to get p(x_{t-1} | x_t), as well as a prediction of
+ the initial x, x_0.
+ :param model: the model, which takes a signal and a batch of timesteps
+ as input.
+ :param x: the [N x C x ...] tensor at time t.
+ :param t: a 1-D Tensor of timesteps.
+ :param clip_denoised: if True, clip the denoised signal into [-1, 1].
+ :param denoised_fn: if not None, a function which applies to the
+ x_start prediction before it is used to sample. Applies before
+ clip_denoised.
+ :param model_kwargs: if not None, a dict of extra keyword arguments to
+ pass to the model. This can be used for conditioning.
+ :return: a dict with the following keys:
+ - 'mean': the model mean output.
+ - 'variance': the model variance output.
+ - 'log_variance': the log of 'variance'.
+ - 'pred_xstart': the prediction for x_0.
+ """
+ if model_kwargs is None:
+ model_kwargs = {}
+
+ B, C = x.shape[:2]
+ assert t.shape == (B,)
+ model_output = model(x, t, **model_kwargs) # 调用forward_withcfg函数得到 torch.Size([2, 512])
+ if isinstance(model_output, tuple):
+ model_output, extra = model_output
+ else:
+ extra = None
+
+ if self.model_var_type in [ModelVarType.LEARNED, ModelVarType.LEARNED_RANGE]:
+ assert model_output.shape == (B, C * 2, *x.shape[2:])
+ model_output, model_var_values = th.split(model_output, C, dim=1)
+ min_log = _extract_into_tensor(self.posterior_log_variance_clipped, t, x.shape)
+ max_log = _extract_into_tensor(np.log(self.betas), t, x.shape)
+ # The model_var_values is [-1, 1] for [min_var, max_var].
+ frac = (model_var_values + 1) / 2
+ model_log_variance = frac * max_log + (1 - frac) * min_log
+ model_variance = th.exp(model_log_variance)
+ else:
+ model_variance, model_log_variance = {
+ # for fixedlarge, we set the initial (log-)variance like so
+ # to get a better decoder log likelihood.
+ ModelVarType.FIXED_LARGE: (
+ np.append(self.posterior_variance[1], self.betas[1:]),
+ np.log(np.append(self.posterior_variance[1], self.betas[1:])),
+ ),
+ ModelVarType.FIXED_SMALL: (
+ self.posterior_variance,
+ self.posterior_log_variance_clipped,
+ ),
+ }[self.model_var_type] # ModelVarType.FIXED_SMALL
+ model_variance = _extract_into_tensor(model_variance, t, x.shape)
+ model_log_variance = _extract_into_tensor(model_log_variance, t, x.shape)
+
+ def process_xstart(x):
+ if denoised_fn is not None:
+ x = denoised_fn(x)
+ if clip_denoised:
+ return x.clamp(-1, 1)
+ return x
+
+
+ if self.model_mean_type == ModelMeanType.START_X:
+ pred_xstart = process_xstart(model_output)
+ else: # here
+ pred_xstart = process_xstart(
+ self._predict_xstart_from_eps(x_t=x, t=t, eps=model_output)
+ )
+ model_mean, _, _ = self.q_posterior_mean_variance(x_start=pred_xstart, x_t=x, t=t)
+
+ # print(f't: {t}; Out: {model_output[0,:5]}, Mean: {model_mean[0,:5]}, x_0: {pred_xstart[0,:5]}')
+ assert model_mean.shape == model_log_variance.shape == pred_xstart.shape == x.shape
+ return {
+ "mean": model_mean,
+ "variance": model_variance,
+ "log_variance": model_log_variance,
+ "pred_xstart": pred_xstart,
+ "extra": extra,
+ }
+
+ def _predict_xstart_from_eps(self, x_t, t, eps):
+ assert x_t.shape == eps.shape
+ return (
+ _extract_into_tensor(self.sqrt_recip_alphas_cumprod, t, x_t.shape) * x_t
+ - _extract_into_tensor(self.sqrt_recipm1_alphas_cumprod, t, x_t.shape) * eps
+ )
+
+ def _predict_eps_from_xstart(self, x_t, t, pred_xstart):
+ return (
+ _extract_into_tensor(self.sqrt_recip_alphas_cumprod, t, x_t.shape) * x_t - pred_xstart
+ ) / _extract_into_tensor(self.sqrt_recipm1_alphas_cumprod, t, x_t.shape)
+
+ def condition_mean(self, cond_fn, p_mean_var, x, t, model_kwargs=None):
+ """
+ Compute the mean for the previous step, given a function cond_fn that
+ computes the gradient of a conditional log probability with respect to
+ x. In particular, cond_fn computes grad(log(p(y|x))), and we want to
+ condition on y.
+ This uses the conditioning strategy from Sohl-Dickstein et al. (2015).
+ """
+ gradient = cond_fn(x, t, **model_kwargs)
+ new_mean = p_mean_var["mean"].float() + p_mean_var["variance"] * gradient.float()
+ return new_mean
+
+ def condition_score(self, cond_fn, p_mean_var, x, t, model_kwargs=None):
+ """
+ Compute what the p_mean_variance output would have been, should the
+ model's score function be conditioned by cond_fn.
+ See condition_mean() for details on cond_fn.
+ Unlike condition_mean(), this instead uses the conditioning strategy
+ from Song et al (2020).
+ """
+ alpha_bar = _extract_into_tensor(self.alphas_cumprod, t, x.shape)
+
+ eps = self._predict_eps_from_xstart(x, t, p_mean_var["pred_xstart"])
+ eps = eps - (1 - alpha_bar).sqrt() * cond_fn(x, t, **model_kwargs)
+
+ out = p_mean_var.copy()
+ out["pred_xstart"] = self._predict_xstart_from_eps(x, t, eps)
+ out["mean"], _, _ = self.q_posterior_mean_variance(x_start=out["pred_xstart"], x_t=x, t=t)
+ return out
+
+ def p_sample(
+ self,
+ model,
+ x,
+ t,
+ clip_denoised=True,
+ denoised_fn=None,
+ cond_fn=None,
+ model_kwargs=None,
+ temperature=1.0
+ ):
+ """
+ Sample x_{t-1} from the model at the given timestep.
+ :param model: the model to sample from.
+ :param x: the current tensor at x_{t-1}.
+ :param t: the value of t, starting at 0 for the first diffusion step.
+ :param clip_denoised: if True, clip the x_start prediction to [-1, 1].
+ :param denoised_fn: if not None, a function which applies to the
+ x_start prediction before it is used to sample.
+ :param cond_fn: if not None, this is a gradient function that acts
+ similarly to the model.
+ :param model_kwargs: if not None, a dict of extra keyword arguments to
+ pass to the model. This can be used for conditioning.
+ :param temperature: temperature scaling during Diff Loss sampling.
+ :return: a dict containing the following keys:
+ - 'sample': a random sample from the model.
+ - 'pred_xstart': a prediction of x_0.
+ """
+ out = self.p_mean_variance(
+ model,
+ x,
+ t,
+ clip_denoised=clip_denoised,
+ denoised_fn=denoised_fn,
+ model_kwargs=model_kwargs,
+ )
+ noise = th.randn_like(x)
+ nonzero_mask = (
+ (t != 0).float().view(-1, *([1] * (len(x.shape) - 1)))
+ ) # no noise when t == 0
+ if cond_fn is not None:
+ out["mean"] = self.condition_mean(cond_fn, out, x, t, model_kwargs=model_kwargs)
+ # scale the noise by temperature
+ sample = out["mean"] + nonzero_mask * th.exp(0.5 * out["log_variance"]) * noise * temperature
+ return {"sample": sample, "pred_xstart": out["pred_xstart"]}
+
+
+ # def generate_unconditionally(self, model, x_start, t, noise=None):
+ # """
+ # Generate samples unconditionally using the given model.
+
+ # :param model: the model to generate samples with.
+ # :param x_start: the [N x C x ...] tensor of inputs.
+ # :param t: a batch of timestep indices.
+ # :param noise: if specified, the specific Gaussian noise to use.
+ # :return: a tensor of generated samples.
+ # """
+ # # Ensure model_kwargs is an empty dictionary for unconditional generation
+ # model_kwargs = {}
+
+ # # Generate random noise if not provided
+ # if noise is None:
+ # noise = th.randn_like(x_start)
+
+ # # Sample x_t using the q_sample function
+ # x_t = self.q_sample(x_start, t, noise=noise)
+
+ # # Generate samples using the model without any conditions
+ # generated_samples = model(x_t, t, **model_kwargs)
+
+ # return generated_samples
+
+ def p_sample_loop(
+ self,
+ model,
+ shape,
+ noise=None,
+ clip_denoised=True,
+ denoised_fn=None,
+ cond_fn=None,
+ model_kwargs=None,
+ device=None,
+ progress=False,
+ temperature=1.0,
+ ):
+ """
+ Generate samples from the model.
+ :param model: the model module.
+ :param shape: the shape of the samples, (N, C, H, W).
+ :param noise: if specified, the noise from the encoder to sample.
+ Should be of the same shape as `shape`.
+ :param clip_denoised: if True, clip x_start predictions to [-1, 1].
+ :param denoised_fn: if not None, a function which applies to the
+ x_start prediction before it is used to sample.
+ :param cond_fn: if not None, this is a gradient function that acts
+ similarly to the model.
+ :param model_kwargs: if not None, a dict of extra keyword arguments to
+ pass to the model. This can be used for conditioning.
+ :param device: if specified, the device to create the samples on.
+ If not specified, use a model parameter's device.
+ :param progress: if True, show a tqdm progress bar.
+ :param temperature: temperature scaling during Diff Loss sampling.
+ :return: a non-differentiable batch of samples.
+ """
+ final = None
+ for sample in self.p_sample_loop_progressive(
+ model,
+ shape,
+ noise=noise,
+ clip_denoised=clip_denoised,
+ denoised_fn=denoised_fn,
+ cond_fn=cond_fn,
+ model_kwargs=model_kwargs,
+ device=device,
+ progress=progress,
+ temperature=temperature,
+ ):
+ final = sample
+
+ return final["sample"]
+
+ def p_sample_loop_progressive(
+ self,
+ model,
+ shape,
+ noise=None,
+ clip_denoised=True,
+ denoised_fn=None,
+ cond_fn=None,
+ model_kwargs=None,
+ device=None,
+ progress=False,
+ temperature=1.0,
+ ):
+ """
+ Generate samples from the model and yield intermediate samples from
+ each timestep of diffusion.
+ Arguments are the same as p_sample_loop().
+ Returns a generator over dicts, where each dict is the return value of
+ p_sample().
+ """
+ assert isinstance(shape, (tuple, list))
+ if noise is not None:
+ img = noise
+ else:
+ img = th.randn(*shape).cuda()
+ indices = list(range(self.num_timesteps))[::-1]
+
+ if progress:
+ # Lazy import so that we don't depend on tqdm.
+ from tqdm.auto import tqdm
+
+ indices = tqdm(indices)
+
+ for i in indices:
+ t = th.tensor([i] * shape[0]).cuda()
+ with th.no_grad():
+ out = self.p_sample(
+ model,
+ img,
+ t,
+ clip_denoised=clip_denoised,
+ denoised_fn=denoised_fn,
+ cond_fn=cond_fn,
+ model_kwargs=model_kwargs,
+ temperature=temperature,
+ )
+ yield out
+ img = out["sample"]
+
+ def ddim_sample(
+ self,
+ model,
+ x,
+ t,
+ clip_denoised=True,
+ denoised_fn=None,
+ cond_fn=None,
+ model_kwargs=None,
+ eta=0.0,
+ ):
+ """
+ Sample x_{t-1} from the model using DDIM.
+ Same usage as p_sample().
+ """
+ out = self.p_mean_variance(
+ model,
+ x,
+ t,
+ clip_denoised=clip_denoised,
+ denoised_fn=denoised_fn,
+ model_kwargs=model_kwargs,
+ )
+ if cond_fn is not None:
+ out = self.condition_score(cond_fn, out, x, t, model_kwargs=model_kwargs)
+
+ # Usually our model outputs epsilon, but we re-derive it
+ # in case we used x_start or x_prev prediction.
+ eps = self._predict_eps_from_xstart(x, t, out["pred_xstart"])
+
+ alpha_bar = _extract_into_tensor(self.alphas_cumprod, t, x.shape)
+ alpha_bar_prev = _extract_into_tensor(self.alphas_cumprod_prev, t, x.shape)
+ sigma = (
+ eta
+ * th.sqrt((1 - alpha_bar_prev) / (1 - alpha_bar))
+ * th.sqrt(1 - alpha_bar / alpha_bar_prev)
+ )
+ # Equation 12.
+ noise = th.randn_like(x)
+ mean_pred = (
+ out["pred_xstart"] * th.sqrt(alpha_bar_prev)
+ + th.sqrt(1 - alpha_bar_prev - sigma ** 2) * eps
+ )
+ nonzero_mask = (
+ (t != 0).float().view(-1, *([1] * (len(x.shape) - 1)))
+ ) # no noise when t == 0
+ sample = mean_pred + nonzero_mask * sigma * noise
+ return {"sample": sample, "pred_xstart": out["pred_xstart"]}
+
+ def ddim_reverse_sample(
+ self,
+ model,
+ x,
+ t,
+ clip_denoised=True,
+ denoised_fn=None,
+ cond_fn=None,
+ model_kwargs=None,
+ eta=0.0,
+ ):
+ """
+ Sample x_{t+1} from the model using DDIM reverse ODE.
+ """
+ assert eta == 0.0, "Reverse ODE only for deterministic path"
+ out = self.p_mean_variance(
+ model,
+ x,
+ t,
+ clip_denoised=clip_denoised,
+ denoised_fn=denoised_fn,
+ model_kwargs=model_kwargs,
+ )
+ if cond_fn is not None:
+ out = self.condition_score(cond_fn, out, x, t, model_kwargs=model_kwargs)
+ # Usually our model outputs epsilon, but we re-derive it
+ # in case we used x_start or x_prev prediction.
+ eps = (
+ _extract_into_tensor(self.sqrt_recip_alphas_cumprod, t, x.shape) * x
+ - out["pred_xstart"]
+ ) / _extract_into_tensor(self.sqrt_recipm1_alphas_cumprod, t, x.shape)
+ alpha_bar_next = _extract_into_tensor(self.alphas_cumprod_next, t, x.shape)
+
+ # Equation 12. reversed
+ mean_pred = out["pred_xstart"] * th.sqrt(alpha_bar_next) + th.sqrt(1 - alpha_bar_next) * eps
+
+ return {"sample": mean_pred, "pred_xstart": out["pred_xstart"]}
+
+ def ddim_sample_loop(
+ self,
+ model,
+ shape,
+ noise=None,
+ clip_denoised=True,
+ denoised_fn=None,
+ cond_fn=None,
+ model_kwargs=None,
+ device=None,
+ progress=False,
+ eta=0.0,
+ ):
+ """
+ Generate samples from the model using DDIM.
+ Same usage as p_sample_loop().
+ """
+ final = None
+ for sample in self.ddim_sample_loop_progressive(
+ model,
+ shape,
+ noise=noise,
+ clip_denoised=clip_denoised,
+ denoised_fn=denoised_fn,
+ cond_fn=cond_fn,
+ model_kwargs=model_kwargs,
+ device=device,
+ progress=progress,
+ eta=eta,
+ ):
+ final = sample
+ return final["sample"]
+
+ def ddim_sample_loop_progressive(
+ self,
+ model,
+ shape,
+ noise=None,
+ clip_denoised=True,
+ denoised_fn=None,
+ cond_fn=None,
+ model_kwargs=None,
+ device=None,
+ progress=False,
+ eta=0.0,
+ ):
+ """
+ Use DDIM to sample from the model and yield intermediate samples from
+ each timestep of DDIM.
+ Same usage as p_sample_loop_progressive().
+ """
+ assert isinstance(shape, (tuple, list))
+ if noise is not None:
+ img = noise
+ else:
+ img = th.randn(*shape).cuda()
+ indices = list(range(self.num_timesteps))[::-1]
+
+ if progress:
+ # Lazy import so that we don't depend on tqdm.
+ from tqdm.auto import tqdm
+
+ indices = tqdm(indices)
+
+ for i in indices:
+ t = th.tensor([i] * shape[0]).cuda()
+ with th.no_grad():
+ out = self.ddim_sample(
+ model,
+ img,
+ t,
+ clip_denoised=clip_denoised,
+ denoised_fn=denoised_fn,
+ cond_fn=cond_fn,
+ model_kwargs=model_kwargs,
+ eta=eta,
+ )
+ yield out
+ img = out["sample"]
+
+ def _vb_terms_bpd(
+ self, model, x_start, x_t, t, clip_denoised=True, model_kwargs=None
+ ):
+ """
+ Get a term for the variational lower-bound.
+ The resulting units are bits (rather than nats, as one might expect).
+ This allows for comparison to other papers.
+ :return: a dict with the following keys:
+ - 'output': a shape [N] tensor of NLLs or KLs.
+ - 'pred_xstart': the x_0 predictions.
+ """
+ true_mean, _, true_log_variance_clipped = self.q_posterior_mean_variance(
+ x_start=x_start, x_t=x_t, t=t
+ )
+ out = self.p_mean_variance(
+ model, x_t, t, clip_denoised=clip_denoised, model_kwargs=model_kwargs
+ )
+ kl = normal_kl(
+ true_mean, true_log_variance_clipped, out["mean"], out["log_variance"]
+ )
+ kl = mean_flat(kl) / np.log(2.0)
+
+ decoder_nll = -discretized_gaussian_log_likelihood(
+ x_start, means=out["mean"], log_scales=0.5 * out["log_variance"]
+ )
+ assert decoder_nll.shape == x_start.shape
+ decoder_nll = mean_flat(decoder_nll) / np.log(2.0)
+
+ # At the first timestep return the decoder NLL,
+ # otherwise return KL(q(x_{t-1}|x_t,x_0) || p(x_{t-1}|x_t))
+ output = th.where((t == 0), decoder_nll, kl)
+ return {"output": output, "pred_xstart": out["pred_xstart"]}
+
+ def training_losses(self, model, x_start, t, model_kwargs=None, noise=None):
+ """
+ Compute training losses for a single timestep.
+ :param model: the model to evaluate loss on.
+ :param x_start: the [N x C x ...] tensor of inputs.
+ :param t: a batch of timestep indices.
+ :param model_kwargs: if not None, a dict of extra keyword arguments to
+ pass to the model. This can be used for conditioning.
+ :param noise: if specified, the specific Gaussian noise to try to remove.
+ :return: a dict with the key "loss" containing a tensor of shape [N].
+ Some mean or variance settings may also have other keys.
+ """
+
+ if model_kwargs is None:
+ model_kwargs = {}
+
+ if noise is None:
+ noise = th.randn_like(x_start)
+ x_t = self.q_sample(x_start, t, noise=noise)
+
+ terms = {}
+
+ if self.loss_type == LossType.KL or self.loss_type == LossType.RESCALED_KL:
+ terms["loss"] = self._vb_terms_bpd(
+ model=model,
+ x_start=x_start,
+ x_t=x_t,
+ t=t,
+ clip_denoised=False,
+ model_kwargs=model_kwargs,
+ )["output"]
+ if self.loss_type == LossType.RESCALED_KL:
+ terms["loss"] *= self.num_timesteps
+ elif self.loss_type == LossType.MSE or self.loss_type == LossType.RESCALED_MSE:
+ model_output = model(x_t, t, **model_kwargs)
+
+ if self.model_var_type in [
+ ModelVarType.LEARNED,
+ ModelVarType.LEARNED_RANGE,
+ ]:
+ B, C = x_t.shape[:2]
+ assert model_output.shape == (B, C * 2, *x_t.shape[2:])
+
+ model_output, model_var_values = th.split(model_output, C, dim=1)
+ # Learn the variance using the variational bound, but don't let
+ # it affect our mean prediction.
+ frozen_out = th.cat([model_output.detach(), model_var_values], dim=1)
+ terms["vb"] = self._vb_terms_bpd(
+ model=lambda *args, r=frozen_out: r,
+ x_start=x_start,
+ x_t=x_t,
+ t=t,
+ clip_denoised=False,
+ )["output"]
+ if self.loss_type == LossType.RESCALED_MSE:
+ # Divide by 1000 for equivalence with initial implementation.
+ # Without a factor of 1/1000, the VB term hurts the MSE term.
+ terms["vb"] *= self.num_timesteps / 1000.0
+
+ target = {
+ ModelMeanType.PREVIOUS_X: self.q_posterior_mean_variance(
+ x_start=x_start, x_t=x_t, t=t
+ )[0],
+ ModelMeanType.START_X: x_start,
+ ModelMeanType.EPSILON: noise,
+ }[self.model_mean_type] # PREVIOUS_X: the model predicts x_{t-1}
+
+
+ assert model_output.shape == target.shape == x_start.shape
+ terms["mse"] = mean_flat((target - model_output) ** 2)
+ if "vb" in terms:
+ terms["loss"] = terms["mse"] + terms["vb"]
+ else:
+ terms["loss"] = terms["mse"]
+
+
+ pred_xstart = self._predict_xstart_from_eps(x_t=x_t, t=t, eps=model_output)
+ terms["pred_xstart"] = pred_xstart
+ else:
+ raise NotImplementedError(self.loss_type)
+
+ return terms
+
+ def _prior_bpd(self, x_start):
+ """
+ Get the prior KL term for the variational lower-bound, measured in
+ bits-per-dim.
+ This term can't be optimized, as it only depends on the encoder.
+ :param x_start: the [N x C x ...] tensor of inputs.
+ :return: a batch of [N] KL values (in bits), one per batch element.
+ """
+ batch_size = x_start.shape[0]
+ t = th.tensor([self.num_timesteps - 1] * batch_size, device=x_start.device)
+ qt_mean, _, qt_log_variance = self.q_mean_variance(x_start, t)
+ kl_prior = normal_kl(
+ mean1=qt_mean, logvar1=qt_log_variance, mean2=0.0, logvar2=0.0
+ )
+ return mean_flat(kl_prior) / np.log(2.0)
+
+ def calc_bpd_loop(self, model, x_start, clip_denoised=True, model_kwargs=None):
+ """
+ Compute the entire variational lower-bound, measured in bits-per-dim,
+ as well as other related quantities.
+ :param model: the model to evaluate loss on.
+ :param x_start: the [N x C x ...] tensor of inputs.
+ :param clip_denoised: if True, clip denoised samples.
+ :param model_kwargs: if not None, a dict of extra keyword arguments to
+ pass to the model. This can be used for conditioning.
+ :return: a dict containing the following keys:
+ - total_bpd: the total variational lower-bound, per batch element.
+ - prior_bpd: the prior term in the lower-bound.
+ - vb: an [N x T] tensor of terms in the lower-bound.
+ - xstart_mse: an [N x T] tensor of x_0 MSEs for each timestep.
+ - mse: an [N x T] tensor of epsilon MSEs for each timestep.
+ """
+ device = x_start.device
+ batch_size = x_start.shape[0]
+
+ vb = []
+ xstart_mse = []
+ mse = []
+ for t in list(range(self.num_timesteps))[::-1]:
+ t_batch = th.tensor([t] * batch_size, device=device)
+ noise = th.randn_like(x_start)
+ x_t = self.q_sample(x_start=x_start, t=t_batch, noise=noise)
+ # Calculate VLB term at the current timestep
+ with th.no_grad():
+ out = self._vb_terms_bpd(
+ model,
+ x_start=x_start,
+ x_t=x_t,
+ t=t_batch,
+ clip_denoised=clip_denoised,
+ model_kwargs=model_kwargs,
+ )
+ vb.append(out["output"])
+ xstart_mse.append(mean_flat((out["pred_xstart"] - x_start) ** 2))
+ eps = self._predict_eps_from_xstart(x_t, t_batch, out["pred_xstart"])
+ mse.append(mean_flat((eps - noise) ** 2))
+
+ vb = th.stack(vb, dim=1)
+ xstart_mse = th.stack(xstart_mse, dim=1)
+ mse = th.stack(mse, dim=1)
+
+ prior_bpd = self._prior_bpd(x_start)
+ total_bpd = vb.sum(dim=1) + prior_bpd
+ return {
+ "total_bpd": total_bpd,
+ "prior_bpd": prior_bpd,
+ "vb": vb,
+ "xstart_mse": xstart_mse,
+ "mse": mse,
+ }
+
+
+def _extract_into_tensor(arr, timesteps, broadcast_shape):
+ """
+ Extract values from a 1-D numpy array for a batch of indices.
+ :param arr: the 1-D numpy array.
+ :param timesteps: a tensor of indices into the array to extract.
+ :param broadcast_shape: a larger shape of K dimensions with the batch
+ dimension equal to the length of timesteps.
+ :return: a tensor of shape [batch_size, 1, ...] where the shape has K dims.
+ """
+ res = th.from_numpy(arr).to(device=timesteps.device)[timesteps].float()
+ while len(res.shape) < len(broadcast_shape):
+ res = res[..., None]
+ return res + th.zeros(broadcast_shape, device=timesteps.device)
diff --git a/models/diffusion/respace.py b/models/diffusion/respace.py
new file mode 100644
index 0000000000000000000000000000000000000000..0a2cc0435d1ace54466585db9043b284973d454e
--- /dev/null
+++ b/models/diffusion/respace.py
@@ -0,0 +1,129 @@
+# Modified from OpenAI's diffusion repos
+# GLIDE: https://github.com/openai/glide-text2im/blob/main/glide_text2im/gaussian_diffusion.py
+# ADM: https://github.com/openai/guided-diffusion/blob/main/guided_diffusion
+# IDDPM: https://github.com/openai/improved-diffusion/blob/main/improved_diffusion/gaussian_diffusion.py
+
+import numpy as np
+import torch as th
+
+from .gaussian_diffusion import GaussianDiffusion
+
+
+def space_timesteps(num_timesteps, section_counts):
+ """
+ Create a list of timesteps to use from an original diffusion process,
+ given the number of timesteps we want to take from equally-sized portions
+ of the original process.
+ For example, if there's 300 timesteps and the section counts are [10,15,20]
+ then the first 100 timesteps are strided to be 10 timesteps, the second 100
+ are strided to be 15 timesteps, and the final 100 are strided to be 20.
+ If the stride is a string starting with "ddim", then the fixed striding
+ from the DDIM paper is used, and only one section is allowed.
+ :param num_timesteps: the number of diffusion steps in the original
+ process to divide up.
+ :param section_counts: either a list of numbers, or a string containing
+ comma-separated numbers, indicating the step count
+ per section. As a special case, use "ddimN" where N
+ is a number of steps to use the striding from the
+ DDIM paper.
+ :return: a set of diffusion steps from the original process to use.
+ """
+ if isinstance(section_counts, str):
+ if section_counts.startswith("ddim"):
+ desired_count = int(section_counts[len("ddim") :])
+ for i in range(1, num_timesteps):
+ if len(range(0, num_timesteps, i)) == desired_count:
+ return set(range(0, num_timesteps, i))
+ raise ValueError(
+ f"cannot create exactly {num_timesteps} steps with an integer stride"
+ )
+ section_counts = [int(x) for x in section_counts.split(",")]
+ size_per = num_timesteps // len(section_counts)
+ extra = num_timesteps % len(section_counts)
+ start_idx = 0
+ all_steps = []
+ for i, section_count in enumerate(section_counts):
+ size = size_per + (1 if i < extra else 0)
+ if size < section_count:
+ raise ValueError(
+ f"cannot divide section of {size} steps into {section_count}"
+ )
+ if section_count <= 1:
+ frac_stride = 1
+ else:
+ frac_stride = (size - 1) / (section_count - 1)
+ cur_idx = 0.0
+ taken_steps = []
+ for _ in range(section_count):
+ taken_steps.append(start_idx + round(cur_idx))
+ cur_idx += frac_stride
+ all_steps += taken_steps
+ start_idx += size
+ return set(all_steps)
+
+
+class SpacedDiffusion(GaussianDiffusion):
+ """
+ A diffusion process which can skip steps in a base diffusion process.
+ :param use_timesteps: a collection (sequence or set) of timesteps from the
+ original diffusion process to retain.
+ :param kwargs: the kwargs to create the base diffusion process.
+ """
+
+ def __init__(self, use_timesteps, **kwargs):
+ self.use_timesteps = set(use_timesteps)
+ self.timestep_map = []
+ self.original_num_steps = len(kwargs["betas"])
+
+ base_diffusion = GaussianDiffusion(**kwargs) # pylint: disable=missing-kwoa
+ last_alpha_cumprod = 1.0
+ new_betas = []
+ for i, alpha_cumprod in enumerate(base_diffusion.alphas_cumprod):
+ if i in self.use_timesteps:
+ new_betas.append(1 - alpha_cumprod / last_alpha_cumprod)
+ last_alpha_cumprod = alpha_cumprod
+ self.timestep_map.append(i)
+ kwargs["betas"] = np.array(new_betas)
+ super().__init__(**kwargs)
+
+ def p_mean_variance(
+ self, model, *args, **kwargs
+ ): # pylint: disable=signature-differs
+ return super().p_mean_variance(self._wrap_model(model), *args, **kwargs)
+
+ def training_losses(
+ self, model, *args, **kwargs
+ ): # pylint: disable=signature-differs
+ return super().training_losses(self._wrap_model(model), *args, **kwargs)
+
+ def condition_mean(self, cond_fn, *args, **kwargs):
+ return super().condition_mean(self._wrap_model(cond_fn), *args, **kwargs)
+
+ def condition_score(self, cond_fn, *args, **kwargs):
+ return super().condition_score(self._wrap_model(cond_fn), *args, **kwargs)
+
+ def _wrap_model(self, model):
+ if isinstance(model, _WrappedModel):
+ return model
+ return _WrappedModel(
+ model, self.timestep_map, self.original_num_steps
+ )
+
+ def _scale_timesteps(self, t):
+ # Scaling is done by the wrapped model.
+ return t
+
+
+class _WrappedModel:
+ def __init__(self, model, timestep_map, original_num_steps):
+ self.model = model
+ self.timestep_map = timestep_map
+ # self.rescale_timesteps = rescale_timesteps
+ self.original_num_steps = original_num_steps
+
+ def __call__(self, x, ts, **kwargs):
+ map_tensor = th.tensor(self.timestep_map, device=ts.device, dtype=ts.dtype)
+ new_ts = map_tensor[ts]
+ # if self.rescale_timesteps:
+ # new_ts = new_ts.float() * (1000.0 / self.original_num_steps)
+ return self.model(x, new_ts, **kwargs)
diff --git a/models/llama_model.py b/models/llama_model.py
new file mode 100644
index 0000000000000000000000000000000000000000..d65adc2fc07f137f94228f0691743702e195aff7
--- /dev/null
+++ b/models/llama_model.py
@@ -0,0 +1,1603 @@
+
+import math
+from dataclasses import dataclass
+import numpy as np
+import torch
+import torch.nn as nn
+from torch.nn import functional as F
+from typing_extensions import Self
+from typing import Optional
+from transformers.modeling_utils import PreTrainedModel
+from torch.distributions import Categorical
+import torch.nn.functional as F
+
+
+@dataclass
+class LLaMAHFConfig:
+ block_size: int = 78
+ n_layer: int = 32
+ n_head: int = 32
+ n_embd: int = 4096
+ T5_xxl_dim: int = 768
+
+ @classmethod
+ def from_name(cls, name: str) -> Self:
+ return cls(**llama_configs[name])
+
+
+llama_configs = {
+ "Normal_size": dict(n_layer=12, n_head=12, n_embd=768)
+}
+
+
+class LLaMAHF(nn.Module):
+ def __init__(self, config: LLaMAHFConfig, num_diffusion_head_layers=9, input_token_dim=16, device=torch.device('cuda'), width=1792) -> None:
+ super().__init__()
+ assert config.block_size is not None
+ self.config = config
+
+ cond_dim = config.T5_xxl_dim
+
+ self.transformer = nn.ModuleDict(
+ dict(
+ wte=nn.Linear(input_token_dim, config.n_embd),
+ cond_embed=nn.Linear(cond_dim, config.n_embd),
+ h=nn.ModuleList([Block(config) for _ in range(config.n_layer)]),
+ ln_f=RMSNorm(config.n_embd),
+ )
+ )
+
+ target_channels = input_token_dim
+ from models.diffloss import DiffLoss
+ self.diff_loss = DiffLoss(
+ target_channels=target_channels,
+ z_channels=config.n_embd,
+ width=width,
+ depth=num_diffusion_head_layers,
+ num_sampling_steps='50',
+ grad_checkpointing=False,
+ )
+ self.diff_loss = self.diff_loss.to(device)
+ self.out_proj = nn.Linear(config.n_embd, config.n_embd)
+ self.use_out_proj = True
+
+
+ def _tie_or_clone_weights(self, output_embeddings, input_embeddings):
+ """Tie or clone module weights depending of whether we are using TorchScript or not"""
+ output_embeddings.weight = input_embeddings.weight
+
+ if getattr(output_embeddings, "bias", None) is not None:
+ output_embeddings.bias.data = nn.functional.pad(
+ output_embeddings.bias.data,
+ (
+ 0,
+ output_embeddings.weight.shape[0] - output_embeddings.bias.shape[0],
+ ),
+ "constant",
+ 0,
+ )
+ if hasattr(output_embeddings, "out_features") and hasattr(input_embeddings, "num_embeddings"):
+ output_embeddings.out_features = input_embeddings.num_embeddings
+
+ def get_input_embeddings(self):
+ return self.transformer.wte
+
+ def set_input_embeddings(self, value):
+ self.transformer.wte = value
+
+ def get_output_embeddings(self):
+ return self.lm_head
+
+ def set_output_embeddings(self, new_embeddings):
+ self.lm_head = new_embeddings
+
+ def _init_weights(self, module: nn.Module) -> None:
+ if isinstance(module, nn.Linear):
+ torch.nn.init.normal_(module.weight, mean=0.0, std=0.02 / math.sqrt(2 * self.config.n_layer))
+ elif isinstance(module, nn.Embedding):
+ torch.nn.init.normal_(module.weight, mean=0.0, std=0.02 / math.sqrt(2 * self.config.n_layer))
+
+
+
+ def forward_sample(self, idx: torch.Tensor, clip_feature: torch.Tensor, y_mask) -> torch.Tensor:
+
+ text_length = clip_feature.shape[1]
+ if len(idx) == 0:
+ x = self.llama_proj(clip_feature)[:, :int(y_mask[0].sum()), :]
+ else:
+ _, t = idx.size()
+ assert (
+ t <= self.config.block_size
+ ), f"Cannot forward sequence of length {t}, block size is only {self.config.block_size}"
+ # forward the LLaMA model itself
+ x = self.transformer.wte(idx) # token embeddings of shape (b, t, n_embd)
+ x = torch.cat((self.llama_proj(clip_feature)[:, :int(y_mask[0].sum()), :],x), dim=1)
+
+ for block in self.transformer.h:
+ x = block(x, y_mask)
+ x = self.transformer.ln_f(x)
+ logits = x
+ return logits
+
+
+
+ def sample_for_eval_CFG(self, text, length=196, tokenize_model=None, device=torch.device('cuda'), unit_length=4, cfg=4.0):
+ max_token_len = length // unit_length
+ for k in range(max_token_len):
+ if k == 0:
+ x = []
+ else:
+ x = xs
+
+ feat_text = torch.from_numpy(tokenize_model.encode(text)).float()
+ feat_text = feat_text.to(device)
+ conditions = self.forward(x, feat_text)
+ conditions = conditions[:, -1, :]
+
+ empty_text = ''
+ empty_feat_text = torch.from_numpy(tokenize_model.encode(empty_text)).float()
+ empty_feat_text = empty_feat_text.unsqueeze(0)
+ empty_feat_text = empty_feat_text.to(device)
+ empty_conditions = self.forward(x, empty_feat_text)
+ empty_conditions = empty_conditions[:, -1, :]
+ temperature = 1.0
+
+ # chunk
+ if cfg != 1:
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else: # no cfg
+ scaled_logits = self.diff_loss.sample(conditions, temperature=temperature, cfg=1)
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+ if k == 0:
+ xs = scaled_logits
+ else:
+ xs = torch.cat((xs, scaled_logits), dim=1)
+
+ return xs
+
+
+
+ # For inference, can stop sampling when the distance between the current token and the reference end token is less than the threshold.
+ def sample_for_eval_CFG_inference(self, text, length=312, tokenizer=None, device=torch.device('cuda'), unit_length=4, reference_end_latent=None, threshold=0.1, cfg=4.0, temperature=1.0):
+ max_token_len = length // unit_length
+ feat_text = torch.from_numpy(tokenizer.encode(text)).float()
+ feat_text = feat_text.to(device)
+
+ # CFG inference
+ empty_text = ''
+ empty_feat_text = torch.from_numpy(tokenizer.encode(empty_text)).float() # torch.Size([32, 768])
+ empty_feat_text = empty_feat_text.unsqueeze(0)
+ empty_feat_text = empty_feat_text.to(device)
+
+ for k in range(max_token_len):
+ if k == 0:
+ x = []
+ else:
+ x = xs
+
+ conditions = self.forward_inference(x, feat_text)
+ conditions = conditions[:, -1, :]
+
+ empty_conditions = self.forward(x, empty_feat_text)
+ empty_conditions = empty_conditions[:, -1, :]
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ if cfg != 1:
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else:
+ scaled_logits = sampled_token_latent
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+ if reference_end_latent is not None:
+ distance_l2 = torch.sqrt(torch.sum((scaled_logits - reference_end_latent)**2))
+ print(distance_l2)
+ if distance_l2 < threshold:
+ break
+
+ if k == 0:
+ xs = scaled_logits
+ else:
+ xs = torch.cat((xs, scaled_logits), dim=1)
+
+ return xs
+
+
+ def sample_for_eval_CFG_inference2(self, feat_clip_text, empty_feat_clip_text, if_categorial=False, length=312, clip_model=None, device=torch.device('cuda'), tokenizer='clip', unit_length=4, reference_end_token=None, threshold=3, cfg=4.5, temperature=1.0):
+
+ import clip
+ max_token_len = length // unit_length
+
+ for k in range(max_token_len):
+ if k == 0:
+ x = []
+ else:
+ x = xs
+
+ try:
+ conditions = self.forward(x, feat_clip_text)
+ except:
+ conditions = self.forward(x, feat_clip_text.unsqueeze(0))
+
+
+ conditions = conditions[:, -1, :]
+
+
+
+ empty_conditions = self.forward(x, empty_feat_clip_text)
+ empty_conditions = empty_conditions[:, -1, :]
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ if cfg != 1:
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else:
+ scaled_logits = sampled_token_latent
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+ if reference_end_token is not None:
+ distance_l2 = torch.sqrt(torch.sum((scaled_logits - reference_end_token)**2))
+ print(distance_l2)
+ if distance_l2 < threshold:
+ break
+
+ if k == 0:
+ xs = scaled_logits
+ else:
+ xs = torch.cat((xs, scaled_logits), dim=1)
+
+ return xs
+
+ def sample_for_eval_CFG_inference_next_one(self, current_token=[], feat_clip_text=None, empty_feat_clip_text=None, if_categorial=False, length=312, clip_model=None, device=torch.device('cuda'), tokenizer='clip', unit_length=4, reference_end_token=None, threshold=3, cfg=4.5, temperature=1.0):
+
+ import clip
+ max_token_len = length // unit_length
+
+
+ for k in range(1):
+
+ if current_token == []:
+ x = []
+ else:
+ x = torch.cat(current_token, dim=1)
+
+
+ try:
+ conditions = self.forward(x, feat_clip_text)
+ except:
+ conditions = self.forward(x, feat_clip_text.unsqueeze(0))
+
+
+ conditions = conditions[:, -1, :]
+
+
+ empty_conditions = self.forward(x, empty_feat_clip_text)
+ empty_conditions = empty_conditions[:, -1, :]
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ if cfg != 1:
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else:
+ scaled_logits = sampled_token_latent
+
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+
+ if k == 0:
+ xs = scaled_logits
+ else:
+ xs = torch.cat((xs, scaled_logits), dim=1)
+
+ return xs
+
+
+ def sample_for_eval_CFG_babel(self, A_text, B_text, A_motion, if_categorial=False, length=6400, clip_model=None, device=torch.device('cuda'), tokenizer='clip', unit_length=4, reference_end_token=None, cfg=7.0, threshold=3):
+
+ import clip
+ B_token_length = length // unit_length - A_motion.shape[0]
+
+ if tokenizer == 'clip':
+ A_text = clip.tokenize(A_text, truncate=True).to(device)
+ A_feat_clip_text = clip_model.encode_text(A_text).float()
+ B_text = clip.tokenize(B_text, truncate=True).to(device)
+ B_feat_clip_text = clip_model.encode_text(B_text).float()
+ elif tokenizer == 't5-xxl':
+ A_feat_clip_text = torch.from_numpy(clip_model.encode(A_text)).float()
+ A_feat_clip_text = A_feat_clip_text.to(device)
+ B_feat_clip_text = torch.from_numpy(clip_model.encode(B_text)).float()
+ B_feat_clip_text = B_feat_clip_text.to(device)
+
+ A_text_embeddings = self.transformer.cond_embed(A_feat_clip_text).unsqueeze(0)
+ B_text_embeddings = self.transformer.cond_embed(B_feat_clip_text).unsqueeze(0)
+
+ A_motion = A_motion.unsqueeze(0)
+ A_motion_embeddings = self.transformer.wte(A_motion)
+ B_motion = torch.tensor([]).to(device)
+
+ for k in range(B_token_length):
+ if k == 0:
+ x = torch.cat([A_text_embeddings, A_motion_embeddings, B_text_embeddings], dim=1)
+ else:
+ x = xs
+
+
+ conditions = self.forward_babel_eval(x)
+ conditions = conditions[:, -1, :]
+
+ empty_clip_text = ''
+ if tokenizer == 'clip':
+ empty_text = clip.tokenize(empty_clip_text, truncate=True).to(device)
+ empty_feat_clip_text = clip_model.encode_text(empty_text).float()
+ elif tokenizer == 't5-xxl':
+ empty_feat_clip_text = torch.from_numpy(clip_model.encode(empty_clip_text)).float()
+ empty_feat_clip_text = empty_feat_clip_text.unsqueeze(0)
+ empty_feat_clip_text = empty_feat_clip_text.to(device)
+
+ empty_feat_clip_text_embedding = self.transformer.cond_embed(empty_feat_clip_text).unsqueeze(0)
+
+ if k == 0:
+ empty_input = torch.cat([empty_feat_clip_text_embedding, A_motion_embeddings, empty_feat_clip_text_embedding], dim=1)
+ empty_conditions = self.forward_babel_eval(empty_input)
+ else:
+ B_motion_embeddings = self.transformer.wte(B_motion)
+ empty_input = torch.cat([empty_feat_clip_text_embedding, A_motion_embeddings, empty_feat_clip_text_embedding, B_motion_embeddings], dim=1)
+ empty_conditions = self.forward_babel_eval(empty_input)
+
+ empty_conditions = empty_conditions[:, -1, :]
+ temperature = 1.0
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ if cfg != 1:
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else:
+ scaled_logits = sampled_token_latent
+
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+
+ B_motion = torch.cat((B_motion, scaled_logits), dim=1)
+
+ scaled_logits_embedding = self.transformer.wte(scaled_logits)
+ xs = torch.cat((x, scaled_logits_embedding), dim=1)
+
+
+ return xs, B_motion
+
+ def sample_for_eval_CFG_babel_inference(self, A_text, B_text, A_motion, if_categorial=False, length=6400, clip_model=None, device=torch.device('cuda'), tokenizer='clip', unit_length=4, reference_end_token=None, cfg=7.0, threshold=3):
+
+ import clip
+ B_token_length = length // unit_length - A_motion.shape[0]
+
+ if tokenizer == 'clip':
+ A_text = clip.tokenize(A_text, truncate=True).to(device)
+ A_feat_clip_text = clip_model.encode_text(A_text).float()
+ B_text = clip.tokenize(B_text, truncate=True).to(device)
+ B_feat_clip_text = clip_model.encode_text(B_text).float()
+ elif tokenizer == 't5-xxl':
+ A_feat_clip_text = torch.from_numpy(clip_model.encode(A_text)).float()
+ A_feat_clip_text = A_feat_clip_text.to(device)
+ B_feat_clip_text = torch.from_numpy(clip_model.encode(B_text)).float()
+ B_feat_clip_text = B_feat_clip_text.to(device)
+
+ A_text_embeddings = self.transformer.cond_embed(A_feat_clip_text).unsqueeze(0)
+ A_text_embeddings = A_text_embeddings.unsqueeze(0)
+ B_text_embeddings = self.transformer.cond_embed(B_feat_clip_text).unsqueeze(0)
+ B_text_embeddings = B_text_embeddings.unsqueeze(0)
+
+ A_motion = A_motion.unsqueeze(0)
+ A_motion_embeddings = self.transformer.wte(A_motion)
+ B_motion = torch.tensor([]).to(device)
+
+ attention_weights = []
+
+ for k in range(B_token_length):
+ if k == 0:
+ x = torch.cat([A_text_embeddings, A_motion_embeddings, B_text_embeddings], dim=1)
+
+ else:
+ x = xs
+
+
+
+ conditions = self.forward_babel_eval(x, return_attention=False)
+ conditions = conditions[:, -1, :]
+
+ empty_clip_text = ''
+ if tokenizer == 'clip':
+ empty_text = clip.tokenize(empty_clip_text, truncate=True).to(device)
+ empty_feat_clip_text = clip_model.encode_text(empty_text).float()
+ elif tokenizer == 't5-xxl':
+ empty_feat_clip_text = torch.from_numpy(clip_model.encode(empty_clip_text)).float()
+ empty_feat_clip_text = empty_feat_clip_text.unsqueeze(0)
+ empty_feat_clip_text = empty_feat_clip_text.to(device)
+
+ empty_feat_clip_text_embedding = self.transformer.cond_embed(empty_feat_clip_text).unsqueeze(0)
+
+ if k == 0:
+ empty_input = torch.cat([empty_feat_clip_text_embedding, A_motion_embeddings, empty_feat_clip_text_embedding], dim=1)
+ empty_conditions = self.forward_babel_eval(empty_input)
+ else:
+ B_motion_embeddings = self.transformer.wte(B_motion)
+ empty_input = torch.cat([empty_feat_clip_text_embedding, A_motion_embeddings, empty_feat_clip_text_embedding, B_motion_embeddings], dim=1)
+ empty_conditions = self.forward_babel_eval(empty_input)
+
+ empty_conditions = empty_conditions[:, -1, :]
+ temperature = 1.0
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ if cfg != 1:
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else:
+ scaled_logits = sampled_token_latent
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+ if reference_end_token is not None:
+ distance_l2 = torch.sqrt(torch.sum((scaled_logits - reference_end_token)**2))
+ print(distance_l2)
+ if distance_l2 < threshold:
+ break
+
+ B_motion = torch.cat((B_motion, scaled_logits), dim=1)
+
+ scaled_logits_embedding = self.transformer.wte(scaled_logits)
+ xs = torch.cat((x, scaled_logits_embedding), dim=1)
+
+
+
+ return xs, B_motion
+
+
+ def sample_for_eval_CFG_babel_inference_new(self, B_text, A_motion, if_categorial=False, length=78, clip_model=None, device=torch.device('cuda'), tokenizer='clip', unit_length=4, reference_end_token=None, cfg=4.5, threshold=3):
+
+ import clip
+ B_token_length = length // unit_length
+
+ if tokenizer == 'clip':
+ A_text = clip.tokenize(A_text, truncate=True).to(device)
+ A_feat_clip_text = clip_model.encode_text(A_text).float()
+ B_text = clip.tokenize(B_text, truncate=True).to(device)
+ B_feat_clip_text = clip_model.encode_text(B_text).float()
+ elif tokenizer == 't5-xxl':
+ B_feat_clip_text = torch.from_numpy(clip_model.encode(B_text)).float()
+ B_feat_clip_text = B_feat_clip_text.to(device)
+
+ empty_clip_text = ''
+ if tokenizer == 'clip':
+ empty_text = clip.tokenize(empty_clip_text, truncate=True).to(device)
+ empty_feat_clip_text = clip_model.encode_text(empty_text).float()
+ elif tokenizer == 't5-xxl':
+ empty_feat_clip_text = torch.from_numpy(clip_model.encode(empty_clip_text)).float()
+ empty_feat_clip_text = empty_feat_clip_text.unsqueeze(0)
+ empty_feat_clip_text = empty_feat_clip_text.to(device)
+
+ B_text_embeddings = self.transformer.cond_embed(B_feat_clip_text).unsqueeze(0)
+
+ A_motion = A_motion.unsqueeze(0)
+ A_motion_embeddings = self.transformer.wte(A_motion)
+ B_motion = torch.tensor([]).to(device)
+
+
+ attention_weights = []
+
+ for k in range(B_token_length):
+ if k == 0:
+ x = torch.cat([B_text_embeddings, A_motion_embeddings], dim=1)
+ else:
+ x = xs
+
+ conditions = self.forward_babel_eval(x, return_attention=False)
+ conditions = conditions[:, -1, :]
+
+
+ empty_feat_clip_text_embedding = self.transformer.cond_embed(empty_feat_clip_text).unsqueeze(0)
+
+ if k == 0:
+ empty_input = torch.cat([empty_feat_clip_text_embedding, A_motion_embeddings], dim=1)
+
+ empty_conditions = self.forward_babel_eval(empty_input)
+ else:
+ B_motion_embeddings = self.transformer.wte(B_motion)
+ empty_input = torch.cat([empty_feat_clip_text_embedding, A_motion_embeddings, B_motion_embeddings], dim=1)
+ empty_conditions = self.forward_babel_eval(empty_input)
+
+ empty_conditions = empty_conditions[:, -1, :]
+ temperature = 1.0
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ if cfg != 1:
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else:
+ scaled_logits = sampled_token_latent
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+ if reference_end_token is not None:
+ distance_l2 = torch.sqrt(torch.sum((scaled_logits - reference_end_token)**2))
+ print(distance_l2)
+ if distance_l2 < threshold:
+ break
+
+ B_motion = torch.cat((B_motion, scaled_logits), dim=1)
+
+ scaled_logits_embedding = self.transformer.wte(scaled_logits)
+ xs = torch.cat((x, scaled_logits_embedding), dim=1)
+
+
+
+ return xs, B_motion
+
+
+ def sample_for_eval_CFG_babel_inference_new_demo(self, B_text, A_motion, if_categorial=False, length=312, clip_model=None, device=torch.device('cuda'), tokenizer='clip', unit_length=4, reference_end_token=None, cfg=4.5, threshold=3, temperature=1.0):
+
+ import clip
+ B_token_length = length // unit_length - A_motion.shape[0]
+
+ if tokenizer == 'clip':
+ A_text = clip.tokenize(A_text, truncate=True).to(device)
+ A_feat_clip_text = clip_model.encode_text(A_text).float()
+ B_text = clip.tokenize(B_text, truncate=True).to(device)
+ B_feat_clip_text = clip_model.encode_text(B_text).float()
+ elif tokenizer == 't5-xxl':
+ B_feat_clip_text = torch.from_numpy(clip_model.encode(B_text)).float()
+ B_feat_clip_text = B_feat_clip_text.to(device)
+
+ empty_clip_text = ''
+ if tokenizer == 'clip':
+ empty_text = clip.tokenize(empty_clip_text, truncate=True).to(device)
+ empty_feat_clip_text = clip_model.encode_text(empty_text).float()
+ elif tokenizer == 't5-xxl':
+ empty_feat_clip_text = torch.from_numpy(clip_model.encode(empty_clip_text)).float()
+ empty_feat_clip_text = empty_feat_clip_text.unsqueeze(0)
+ empty_feat_clip_text = empty_feat_clip_text.to(device)
+
+ B_text_embeddings = self.transformer.cond_embed(B_feat_clip_text).unsqueeze(0)
+ B_text_embeddings = B_text_embeddings.unsqueeze(0)
+
+ A_motion = A_motion.unsqueeze(0)
+ A_motion_embeddings = self.transformer.wte(A_motion)
+ B_motion = torch.tensor([]).to(device)
+
+ # 存储所有层的注意力权重
+ attention_weights = []
+
+ for k in range(B_token_length):
+ if k == 0:
+ x = torch.cat([B_text_embeddings, A_motion_embeddings], dim=1)
+
+ else:
+ x = xs
+
+
+ conditions = self.forward_babel_eval(x, return_attention=False)
+ conditions = conditions[:, -1, :]
+
+
+ empty_feat_clip_text_embedding = self.transformer.cond_embed(empty_feat_clip_text).unsqueeze(0)
+
+ if k == 0:
+ empty_input = torch.cat([empty_feat_clip_text_embedding, A_motion_embeddings], dim=1)
+ empty_conditions = self.forward_babel_eval(empty_input)
+ else:
+ B_motion_embeddings = self.transformer.wte(B_motion)
+ empty_input = torch.cat([empty_feat_clip_text_embedding, A_motion_embeddings, B_motion_embeddings], dim=1)
+ empty_conditions = self.forward_babel_eval(empty_input)
+
+ empty_conditions = empty_conditions[:, -1, :]
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ if cfg != 1:
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else:
+ scaled_logits = sampled_token_latent
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+ if reference_end_token is not None:
+ distance_l2 = torch.sqrt(torch.sum((scaled_logits - reference_end_token)**2))
+ print(distance_l2)
+ if distance_l2 < threshold and k > 10:
+ break
+
+ B_motion = torch.cat((B_motion, scaled_logits), dim=1)
+
+ scaled_logits_embedding = self.transformer.wte(scaled_logits)
+ xs = torch.cat((x, scaled_logits_embedding), dim=1)
+
+
+
+ return xs, B_motion
+
+
+
+ #--------------Test classification head--------------------
+ def sample_for_eval_classification(self, clip_text, if_categorial=False, length=196, clip_model=None, device=torch.device('cuda'), tokenizer='clip', unit_length=4):
+
+ import clip
+
+
+ for k in range(51):
+ if k == 0:
+ x = []
+ else:
+ x = xs
+
+ if tokenizer == 'clip':
+ text = clip.tokenize(clip_text, truncate=True).to(device)
+
+ feat_clip_text = clip_model.encode_text(text).float()
+ elif tokenizer == 't5-xxl':
+ feat_clip_text = torch.from_numpy(clip_model.module.encode(clip_text)).float()
+
+ conditions = self.forward(x, feat_clip_text)
+ conditions = conditions[:, -1, :]
+
+ empty_clip_text = ''
+ if tokenizer == 'clip':
+ empty_text = clip.tokenize(empty_clip_text, truncate=True).to(device)
+ empty_feat_clip_text = clip_model.encode_text(empty_text).float()
+ elif tokenizer == 't5-xxl':
+ empty_feat_clip_text = torch.from_numpy(clip_model.module.encode(empty_clip_text)).float()
+ empty_feat_clip_text = empty_feat_clip_text.unsqueeze(0)
+ empty_feat_clip_text = empty_feat_clip_text.to(device)
+
+ empty_conditions = self.forward(x, empty_feat_clip_text)
+ empty_conditions = empty_conditions[:, -1, :]
+
+ temperature = 1.0
+ cfg = 7.5
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ if cfg != 1:
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+ else:
+ scaled_logits = sampled_token_latent
+
+
+ prediction_logits = self.classify_head(conditions)
+ probs = torch.sigmoid(prediction_logits)
+ predicted_classes = torch.argmax(probs, dim=-1)
+
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+ if k == 0:
+ xs = scaled_logits
+ else:
+ xs = torch.cat((xs, scaled_logits), dim=1)
+
+ if predicted_classes == 1:
+ break
+
+ return xs
+
+
+ #--------------------Test CFG-----------------------
+ def sample_for_eval_CFG_test(self, clip_text, if_categorial=False, length=196, clip_model=None, cfg=1, device=torch.device('cuda'), tokenizer='clip', unit_length=4):
+
+ import clip
+ max_token_len = length // unit_length
+
+
+ for k in range(max_token_len):
+ if k == 0:
+ x = []
+ else:
+ x = xs
+
+
+ if cfg != 1:
+ if tokenizer == 'clip':
+ text = clip.tokenize(clip_text, truncate=True).to(device)
+
+ feat_clip_text = clip_model.encode_text(text).float()
+ elif tokenizer == 't5-xxl':
+ feat_clip_text = torch.from_numpy(clip_model.module.encode(clip_text)).float()
+
+ conditions = self.forward(x, feat_clip_text)
+
+ conditions = conditions[:, -1, :]
+ empty_clip_text = ''
+ if tokenizer == 'clip':
+ empty_text = clip.tokenize(empty_clip_text, truncate=True).to(device)
+ empty_feat_clip_text = clip_model.encode_text(empty_text).float()
+ elif tokenizer == 't5-xxl':
+ empty_feat_clip_text = torch.from_numpy(clip_model.module.encode(empty_clip_text)).float()
+ empty_feat_clip_text = empty_feat_clip_text.unsqueeze(0)
+ empty_feat_clip_text = empty_feat_clip_text.to(device)
+
+ empty_conditions = self.forward(x, empty_feat_clip_text)
+ empty_conditions = empty_conditions[:, -1, :]
+ temperature = 1.0
+
+
+ mix_conditions = torch.cat([conditions, empty_conditions], dim=0)
+ sampled_token_latent = self.diff_loss.sample(mix_conditions, temperature=temperature, cfg=cfg)
+
+ # chunk
+ scaled_logits, _ = sampled_token_latent.chunk(2, dim=0)
+
+ else:
+ if tokenizer == 'clip':
+ text = clip.tokenize(clip_text, truncate=True).to(device)
+ feat_clip_text = clip_model.encode_text(text).float()
+ elif tokenizer == 't5-xxl':
+ feat_clip_text = torch.from_numpy(clip_model.module.encode(clip_text)).float()
+ feat_clip_text = feat_clip_text.to(device)
+
+
+ conditions = self.forward(x, feat_clip_text)
+
+ conditions = conditions[:, -1, :]
+ temperature = 1.0
+ sampled_token_latent = self.diff_loss.sample(conditions, temperature=temperature, cfg=cfg)
+ scaled_logits = sampled_token_latent
+
+ scaled_logits = scaled_logits.unsqueeze(0)
+
+ if k == 0:
+ xs = scaled_logits
+ else:
+ xs = torch.cat((xs, scaled_logits), dim=1)
+
+ return xs
+ #--------------------------------------------------
+
+ def forward_discrete(self, idx: torch.Tensor, clip_feature: torch.Tensor, use_cache=False, past_key_values=None) -> torch.Tensor:
+ if len(idx) == 0:
+ token_embeddings = self.transformer.cond_embed(clip_feature).unsqueeze(0)
+
+ else:
+ b, t = idx.size()
+ #idx = idx.float()
+ assert (
+ t <= self.config.block_size
+ ), f"Cannot forward sequence of length {t}, block size is only {self.config.block_size}"
+
+ # forward the LLaMA model itself
+ token_embeddings = self.transformer.wte(idx)
+ text_embeddings = self.transformer.cond_embed(clip_feature).unsqueeze(1)
+ token_embeddings = torch.cat([text_embeddings, token_embeddings], dim=1)
+
+ x = token_embeddings
+
+ # -------------------kv cache-------------------
+ #presents = () if use_cache else None
+ if use_cache:
+ if past_key_values is None:
+ past_key_values = [None] * len(self.transformer.h)
+
+
+ for i,block in enumerate(self.transformer.h):
+ if use_cache:
+ last_past = past_key_values[i]
+ x, presents = block(x, last_past, use_cache)
+ past_key_values[i] = list(presents)
+ else:
+ x = block(x)
+ x = self.transformer.ln_f(x)
+
+ logits = self.lm_head(x)
+
+
+ return logits
+
+
+ def forward(self, idx: torch.Tensor, feature: torch.Tensor) -> torch.Tensor:
+ if len(idx) == 0:
+ token_embeddings = self.transformer.cond_embed(feature).unsqueeze(0)
+
+ else:
+ b, t, c = idx.size()
+ idx = idx.float()
+ assert (
+ t <= self.config.block_size
+ ), f"Cannot forward sequence of length {t}, block size is only {self.config.block_size}"
+
+ # forward the LLaMA model itself
+ token_embeddings = self.transformer.wte(idx)
+ text_embeddings = self.transformer.cond_embed(feature).unsqueeze(1)
+ token_embeddings = torch.cat([text_embeddings, token_embeddings], dim=1)
+
+ x = token_embeddings
+
+ for i,block in enumerate(self.transformer.h):
+ x = block(x)
+ x = self.transformer.ln_f(x)
+ logits = self.out_proj(x)
+ return logits
+
+
+ def forward_inference(self, idx: torch.Tensor, feature: torch.Tensor) -> torch.Tensor:
+ if len(idx) == 0:
+ token_embeddings = self.transformer.cond_embed(feature).unsqueeze(0)
+
+ else:
+ b, t, c = idx.size()
+ idx = idx.float()
+ assert (
+ t <= self.config.block_size
+ ), f"Cannot forward sequence of length {t}, block size is only {self.config.block_size}"
+
+ # forward the LLaMA model itself
+ token_embeddings = self.transformer.wte(idx)
+ text_embeddings = self.transformer.cond_embed(feature).unsqueeze(0)
+ token_embeddings = torch.cat([text_embeddings.unsqueeze(0), token_embeddings], dim=1)
+
+ x = token_embeddings
+
+ if len(x.shape) == 2:
+ x = x.unsqueeze(0)
+
+ for i,block in enumerate(self.transformer.h):
+ x = block(x)
+ x = self.transformer.ln_f(x)
+ logits = self.out_proj(x)
+ return logits
+
+
+ def babel_long(self, idx: torch.Tensor, clip_feature: torch.Tensor, use_cache=False, past_key_values=None, num_subseq=None, length=None) -> torch.Tensor:
+
+ b, t, c = idx.size()
+ idx = idx.float()
+ idx = self.transformer.wte(idx)
+ assert (
+ t <= self.config.block_size
+ ), f"Cannot forward sequence of length {t}, block size is only {self.config.block_size}"
+ for i in range(b):
+ length_i = length[i][:num_subseq[i]]
+ clip_feature_i = clip_feature[i][:num_subseq[i]]
+
+ pointer = 0
+ for j in range(num_subseq[i]):
+ if j > 0:
+ pointer += length_i[j].item()
+ pointer += 1
+ pointer = int(pointer)
+
+ clip_feature_i_j = self.transformer.cond_embed(clip_feature_i[j].unsqueeze(0)).unsqueeze(1)
+ idx[i] = torch.cat([idx[i][:pointer].unsqueeze(0), clip_feature_i_j, idx[i][pointer:-1].unsqueeze(0)], dim=1)[0]
+
+ x = idx
+
+
+ if use_cache:
+ if past_key_values is None:
+ past_key_values = [None] * len(self.transformer.h)
+
+
+ for i,block in enumerate(self.transformer.h):
+ if use_cache:
+ last_past = past_key_values[i]
+ x, presents = block(x, last_past, use_cache)
+ past_key_values[i] = list(presents)
+ else:
+ x = block(x)
+ x = self.transformer.ln_f(x)
+
+ logits = self.out_proj(x)
+ return logits
+
+
+ def forward_babel_eval(self, x, return_attention=False) -> torch.Tensor:
+ layer_attentions = []
+ for block in self.transformer.h:
+ if return_attention:
+ x, att = block(x, return_attention=True)
+ layer_attentions.append(att)
+ else:
+ x = block(x)
+
+ x = self.transformer.ln_f(x)
+ if self.use_out_proj:
+ logits = self.out_proj(x)
+ else:
+ logits = x
+
+ if return_attention:
+ return logits, layer_attentions
+ return logits
+
+ def forward_babel(self, idx: torch.Tensor, clip_feature: torch.Tensor, A_token_length) -> torch.Tensor:
+ if len(idx) == 0: # inference
+ token_embeddings = self.transformer.cond_embed(clip_feature).unsqueeze(1)
+
+ else:
+ b, t, c = idx.size()
+ idx = idx.float()
+ assert (
+ t <= self.config.block_size
+ ), f"Cannot forward sequence of length {t}, block size is only {self.config.block_size}"
+
+
+
+ A_feature = clip_feature[:, 0, :]
+ B_feature = clip_feature[:, 1, :]
+
+
+ A_text_embeddings = self.transformer.cond_embed(A_feature).unsqueeze(1)
+ B_text_embeddings = self.transformer.cond_embed(B_feature).unsqueeze(1)
+
+ token_embeddings = torch.zeros(b, self.config.block_size, self.config.n_embd).to(idx.device)
+ for i in range(b):
+ A_idx = idx[i, :A_token_length[i].item(), :]
+ B_idx = idx[i, A_token_length[i].item():-2, :]
+ token_embeddings[i, :, :] = torch.cat([A_text_embeddings[i], self.BOM_tag, self.transformer.wte(A_idx), B_text_embeddings[i], self.BOM_tag, self.transformer.wte(B_idx)], dim=0) #token_embeddings.shape = (b,t+1,1024)
+
+ x = token_embeddings
+ for block in self.transformer.h:
+ x = block(x)
+ x = self.transformer.ln_f(x)
+
+ if self.use_out_proj:
+ logits = self.out_proj(x)
+ else:
+ logits = x
+
+
+ return logits
+
+ def forward_babel2(self, idx: torch.Tensor, clip_feature: torch.Tensor) -> torch.Tensor:
+ if len(idx) == 0: # inference
+ token_embeddings = self.transformer.cond_embed(clip_feature).unsqueeze(1)
+
+ else:
+ b, t, c = idx.size()
+ idx = idx.float()
+ assert (
+ t <= self.config.block_size
+ ), f"Cannot forward sequence of length {t}, block size is only {self.config.block_size}"
+
+ B_feature = clip_feature
+ B_text_embeddings = self.transformer.cond_embed(B_feature)
+
+ idx_embeddings = self.transformer.wte(idx)
+
+
+ token_embeddings = torch.cat([B_text_embeddings, idx_embeddings], dim=1)
+
+
+ x = token_embeddings
+ for block in self.transformer.h:
+ x = block(x)
+ x = self.transformer.ln_f(x)
+
+ if self.use_out_proj:
+ logits = self.out_proj(x)
+ else:
+ logits = x
+
+ return logits
+
+
+ def resize_token_embeddings(
+ self, new_num_tokens: Optional[int] = None, pad_to_multiple_of: Optional[int] = None, using_old_initilization: bool = False
+ ) -> nn.Embedding:
+ """
+ Resizes input token embeddings matrix of the model if `new_num_tokens != config.vocab_size`.
+
+ Takes care of tying weights embeddings afterwards if the model class has a `tie_weights()` method.
+
+ Arguments:
+ new_num_tokens (`int`, *optional*):
+ The new number of tokens in the embedding matrix. Increasing the size will add newly initialized
+ vectors at the end. Reducing the size will remove vectors from the end. If not provided or `None`, just
+ returns a pointer to the input tokens `torch.nn.Embedding` module of the model without doing anything.
+ pad_to_multiple_of (`int`, *optional*):
+ If set will pad the embedding matrix to a multiple of the provided value.If `new_num_tokens` is set to
+ `None` will just pad the embedding to a multiple of `pad_to_multiple_of`.
+
+ This is especially useful to enable the use of Tensor Cores on NVIDIA hardware with compute capability
+ `>= 7.5` (Volta), or on TPUs which benefit from having sequence lengths be a multiple of 128. For more
+ details about this, or help on choosing the correct value for resizing, refer to this guide:
+ https://docs.nvidia.com/deeplearning/performance/dl-performance-matrix-multiplication/index.html#requirements-tc
+
+ Return:
+ `torch.nn.Embedding`: Pointer to the input tokens Embeddings Module of the model.
+ """
+ model_embeds = self._resize_token_embeddings(new_num_tokens, pad_to_multiple_of)
+ if new_num_tokens is None and pad_to_multiple_of is None:
+ return model_embeds
+
+ # Update base model and current model config
+ self.config.vocab_size = model_embeds.weight.shape[0]
+ self.vocab_size = model_embeds.weight.shape[0]
+
+ # Tie weights again if needed
+ # self.tie_weights()
+
+ return model_embeds
+
+ def _resize_token_embeddings(self, new_num_tokens, pad_to_multiple_of=None):
+ old_embeddings = self.get_input_embeddings()
+ new_embeddings = self._get_resized_embeddings(old_embeddings, new_num_tokens, pad_to_multiple_of)
+ old_embeddings_requires_grad = old_embeddings.weight.requires_grad
+ new_embeddings.requires_grad_(old_embeddings_requires_grad)
+ self.set_input_embeddings(new_embeddings)
+
+ # Update new_num_tokens with the actual size of new_embeddings
+ if pad_to_multiple_of is not None:
+ # if is_deepspeed_zero3_enabled():
+ # import deepspeed
+
+ # with deepspeed.zero.GatheredParameters(new_embeddings.weight, modifier_rank=None):
+ # new_num_tokens = new_embeddings.weight.shape[0]
+ # else:
+ new_num_tokens = new_embeddings.weight.shape[0]
+
+ # if word embeddings are not tied, make sure that lm head is resized as well
+ # if self.get_output_embeddings() is not None and not self.config.tie_word_embeddings:
+ if self.get_output_embeddings() is not None and not False:
+ old_lm_head = self.get_output_embeddings()
+ new_lm_head = self._get_resized_lm_head(old_lm_head, new_num_tokens)
+ # if hasattr(old_lm_head, "_hf_hook"):
+ # hook = old_lm_head._hf_hook
+ # add_hook_to_module(new_lm_head, hook)
+ old_lm_head_requires_grad = old_lm_head.weight.requires_grad
+ new_lm_head.requires_grad_(old_lm_head_requires_grad)
+ self.set_output_embeddings(new_lm_head)
+
+ return self.get_input_embeddings()
+
+ def _get_resized_embeddings(
+ self,
+ old_embeddings: nn.Embedding,
+ new_num_tokens: Optional[int] = None,
+ pad_to_multiple_of: Optional[int] = None,
+ ) -> nn.Embedding:
+ """
+ Build a resized Embedding Module from a provided token Embedding Module. Increasing the size will add newly
+ initialized vectors at the end. Reducing the size will remove vectors from the end
+
+ Args:
+ old_embeddings (`torch.nn.Embedding`):
+ Old embeddings to be resized.
+ new_num_tokens (`int`, *optional*):
+ New number of tokens in the embedding matrix.
+
+ Increasing the size will add newly initialized vectors at the end. Reducing the size will remove
+ vectors from the end. If not provided or `None`, just returns a pointer to the input tokens
+ `torch.nn.Embedding` module of the model without doing anything.
+ pad_to_multiple_of (`int`, *optional*):
+ If set will pad the embedding matrix to a multiple of the provided value. If `new_num_tokens` is set to
+ `None` will just pad the embedding to a multiple of `pad_to_multiple_of`.
+
+ This is especially useful to enable the use of Tensor Cores on NVIDIA hardware with compute capability
+ `>= 7.5` (Volta), or on TPUs which benefit from having sequence lengths be a multiple of 128. For more
+ details about this, or help on choosing the correct value for resizing, refer to this guide:
+ https://docs.nvidia.com/deeplearning/performance/dl-performance-matrix-multiplication/index.html#requirements-tc
+
+
+ Return:
+ `torch.nn.Embedding`: Pointer to the resized Embedding Module or the old Embedding Module if
+ `new_num_tokens` is `None`
+ """
+
+ if pad_to_multiple_of is not None:
+ if not isinstance(pad_to_multiple_of, int):
+ raise ValueError(
+ f"Asking to pad the embedding matrix to a multiple of `{pad_to_multiple_of}`, which is not and integer. Please make sure to pass an integer"
+ )
+ if new_num_tokens is None:
+ new_num_tokens = old_embeddings.weight.shape[0]
+ new_num_tokens = ((new_num_tokens + pad_to_multiple_of - 1) // pad_to_multiple_of) * pad_to_multiple_of
+ else:
+ print(
+ "You are resizing the embedding layer without providing a `pad_to_multiple_of` parameter. This means that the new embedding"
+ f" dimension will be {new_num_tokens}. This might induce some performance reduction as *Tensor Cores* will not be available."
+ " For more details about this, or help on choosing the correct value for resizing, refer to this guide:"
+ " https://docs.nvidia.com/deeplearning/performance/dl-performance-matrix-multiplication/index.html#requirements-tc"
+ )
+
+ if new_num_tokens is None:
+ return old_embeddings
+
+ # if is_deepspeed_zero3_enabled():
+ if False:
+ import deepspeed
+
+ with deepspeed.zero.GatheredParameters(old_embeddings.weight, modifier_rank=None):
+ old_num_tokens, old_embedding_dim = old_embeddings.weight.size()
+ else:
+ old_num_tokens, old_embedding_dim = old_embeddings.weight.size()
+
+ # if old_num_tokens == new_num_tokens and not is_deepspeed_zero3_enabled():
+ if old_num_tokens == new_num_tokens and not False:
+ return old_embeddings
+
+ if not isinstance(old_embeddings, nn.Embedding):
+ raise TypeError(
+ f"Old embeddings are of type {type(old_embeddings)}, which is not an instance of {nn.Embedding}. You"
+ " should either use a different resize function or make sure that `old_embeddings` are an instance of"
+ f" {nn.Embedding}."
+ )
+
+ # Build new embeddings
+
+ # When using DeepSpeed ZeRO-3, we shouldn't create new embeddings with DeepSpeed init
+ # because the shape of the new embedding layer is used across various modeling files
+ # as well as to update config vocab size. Shape will be 0 when using DeepSpeed init leading
+ # to errors when training.
+ new_embeddings = nn.Embedding(
+ new_num_tokens,
+ old_embedding_dim,
+ device=old_embeddings.weight.device,
+ dtype=old_embeddings.weight.dtype,
+ )
+
+ # initialize all new embeddings (in particular added tokens)
+ self._init_weights(new_embeddings)
+
+ # Copy token embeddings from the previous weights
+
+ # numbers of tokens to copy
+ n = min(old_num_tokens, new_num_tokens)
+
+ # if is_deepspeed_zero3_enabled():
+ if False:
+ import deepspeed
+
+ params = [old_embeddings.weight, new_embeddings.weight]
+ with deepspeed.zero.GatheredParameters(params, modifier_rank=0):
+ new_embeddings.weight.data[:n, :] = old_embeddings.weight.data[:n, :]
+ else:
+ new_embeddings.weight.data[:n, :] = old_embeddings.weight.data[:n, :]
+
+ return new_embeddings
+
+
+ def _get_resized_lm_head(
+ self, old_lm_head: nn.Linear, new_num_tokens: Optional[int] = None, transposed: Optional[bool] = False
+ ) -> nn.Linear:
+ """
+ Build a resized Linear Module from a provided old Linear Module. Increasing the size will add newly initialized
+ vectors at the end. Reducing the size will remove vectors from the end
+
+ Args:
+ old_lm_head (`torch.nn.Linear`):
+ Old lm head liner layer to be resized.
+ new_num_tokens (`int`, *optional*):
+ New number of tokens in the linear matrix.
+
+ Increasing the size will add newly initialized vectors at the end. Reducing the size will remove
+ vectors from the end. If not provided or `None`, just returns a pointer to the input tokens
+ `torch.nn.Linear` module of the model without doing anything. transposed (`bool`, *optional*, defaults
+ to `False`): Whether `old_lm_head` is transposed or not. If True `old_lm_head.size()` is `lm_head_dim,
+ vocab_size` else `vocab_size, lm_head_dim`.
+
+ Return:
+ `torch.nn.Linear`: Pointer to the resized Linear Module or the old Linear Module if `new_num_tokens` is
+ `None`
+ """
+ if new_num_tokens is None:
+ return old_lm_head
+
+ # if is_deepspeed_zero3_enabled():
+ if False:
+ import deepspeed
+
+ with deepspeed.zero.GatheredParameters(old_lm_head.weight, modifier_rank=None):
+ old_num_tokens, old_lm_head_dim = (
+ old_lm_head.weight.size() if not transposed else old_lm_head.weight.t().size()
+ )
+ else:
+ old_num_tokens, old_lm_head_dim = (
+ old_lm_head.weight.size() if not transposed else old_lm_head.weight.t().size()
+ )
+
+ # if old_num_tokens == new_num_tokens and not is_deepspeed_zero3_enabled():
+ if old_num_tokens == new_num_tokens and not False:
+ return old_lm_head
+
+ if not isinstance(old_lm_head, nn.Linear):
+ raise TypeError(
+ f"Old language model head is of type {type(old_lm_head)}, which is not an instance of {nn.Linear}. You"
+ " should either use a different resize function or make sure that `old_lm_head` are an instance of"
+ f" {nn.Linear}."
+ )
+
+ # Build new lm head
+ new_lm_head_shape = (old_lm_head_dim, new_num_tokens) if not transposed else (new_num_tokens, old_lm_head_dim)
+ has_new_lm_head_bias = old_lm_head.bias is not None
+
+ # When using DeepSpeed ZeRO-3, we shouldn't create new embeddings with DeepSpeed init
+ # because the shape of the new embedding layer is used across various modeling files
+ # as well as to update config vocab size. Shape will be 0 when using DeepSpeed init leading
+ # to errors when training.
+ new_lm_head = nn.Linear(
+ *new_lm_head_shape,
+ bias=has_new_lm_head_bias,
+ device=old_lm_head.weight.device,
+ dtype=old_lm_head.weight.dtype,
+ )
+
+ # initialize new lm head (in particular added tokens)
+ self._init_weights(new_lm_head)
+
+ num_tokens_to_copy = min(old_num_tokens, new_num_tokens)
+
+ # if is_deepspeed_zero3_enabled():
+ if False:
+ import deepspeed
+
+ params = [old_lm_head.weight, old_lm_head.bias, new_lm_head.weight, new_lm_head.bias]
+ with deepspeed.zero.GatheredParameters(params, modifier_rank=0):
+ self._copy_lm_head_original_to_resized(
+ new_lm_head, old_lm_head, num_tokens_to_copy, transposed, has_new_lm_head_bias
+ )
+ else:
+ self._copy_lm_head_original_to_resized(
+ new_lm_head, old_lm_head, num_tokens_to_copy, transposed, has_new_lm_head_bias
+ )
+
+ return new_lm_head
+
+ def _copy_lm_head_original_to_resized(
+ self, new_lm_head, old_lm_head, num_tokens_to_copy, transposed, has_new_lm_head_bias
+ ):
+ # Copy old lm head weights to new lm head
+ if not transposed:
+ new_lm_head.weight.data[:num_tokens_to_copy, :] = old_lm_head.weight.data[:num_tokens_to_copy, :]
+ else:
+ new_lm_head.weight.data[:, :num_tokens_to_copy] = old_lm_head.weight.data[:, :num_tokens_to_copy]
+
+ # Copy bias weights to new lm head
+ if has_new_lm_head_bias:
+ new_lm_head.bias.data[:num_tokens_to_copy] = old_lm_head.bias.data[:num_tokens_to_copy]
+
+ @classmethod
+ def from_name(cls, name: str) -> Self:
+ return cls(LLaMAHFConfig.from_name(name))
+
+
+class Block(nn.Module):
+ def __init__(self, config: LLaMAHFConfig) -> None:
+ super().__init__()
+ self.rms_1 = RMSNorm(config.n_embd)
+
+ # sentence level:
+ self.attn = CausalSelfAttention(config)
+ self.rms_2 = RMSNorm(config.n_embd)
+ self.mlp = MLP(config)
+
+ def forward(self, x: torch.Tensor, last_past=None, use_cache=False, return_attention=False) -> torch.Tensor:
+ if use_cache:
+ if return_attention:
+ a, attn = self.attn.forward_attn(self.rms_1(x), last_past, use_cache)
+ else:
+ a, present = self.attn(self.rms_1(x), last_past, use_cache)
+ x = x + a
+ else:
+ if return_attention:
+ a, attn = self.attn.forward_attn(self.rms_1(x))
+ else:
+ a = self.attn(self.rms_1(x))
+ x = x + a
+ x = x + self.mlp(self.rms_2(x))
+
+ if use_cache:
+ if return_attention:
+ return x, present, attn
+ else:
+ return x, present
+ else:
+ if return_attention:
+ return x, attn
+ else:
+ return x
+
+
+class CausalSelfAttention(nn.Module):
+ def __init__(self, config: LLaMAHFConfig) -> None:
+ super().__init__()
+ assert config.n_embd % config.n_head == 0
+
+ # key, query, value projections for all heads, but in a batch
+ self.c_attn = nn.Linear(config.n_embd, 3 * config.n_embd, bias=False)
+ # output projection
+ self.c_proj = nn.Linear(config.n_embd, config.n_embd, bias=False)
+
+ self.n_head = config.n_head
+ self.n_embd = config.n_embd
+ self.block_size = config.block_size
+ self.rope_cache = None
+
+ def scaling_factor(sequence_threshold):
+ return np.log2((sequence_threshold**2) - sequence_threshold)
+ scale_init = scaling_factor(self.block_size)
+ self.scale = nn.Parameter(torch.tensor(scale_init))
+
+ def forward(self, x: torch.Tensor, last_past=None, use_cache=False) -> torch.Tensor:
+ B, T, C = x.size() # batch size, sequence length, embedding dimensionality (n_embd)
+
+ # calculate query, key, values for all heads in batch and move head forward to be the batch dim
+ q, k, v = self.c_attn(x).split(self.n_embd, dim=2)
+
+ head_size = C // self.n_head
+ k = k.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+ q = q.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+ v = v.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+
+ # kv_cache
+ if use_cache:
+ if last_past is not None:
+ past_key, past_value = last_past
+ k = torch.cat([past_key, k], dim=-2)
+ v = torch.cat([past_value, v], dim=-2)
+ # else:
+ # key_states = k
+ # value_states = v
+
+ if use_cache:
+ present = (k, v)
+ else:
+ present = None
+
+ # QK-Norm
+ q = F.normalize(q, p=2, dim=-1)
+ k = F.normalize(k, p=2, dim=-1)
+
+ if self.rope_cache is None:
+ # cache for future forward calls
+ self.rope_cache = build_rope_cache(
+ seq_len=self.block_size,
+ n_elem=self.n_embd // self.n_head,
+ dtype=x.dtype,
+ device=x.device,
+ )
+
+
+ q = apply_rope(q, self.rope_cache)
+ k = apply_rope(k, self.rope_cache)
+
+
+
+ # causal self-attention; Self-attend: (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T)
+ # att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1)))
+ # att = att.masked_fill(self.bias[:,:,:T,:T] == 0, float('-inf'))
+ # att = F.softmax(att, dim=-1)
+ # y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs)
+
+ # efficient attention using Flash Attention CUDA kernels
+ y = F.scaled_dot_product_attention(q, k, v, attn_mask=None, dropout_p=0.0, is_causal=True, scale=self.scale.item())
+
+ y = y.transpose(1, 2).contiguous().view(B, T, C) # re-assemble all head outputs side by side
+
+ # output projection
+ y = self.c_proj(y)
+
+
+ if use_cache:
+ return y, present
+ return y
+
+ def forward_attn(self, x: torch.Tensor, last_past=None, use_cache=False) -> torch.Tensor:
+ B, T, C = x.size() # batch size, sequence length, embedding dimensionality (n_embd)
+
+ # calculate query, key, values for all heads in batch and move head forward to be the batch dim
+ q, k, v = self.c_attn(x).split(self.n_embd, dim=2)
+
+ head_size = C // self.n_head
+ k = k.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+ q = q.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+ v = v.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+
+ # kv_cache
+ if use_cache:
+ if last_past is not None:
+ past_key, past_value = last_past
+ k = torch.cat([past_key, k], dim=-2)
+ v = torch.cat([past_value, v], dim=-2)
+ # else:
+ # key_states = k
+ # value_states = v
+
+ if use_cache:
+ present = (k, v)
+ else:
+ present = None
+
+ # QK-Norm
+ q = F.normalize(q, p=2, dim=-1)
+ k = F.normalize(k, p=2, dim=-1)
+
+ if self.rope_cache is None:
+ # cache for future forward calls
+ self.rope_cache = build_rope_cache(
+ seq_len=self.block_size,
+ n_elem=self.n_embd // self.n_head,
+ dtype=x.dtype,
+ device=x.device,
+ )
+
+
+ q = apply_rope(q, self.rope_cache)
+ k = apply_rope(k, self.rope_cache)
+
+
+ att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1)))
+ att = F.softmax(att, dim=-1) # [B, n_head, T, T]
+
+ # efficient attention using Flash Attention CUDA kernels
+ y = F.scaled_dot_product_attention(q, k, v, attn_mask=None, dropout_p=0.0, is_causal=True)
+ y = y.transpose(1, 2).contiguous().view(B, T, C) # re-assemble all head outputs side by side
+
+ # output projection
+ y = self.c_proj(y)
+
+ return y, att
+
+class LengthCausalSelfAttention(nn.Module):
+ def __init__(self, config: LLaMAHFConfig) -> None:
+ super().__init__()
+ assert config.n_embd % config.n_head == 0
+
+ # key, query, value projections for all heads, but in a batch
+ self.c_attn = nn.Linear(config.n_embd, 3 * config.n_embd, bias=False)
+ # output projection
+ self.c_proj = nn.Linear(config.n_embd, config.n_embd, bias=False)
+
+ self.n_head = config.n_head
+ self.n_embd = config.n_embd
+ self.block_size = config.block_size
+ self.rope_cache = None
+
+ def forward(self, x: torch.Tensor, y_mask: torch.Tensor) -> torch.Tensor:
+ B, T, C = x.size() # batch size, sequence length, embedding dimensionality (n_embd)
+
+ # calculate query, key, values for all heads in batch and move head forward to be the batch dim
+ q, k, v = self.c_attn(x).split(self.n_embd, dim=2)
+
+ head_size = C // self.n_head
+ k = k.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+ q = q.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+ v = v.view(B, T, self.n_head, head_size).transpose(1, 2) # (B, nh, T, hs)
+
+ if self.rope_cache is None:
+ # cache for future forward calls
+ self.rope_cache = build_rope_cache(
+ seq_len=self.block_size,
+ n_elem=self.n_embd // self.n_head,
+ dtype=x.dtype,
+ device=x.device,
+ )
+
+
+ # q: 1, 16, 40 ,64
+ # q: 128, 16, 106, 64
+ q = apply_rope(q, self.rope_cache)
+ k = apply_rope(k, self.rope_cache)
+
+ attn_mask = torch.ones(T, T, dtype=torch.bool, device=x.device)
+ attn_mask = torch.tril(attn_mask)
+ attn_mask = attn_mask.unsqueeze(0).expand(B, -1, -1)
+
+ text_mask = y_mask.unsqueeze(2)*y_mask.unsqueeze(1)
+ text_mask = F.pad(text_mask, (0, T-y_mask.shape[1], 0, T-y_mask.shape[1]), mode='constant', value=0)
+ attn_mask = torch.logical_or(attn_mask, text_mask)
+
+ y = F.scaled_dot_product_attention(q, k, v, attn_mask=attn_mask.unsqueeze(1), dropout_p=0.0, is_causal=False)
+
+ y = y.transpose(1, 2).contiguous().view(B, T, C)
+
+
+ y = self.c_proj(y)
+
+ return y
+
+
+class MLP(nn.Module):
+ def __init__(self, config: LLaMAHFConfig) -> None:
+ super().__init__()
+ hidden_dim = 4 * config.n_embd
+ n_hidden = int(2 * hidden_dim / 3)
+ N = 256
+ # ensure n_hidden is multiple of N
+ n_hidden = ((n_hidden - 1) // N) * N + N
+
+ self.c_fc1 = nn.Linear(config.n_embd, n_hidden, bias=False)
+ self.c_fc2 = nn.Linear(config.n_embd, n_hidden, bias=False)
+ self.c_proj = nn.Linear(n_hidden, config.n_embd, bias=False)
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+
+ x = F.silu(self.c_fc1(x)) * self.c_fc2(x)
+ x = self.c_proj(x)
+ return x
+
+
+class RMSNorm(nn.Module):
+ """Root Mean Square Layer Normalization.
+
+ Derived from https://github.com/bzhangGo/rmsnorm/blob/master/rmsnorm_torch.py. BSD 3-Clause License:
+ https://github.com/bzhangGo/rmsnorm/blob/master/LICENSE.
+ """
+
+ def __init__(self, size: int, dim: int = -1, eps: float = 1e-5) -> None:
+ super().__init__()
+ self.scale = nn.Parameter(torch.ones(size))
+ self.eps = eps
+ self.dim = dim
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ # NOTE: the original RMSNorm paper implementation is not equivalent
+ # norm_x = x.norm(2, dim=self.dim, keepdim=True)
+ # rms_x = norm_x * d_x ** (-1. / 2)
+ # x_normed = x / (rms_x + self.eps)
+ norm_x = torch.mean(x * x, dim=self.dim, keepdim=True)
+ x_normed = x * torch.rsqrt(norm_x + self.eps)
+ return self.scale * x_normed
+
+
+def build_rope_cache(seq_len: int, n_elem: int, dtype: torch.dtype, device: torch.device, base: int = 10000) -> torch.Tensor:
+ """Enhanced Transformer with Rotary Position Embedding.
+
+ Derived from: https://github.com/labmlai/annotated_deep_learning_paper_implementations/blob/master/labml_nn/
+ transformers/rope/__init__.py. MIT License:
+ https://github.com/labmlai/annotated_deep_learning_paper_implementations/blob/master/license.
+ """
+ # $\Theta = {\theta_i = 10000^{\frac{2(i-1)}{d}}, i \in [1, 2, ..., \frac{d}{2}]}$
+ theta = 1.0 / (base ** (torch.arange(0, n_elem, 2, dtype=dtype, device=device) / n_elem))
+
+ # Create position indexes `[0, 1, ..., seq_len - 1]`
+ seq_idx = torch.arange(seq_len, dtype=dtype, device=device)
+
+ # Calculate the product of position index and $\theta_i$
+ idx_theta = torch.outer(seq_idx, theta)
+
+ # Compute cache. Because polar only takes float32 or float64, we need to cast
+ # when working with 16 bit floats (float16 or bfloat16)
+ dtypes_requiring_casting = [torch.float16, torch.bfloat16, torch.int8]
+ working_dtype = (
+ torch.float32 if dtype in dtypes_requiring_casting else dtype
+ )
+ complex_dtype = (
+ torch.complex32 if dtype in dtypes_requiring_casting else torch.complex64
+ )
+ cache = torch.polar(
+ torch.ones_like(idx_theta).to(working_dtype), idx_theta.to(working_dtype)
+ ).to(complex_dtype)
+ return cache
+
+
+def apply_rope(x: torch.Tensor, rope_cache: torch.Tensor) -> torch.Tensor:
+ x = x.transpose(1, 2)
+
+ # truncate to support variable sizes
+ T = x.size(1)
+ rope_cache = rope_cache[:T]
+ # cast because `view_as_complex` does not support 16 bit tensors
+ xc = torch.view_as_complex(x.float().reshape(*x.shape[:-1], -1, 2))
+ rope_cache = rope_cache.view(1, xc.size(1), 1, xc.size(3))
+ x_out = torch.view_as_real(xc * rope_cache).flatten(3)
+ return x_out.transpose(1, 2).type_as(x)
\ No newline at end of file
diff --git a/models/resnet.py b/models/resnet.py
new file mode 100644
index 0000000000000000000000000000000000000000..7fac134054d07728b75a2ddd603bd96c0c47343c
--- /dev/null
+++ b/models/resnet.py
@@ -0,0 +1,160 @@
+import torch.nn as nn
+import torch
+
+class nonlinearity(nn.Module):
+ def __init__(self):
+ super().__init__()
+
+ def forward(self, x):
+ # swish
+ return x * torch.sigmoid(x)
+
+class ResConv1DBlock(nn.Module):
+ def __init__(self, n_in, n_state, dilation=1, activation='silu', norm=None, dropout=None):
+ super().__init__()
+ padding = dilation
+ self.norm = norm
+ if norm == "LN":
+ self.norm1 = nn.LayerNorm(n_in)
+ self.norm2 = nn.LayerNorm(n_in)
+ elif norm == "GN":
+ self.norm1 = nn.GroupNorm(num_groups=32, num_channels=n_in, eps=1e-6, affine=True)
+ self.norm2 = nn.GroupNorm(num_groups=32, num_channels=n_in, eps=1e-6, affine=True)
+ elif norm == "BN":
+ self.norm1 = nn.BatchNorm1d(num_features=n_in, eps=1e-6, affine=True)
+ self.norm2 = nn.BatchNorm1d(num_features=n_in, eps=1e-6, affine=True)
+
+ else:
+ self.norm1 = nn.Identity()
+ self.norm2 = nn.Identity()
+
+ if activation == "relu":
+ self.activation1 = nn.ReLU()
+ self.activation2 = nn.ReLU()
+
+ elif activation == "silu":
+ self.activation1 = nonlinearity()
+ self.activation2 = nonlinearity()
+
+ elif activation == "gelu":
+ self.activation1 = nn.GELU()
+ self.activation2 = nn.GELU()
+
+
+ self.conv1 = nn.Conv1d(n_in, n_state, 3, 1, padding, dilation)
+ self.conv2 = nn.Conv1d(n_state, n_in, 1, 1, 0,)
+
+
+ def forward(self, x):
+ x_orig = x
+ if self.norm == "LN":
+ x = self.norm1(x.transpose(-2, -1))
+ x = self.activation1(x.transpose(-2, -1))
+ else:
+ x = self.norm1(x)
+ x = self.activation1(x)
+
+ x = self.conv1(x)
+
+ if self.norm == "LN":
+ x = self.norm2(x.transpose(-2, -1))
+ x = self.activation2(x.transpose(-2, -1))
+ else:
+ x = self.norm2(x)
+ x = self.activation2(x)
+
+ x = self.conv2(x)
+ x = x + x_orig
+ return x
+
+class Resnet1D(nn.Module):
+ def __init__(self, n_in, n_depth, dilation_growth_rate=1, reverse_dilation=True, activation='relu', norm=None):
+ super().__init__()
+
+ blocks = [ResConv1DBlock(n_in, n_in, dilation=dilation_growth_rate ** depth, activation=activation, norm=norm) for depth in range(n_depth)]
+ if reverse_dilation:
+ blocks = blocks[::-1]
+
+ self.model = nn.Sequential(*blocks)
+
+ def forward(self, x):
+ return self.model(x)
+
+
+
+class CausalResConv1DBlock(nn.Module):
+ def __init__(self, n_in, n_state, dilation=1, activation='silu', norm=None, dropout=None):
+ super().__init__()
+ self.norm = norm
+ if norm == "LN":
+ self.norm1 = nn.LayerNorm(n_in)
+ self.norm2 = nn.LayerNorm(n_in)
+ elif norm == "GN":
+ self.norm1 = nn.GroupNorm(num_groups=32, num_channels=n_in, eps=1e-6, affine=True)
+ self.norm2 = nn.GroupNorm(num_groups=32, num_channels=n_in, eps=1e-6, affine=True)
+ elif norm == "BN":
+ self.norm1 = nn.BatchNorm1d(num_features=n_in, eps=1e-6, affine=True)
+ self.norm2 = nn.BatchNorm1d(num_features=n_in, eps=1e-6, affine=True)
+ else:
+ self.norm1 = nn.Identity()
+ self.norm2 = nn.Identity()
+
+ if activation == "relu":
+ self.activation1 = nn.ReLU()
+ self.activation2 = nn.ReLU()
+ elif activation == "silu":
+ self.activation1 = nonlinearity()
+ self.activation2 = nonlinearity()
+ elif activation == "gelu":
+ self.activation1 = nn.GELU()
+ self.activation2 = nn.GELU()
+
+ self.left_padding = (3 - 1) * dilation
+
+ self.conv1 = nn.Conv1d(n_in, n_state, kernel_size=3, stride=1, padding=0, dilation=dilation)
+ self.conv2 = nn.Conv1d(n_state, n_in, kernel_size=1, stride=1, padding=0)
+
+ def forward(self, x):
+ x_orig = x
+ if self.norm == "LN":
+ x = self.norm1(x.transpose(-2, -1)).transpose(-2, -1)
+ x = self.activation1(x)
+ else:
+ x = self.norm1(x)
+ x = self.activation1(x)
+
+ x = nn.functional.pad(x, (self.left_padding, 0))
+
+ x = self.conv1(x)
+
+ if self.norm == "LN":
+ x = self.norm2(x.transpose(-2, -1)).transpose(-2, -1)
+ x = self.activation2(x)
+ else:
+ x = self.norm2(x)
+ x = self.activation2(x)
+
+ x = self.conv2(x)
+ x = x + x_orig
+ return x
+
+class CausalResnet1D(nn.Module):
+ def __init__(self, n_in, n_depth, dilation_growth_rate=1, reverse_dilation=True, activation='relu', norm=None):
+ super().__init__()
+
+ blocks = [
+ CausalResConv1DBlock(
+ n_in,
+ n_in,
+ dilation=dilation_growth_rate ** depth,
+ activation=activation,
+ norm=norm
+ ) for depth in range(n_depth)
+ ]
+ if reverse_dilation:
+ blocks = blocks[::-1]
+
+ self.model = nn.Sequential(*blocks)
+
+ def forward(self, x):
+ return self.model(x)
\ No newline at end of file
diff --git a/models/tae.py b/models/tae.py
new file mode 100644
index 0000000000000000000000000000000000000000..f610c6895c4857da74a566e355736ac86338ff5a
--- /dev/null
+++ b/models/tae.py
@@ -0,0 +1,94 @@
+import torch.nn as nn
+from models.causal_cnn import CausalEncoder, CausalDecoder
+
+
+# Causal TAE:
+class Causal_TAE(nn.Module):
+ def __init__(self,
+ hidden_size=1024,
+ down_t=2,
+ stride_t=2,
+ width=1024,
+ depth=3,
+ dilation_growth_rate=3,
+ activation='relu',
+ norm=None,
+ latent_dim=16,
+ clip_range = []
+ ):
+
+ super().__init__()
+
+ self.decode_proj = nn.Linear(latent_dim, width)
+
+ self.encoder = CausalEncoder(272, hidden_size, down_t, stride_t, width, depth, dilation_growth_rate, activation=activation, norm=norm, latent_dim=latent_dim, clip_range=clip_range)
+ self.decoder = CausalDecoder(272, hidden_size, down_t, stride_t, width, depth, dilation_growth_rate, activation=activation, norm=norm)
+
+
+
+ def preprocess(self, x):
+ x = x.permute(0,2,1).float()
+ return x
+
+
+ def postprocess(self, x):
+ x = x.permute(0,2,1)
+ return x
+
+
+ def encode(self, x):
+ x_in = self.preprocess(x)
+ x_encoder, mu, logvar = self.encoder(x_in)
+ x_encoder = self.postprocess(x_encoder)
+ x_encoder = x_encoder.contiguous().view(-1, x_encoder.shape[-1])
+
+ return x_encoder, mu, logvar
+
+
+ def forward(self, x):
+ x_in = self.preprocess(x)
+ # Encode
+ x_encoder, mu, logvar = self.encoder(x_in)
+ x_encoder = self.decode_proj(x_encoder)
+ # decoder
+ x_decoder = self.decoder(x_encoder)
+ x_out = self.postprocess(x_decoder)
+ return x_out, mu, logvar
+
+
+ def forward_decoder(self, x):
+ # decoder
+ x_width = self.decode_proj(x)
+ x_decoder = self.decoder(x_width)
+ x_out = self.postprocess(x_decoder)
+ return x_out
+
+
+class Causal_HumanTAE(nn.Module):
+ def __init__(self,
+ hidden_size=1024,
+ down_t=2,
+ stride_t=2,
+ depth=3,
+ dilation_growth_rate=3,
+ activation='relu',
+ norm=None,
+ latent_dim=16,
+ clip_range = []
+ ):
+
+ super().__init__()
+ self.tae = Causal_TAE(hidden_size, down_t, stride_t, hidden_size, depth, dilation_growth_rate, activation=activation, norm=norm, latent_dim=latent_dim, clip_range=clip_range)
+
+ def encode(self, x):
+ h, mu, logvar = self.tae.encode(x)
+ return h, mu, logvar
+
+ def forward(self, x):
+ x_out, mu, logvar = self.tae(x)
+ return x_out, mu, logvar
+
+ def forward_decoder(self, x):
+ x_out = self.tae.forward_decoder(x)
+ return x_out
+
\ No newline at end of file
diff --git a/options/__pycache__/option_tae.cpython-39.pyc b/options/__pycache__/option_tae.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..6343bddde9c1a12727193f30190f8481ba9c97ba
Binary files /dev/null and b/options/__pycache__/option_tae.cpython-39.pyc differ
diff --git a/options/__pycache__/option_transformer.cpython-39.pyc b/options/__pycache__/option_transformer.cpython-39.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..3ea1734e680b6b3229a6e80dbe73b89552914618
Binary files /dev/null and b/options/__pycache__/option_transformer.cpython-39.pyc differ
diff --git a/options/option_tae.py b/options/option_tae.py
new file mode 100644
index 0000000000000000000000000000000000000000..b04f830a7e66e158ae5c1822c37c39eabdbd5d72
--- /dev/null
+++ b/options/option_tae.py
@@ -0,0 +1,51 @@
+import argparse
+
+def get_args_parser():
+ parser = argparse.ArgumentParser(description='Optimal Transport AutoEncoder training for AIST',
+ add_help=True,
+ formatter_class=argparse.ArgumentDefaultsHelpFormatter)
+
+ ## dataloader
+ parser.add_argument('--dataname', type=str, default='t2m_272', help='dataset directory')
+ parser.add_argument('--batch-size', default=128, type=int, help='batch size')
+ parser.add_argument('--window-size', type=int, default=64, help='training motion length')
+
+ ## optimization
+ parser.add_argument('--total-iter', default=2000000, type=int, help='number of total iterations to run')
+ parser.add_argument('--warm-up-iter', default=1000, type=int, help='number of total iterations for warmup')
+ parser.add_argument('--lr', default=5e-5, type=float, help='max learning rate')
+ parser.add_argument('--lr-scheduler', default=[50000, 400000], nargs="+", type=int, help="learning rate schedule (iterations)")
+ parser.add_argument('--gamma', default=0.05, type=float, help="learning rate decay")
+
+ parser.add_argument('--weight-decay', default=0.0, type=float, help='weight decay')
+
+ # causal TAE architecture
+ parser.add_argument("--down-t", type=int, default=2, help="downsampling rate")
+ parser.add_argument("--stride-t", type=int, default=2, help="stride size")
+ parser.add_argument("--depth", type=int, default=3, help="depth of the network")
+ parser.add_argument("--dilation-growth-rate", type=int, default=3, help="dilation growth rate")
+
+ ## resume
+ parser.add_argument("--resume-pth", type=str, default=None, help='resume pth for causal TAE')
+
+
+ ## output directory
+ parser.add_argument('--out-dir', type=str, default='output/', help='output directory')
+ parser.add_argument('--results-dir', type=str, default='visual_results/', help='output directory')
+ parser.add_argument('--visual-name', type=str, default='vis', help='output directory')
+ parser.add_argument('--exp-name', type=str, default='exp', help='name of the experiment, will create a file inside out-dir')
+ parser.add_argument('--latent_dir', type=str, default='t2m_latents/', help='latent directory')
+ ## other
+ parser.add_argument('--print-iter', default=200, type=int, help='print frequency')
+ parser.add_argument('--eval-iter', default=20000, type=int, help='evaluation frequency')
+ parser.add_argument('--seed', default=123, type=int, help='seed for initializing training.')
+
+ parser.add_argument('--vis-gt', action='store_true', help='whether visualize GT motions')
+ parser.add_argument('--nb-vis', default=20, type=int, help='nb of visualizations')
+ parser.add_argument('--root_loss', default=7.0, type=float, help='root loss')
+ parser.add_argument('--latent_dim', default=16, type=int, help='latent dimension')
+ parser.add_argument('--hidden_size', default=1024, type=int, help='hidden size')
+ parser.add_argument('--nb_joints', default=22, type=int, help='number of joints')
+ parser.add_argument('--num_gpus', default=1, type=int, help='number of GPUs')
+
+ return parser.parse_args()
\ No newline at end of file
diff --git a/options/option_transformer.py b/options/option_transformer.py
new file mode 100644
index 0000000000000000000000000000000000000000..efa152573ed5cd1ca80fac14657a7017155078b7
--- /dev/null
+++ b/options/option_transformer.py
@@ -0,0 +1,41 @@
+import argparse
+
+def get_args_parser():
+ parser = argparse.ArgumentParser(description='options',
+ add_help=True,
+ formatter_class=argparse.ArgumentDefaultsHelpFormatter)
+
+ parser.add_argument('--dataname', type=str, default='t2m_272', help='dataset directory')
+ parser.add_argument('--seed', default=123, type=int, help='seed for initializing training. ')
+ parser.add_argument('--batch_size', default=256, type=int, help='batch size for training. ')
+ parser.add_argument('--latent_dir', type=str, default='latent/', help='latent directory')
+ parser.add_argument("--resume-pth", type=str, default=None, help='resume pth for causal TAE')
+ parser.add_argument("--resume-trans", type=str, default=None, help='resume gpt pth')
+ parser.add_argument('--out-dir', type=str, default='output_GPT_Final/', help='output directory')
+ parser.add_argument('--exp-name', type=str, default='exp', help='name of the experiment, will create a file inside out-dir')
+ parser.add_argument('--hidden_size', default=1024, type=int, help='hidden size')
+ parser.add_argument("--down-t", type=int, default=2, help="downsampling rate")
+ parser.add_argument("--stride-t", type=int, default=2, help="stride size")
+ parser.add_argument("--depth", type=int, default=3, help="depth of the network")
+ parser.add_argument("--dilation-growth-rate", type=int, default=3, help="dilation growth rate")
+
+ parser.add_argument('--num_diffusion_head_layers', type=int, default=9, help='number of diffusion head layers')
+ parser.add_argument('--latent_dim', type=int, default=16, help='latent dimension')
+ parser.add_argument('--total_iter', type=int, default=100000, help='total iteration')
+ parser.add_argument('--lr', default=1e-4, type=float, help='max learning rate')
+ parser.add_argument('--gamma', default=0.05, type=float, help="learning rate decay")
+
+ parser.add_argument('--decay-option',default='all', type=str, choices=['all'], help='weight decay option')
+ parser.add_argument('--weight-decay', default=1e-6, type=float, help='weight decay')
+ parser.add_argument('--optimizer',default='adamw', type=str, choices=['adam', 'adamw'], help='optimizer')
+
+ parser.add_argument('--num_gpus', default=1, type=int, help='number of GPUs')
+ parser.add_argument('--total-iter', default=2000000, type=int, help='number of total iterations to run')
+ parser.add_argument('--batch-size', default=256, type=int, help='batch size')
+
+ parser.add_argument('--text', type=str, default='A man is jogging around.')
+ parser.add_argument('--mode', type=str, default='pos', choices=['pos', 'rot'], help='recover mode, pos: position, rot: rotation')
+
+
+
+ return parser.parse_args()
\ No newline at end of file
diff --git a/reference_end_latent_t2m_272.npy b/reference_end_latent_t2m_272.npy
new file mode 100644
index 0000000000000000000000000000000000000000..740cafd7a48648a88b3617f6ad16ce494dc82401
--- /dev/null
+++ b/reference_end_latent_t2m_272.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c47575a54f3d46152634f3103579738ba5dec7b0d90732be00efea2fcc043006
+size 192
diff --git a/reference_end_latent_t2m_babel_272.npy b/reference_end_latent_t2m_babel_272.npy
new file mode 100644
index 0000000000000000000000000000000000000000..66a11ec90bc7590b4b9359da6ab0d5f670fadd92
--- /dev/null
+++ b/reference_end_latent_t2m_babel_272.npy
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7f7f675e95809dc6323bf59520853b138da7d99a9c279713a4a828628e33b162
+size 192
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e19598e3d3cc573e2e5dfedd07ef4595fbb4cc25
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,17 @@
+smplx==0.1.28
+transformers==4.56.2
+timm==1.0.12
+sentence-transformers==5.1.0
+clip @ git+https://github.com/openai/CLIP.git@main#egg=clip
+human-body-prior @ git+https://github.com/nghorbani/human_body_prior.git@master#egg=human-body-prior
+gdown
+chumpy==0.70
+scipy==1.7.1
+numpy==1.22.4
+tensorboard
+accelerate
+flash_attn
+matplotlib==3.4.3
+matplotlib-inline==0.1.2
+imageio==2.9.0
+imageio-ffmpeg==0.5.1
\ No newline at end of file
diff --git a/sentencet5-xxl/.gitattributes b/sentencet5-xxl/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..2bf99854609538f90af03c921c41a0cbde670b2f
--- /dev/null
+++ b/sentencet5-xxl/.gitattributes
@@ -0,0 +1,28 @@
+*.7z filter=lfs diff=lfs merge=lfs -text
+*.arrow filter=lfs diff=lfs merge=lfs -text
+*.bin filter=lfs diff=lfs merge=lfs -text
+*.bin.* filter=lfs diff=lfs merge=lfs -text
+*.bz2 filter=lfs diff=lfs merge=lfs -text
+*.ftz filter=lfs diff=lfs merge=lfs -text
+*.gz filter=lfs diff=lfs merge=lfs -text
+*.h5 filter=lfs diff=lfs merge=lfs -text
+*.joblib filter=lfs diff=lfs merge=lfs -text
+*.lfs.* filter=lfs diff=lfs merge=lfs -text
+*.model filter=lfs diff=lfs merge=lfs -text
+*.msgpack filter=lfs diff=lfs merge=lfs -text
+*.onnx filter=lfs diff=lfs merge=lfs -text
+*.ot filter=lfs diff=lfs merge=lfs -text
+*.parquet filter=lfs diff=lfs merge=lfs -text
+*.pb filter=lfs diff=lfs merge=lfs -text
+*.pt filter=lfs diff=lfs merge=lfs -text
+*.pth filter=lfs diff=lfs merge=lfs -text
+*.rar filter=lfs diff=lfs merge=lfs -text
+saved_model/**/* filter=lfs diff=lfs merge=lfs -text
+*.tar.* filter=lfs diff=lfs merge=lfs -text
+*.tflite filter=lfs diff=lfs merge=lfs -text
+*.tgz filter=lfs diff=lfs merge=lfs -text
+*.xz filter=lfs diff=lfs merge=lfs -text
+*.zip filter=lfs diff=lfs merge=lfs -text
+*.zstandard filter=lfs diff=lfs merge=lfs -text
+*tfevents* filter=lfs diff=lfs merge=lfs -text
+model.safetensors filter=lfs diff=lfs merge=lfs -text
diff --git a/sentencet5-xxl/1_Pooling/config.json b/sentencet5-xxl/1_Pooling/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..4e09f293dfe90bba49f87cfe7996271f07be2666
--- /dev/null
+++ b/sentencet5-xxl/1_Pooling/config.json
@@ -0,0 +1,7 @@
+{
+ "word_embedding_dimension": 768,
+ "pooling_mode_cls_token": false,
+ "pooling_mode_mean_tokens": true,
+ "pooling_mode_max_tokens": false,
+ "pooling_mode_mean_sqrt_len_tokens": false
+}
\ No newline at end of file
diff --git a/sentencet5-xxl/2_Dense/config.json b/sentencet5-xxl/2_Dense/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1ac48c7b00db621b596c751134187805a19f533
--- /dev/null
+++ b/sentencet5-xxl/2_Dense/config.json
@@ -0,0 +1 @@
+{"in_features": 1024, "out_features": 768, "bias": false, "activation_function": "torch.nn.modules.linear.Identity"}
\ No newline at end of file
diff --git a/sentencet5-xxl/2_Dense/model.safetensors b/sentencet5-xxl/2_Dense/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..602bac1703e2ab74b660481c6eca90d4d7ff1f71
--- /dev/null
+++ b/sentencet5-xxl/2_Dense/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e53b7fcbca02a1e966ed3eeb433b765d30af989b6b6aec44bc6809156456cee3
+size 3145848
diff --git a/sentencet5-xxl/2_Dense/pytorch_model.bin b/sentencet5-xxl/2_Dense/pytorch_model.bin
new file mode 100644
index 0000000000000000000000000000000000000000..3cfe80fb480013cb450a3bbb31ce23968e53508a
--- /dev/null
+++ b/sentencet5-xxl/2_Dense/pytorch_model.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fb330464adabfc4f532e691fe95c62752fb6237748b4617b83fb426b0d427c04
+size 3146680
diff --git a/sentencet5-xxl/README.md b/sentencet5-xxl/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..d97cd2d7acf32e2da39b0f9fac90b40135d7601b
--- /dev/null
+++ b/sentencet5-xxl/README.md
@@ -0,0 +1,45 @@
+---
+language: en
+license: apache-2.0
+library_name: sentence-transformers
+tags:
+- sentence-transformers
+- feature-extraction
+- sentence-similarity
+pipeline_tag: sentence-similarity
+---
+
+# sentence-transformers/sentence-t5-xxl
+
+This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space. The model works well for sentence similarity tasks, but doesn't perform that well for semantic search tasks.
+
+This model was converted from the Tensorflow model [st5-11b-1](https://tfhub.dev/google/sentence-t5/st5-11b/1) to PyTorch. When using this model, have a look at the publication: [Sentence-T5: Scalable sentence encoders from pre-trained text-to-text models](https://arxiv.org/abs/2108.08877). The tfhub model and this PyTorch model can produce slightly different embeddings, however, when run on the same benchmarks, they produce identical results.
+
+The model uses only the encoder from a T5-11B model. The weights are stored in FP16.
+
+
+## Usage (Sentence-Transformers)
+
+Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed:
+
+```
+pip install -U sentence-transformers
+```
+
+Then you can use the model like this:
+
+```python
+from sentence_transformers import SentenceTransformer
+sentences = ["This is an example sentence", "Each sentence is converted"]
+
+model = SentenceTransformer('sentence-transformers/sentence-t5-xxl')
+embeddings = model.encode(sentences)
+print(embeddings)
+```
+
+The model requires sentence-transformers version 2.2.0 or newer.
+
+## Citing & Authors
+
+If you find this model helpful, please cite the respective publication:
+[Sentence-T5: Scalable sentence encoders from pre-trained text-to-text models](https://arxiv.org/abs/2108.08877)
diff --git a/sentencet5-xxl/config.json b/sentencet5-xxl/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..0bee199e0bf0dc5f9466994d8bce22e65c6eb9f8
--- /dev/null
+++ b/sentencet5-xxl/config.json
@@ -0,0 +1,57 @@
+{
+ "_name_or_path": "models/sentence-t5-11b",
+ "architectures": [
+ "T5EncoderModel"
+ ],
+ "d_ff": 65536,
+ "d_kv": 128,
+ "d_model": 1024,
+ "decoder_start_token_id": 0,
+ "dropout_rate": 0.1,
+ "eos_token_id": 1,
+ "feed_forward_proj": "relu",
+ "initializer_factor": 1.0,
+ "is_encoder_decoder": true,
+ "layer_norm_epsilon": 1e-06,
+ "model_type": "t5",
+ "n_positions": 512,
+ "num_decoder_layers": 24,
+ "num_heads": 128,
+ "num_layers": 24,
+ "output_past": true,
+ "pad_token_id": 0,
+ "relative_attention_num_buckets": 32,
+ "task_specific_params": {
+ "summarization": {
+ "early_stopping": true,
+ "length_penalty": 2.0,
+ "max_length": 200,
+ "min_length": 30,
+ "no_repeat_ngram_size": 3,
+ "num_beams": 4,
+ "prefix": "summarize: "
+ },
+ "translation_en_to_de": {
+ "early_stopping": true,
+ "max_length": 300,
+ "num_beams": 4,
+ "prefix": "translate English to German: "
+ },
+ "translation_en_to_fr": {
+ "early_stopping": true,
+ "max_length": 300,
+ "num_beams": 4,
+ "prefix": "translate English to French: "
+ },
+ "translation_en_to_ro": {
+ "early_stopping": true,
+ "max_length": 300,
+ "num_beams": 4,
+ "prefix": "translate English to Romanian: "
+ }
+ },
+ "torch_dtype": "float16",
+ "transformers_version": "4.11.3",
+ "use_cache": true,
+ "vocab_size": 32128
+}
diff --git a/sentencet5-xxl/config_sentence_transformers.json b/sentencet5-xxl/config_sentence_transformers.json
new file mode 100644
index 0000000000000000000000000000000000000000..96cafb1a99306435fd68448f16fb5adf3ea49a6d
--- /dev/null
+++ b/sentencet5-xxl/config_sentence_transformers.json
@@ -0,0 +1,7 @@
+{
+ "__version__": {
+ "sentence_transformers": "2.2.0",
+ "transformers": "4.7.0",
+ "pytorch": "1.9.0+cu102"
+ }
+}
\ No newline at end of file
diff --git a/sentencet5-xxl/model.safetensors b/sentencet5-xxl/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..8fce165b48a90459205f664dbad8c58e7c4220da
--- /dev/null
+++ b/sentencet5-xxl/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:87dba079720f799b443b54508c7288a1e9b3d02d42cbee4f35df401914499294
+size 9729607168
diff --git a/sentencet5-xxl/modules.json b/sentencet5-xxl/modules.json
new file mode 100644
index 0000000000000000000000000000000000000000..678c8bb71e6e7258ef1338d8439a42c4f0a54ac4
--- /dev/null
+++ b/sentencet5-xxl/modules.json
@@ -0,0 +1,26 @@
+[
+ {
+ "idx": 0,
+ "name": "0",
+ "path": "",
+ "type": "sentence_transformers.models.Transformer"
+ },
+ {
+ "idx": 1,
+ "name": "1",
+ "path": "1_Pooling",
+ "type": "sentence_transformers.models.Pooling"
+ },
+ {
+ "idx": 2,
+ "name": "2",
+ "path": "2_Dense",
+ "type": "sentence_transformers.models.Dense"
+ },
+ {
+ "idx": 3,
+ "name": "3",
+ "path": "3_Normalize",
+ "type": "sentence_transformers.models.Normalize"
+ }
+]
\ No newline at end of file
diff --git a/sentencet5-xxl/pytorch_model.bin b/sentencet5-xxl/pytorch_model.bin
new file mode 100644
index 0000000000000000000000000000000000000000..d373202294b04ef736b476cf760cfaac2017b9d8
--- /dev/null
+++ b/sentencet5-xxl/pytorch_model.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc73ed70fbb704fa901846c34169c2e31d8cc4d9dbcfaa29f668df164a5d0e0a
+size 9729676422
diff --git a/sentencet5-xxl/sentence_bert_config.json b/sentencet5-xxl/sentence_bert_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..59d594003bf59880a884c574bf88ef7555bb0202
--- /dev/null
+++ b/sentencet5-xxl/sentence_bert_config.json
@@ -0,0 +1,4 @@
+{
+ "max_seq_length": 256,
+ "do_lower_case": false
+}
\ No newline at end of file
diff --git a/sentencet5-xxl/special_tokens_map.json b/sentencet5-xxl/special_tokens_map.json
new file mode 100644
index 0000000000000000000000000000000000000000..881bdbffc06e471924ecea57f962bc5f8e2a9f21
--- /dev/null
+++ b/sentencet5-xxl/special_tokens_map.json
@@ -0,0 +1 @@
+{"eos_token": "", "unk_token": "", "pad_token": "", "additional_special_tokens": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]}
\ No newline at end of file
diff --git a/sentencet5-xxl/spiece.model b/sentencet5-xxl/spiece.model
new file mode 100644
index 0000000000000000000000000000000000000000..317a5ccbde45300f5d1d970d4d449af2108b147e
--- /dev/null
+++ b/sentencet5-xxl/spiece.model
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d60acb128cf7b7f2536e8f38a5b18a05535c9e14c7a355904270e15b0945ea86
+size 791656
diff --git a/sentencet5-xxl/tokenizer.json b/sentencet5-xxl/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..e7a70b5d1de022d917e9b9fbe66f4cf3ce2348ee
--- /dev/null
+++ b/sentencet5-xxl/tokenizer.json
@@ -0,0 +1 @@
+{"version":"1.0","truncation":null,"padding":{"strategy":"BatchLongest","direction":"Right","pad_to_multiple_of":null,"pad_id":0,"pad_type_id":0,"pad_token":""},"added_tokens":[{"id":0,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":1,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":2,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32000,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32001,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32002,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32003,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32004,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32005,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32006,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32007,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32008,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32009,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32010,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32011,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32012,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32013,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32014,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32015,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32016,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32017,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32018,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32019,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32020,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32021,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32022,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32023,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32024,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32025,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32026,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32027,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32028,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32029,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32030,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32031,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32032,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32033,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32034,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32035,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32036,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32037,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32038,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32039,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32040,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32041,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32042,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32043,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32044,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32045,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32046,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32047,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32048,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32049,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32050,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32051,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32052,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32053,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32054,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32055,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32056,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32057,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32058,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32059,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32060,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32061,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32062,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32063,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32064,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32065,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32066,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32067,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32068,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32069,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32070,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32071,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32072,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32073,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32074,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32075,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32076,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32077,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32078,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32079,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32080,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32081,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32082,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32083,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32084,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32085,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32086,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32087,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32088,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32089,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32090,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32091,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32092,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32093,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32094,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32095,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32096,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32097,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32098,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":32099,"special":true,"content":"","single_word":false,"lstrip":false,"rstrip":false,"normalized":false}],"normalizer":{"type":"Precompiled","precompiled_charsmap":"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gAkAAIRlAAD9GwCAzNAHAMzwBwAFHACAkYkAAMxMBgDNBAYAzHAGAM10BgDMQAcAmy0PAMyoBwDNrAcAhg0AAIdVDwCEQQ8ACQsAgIIBDACDVQ8AgDUBAIHZAQCkDACAj+kAAIztAACSDACA3R0AgIv1AACIbQ8AiQ0AAA8LAIC0CwCAgiUAAE0MAICBQQAAUwwAgBUeAIANHgCAJR4AgB0eAIAtHgCABR4AgIApAACBKQAA/AsAgA0cAICEeQAAFRwAgIFNAQCAoQEAGAsAgKP9DwDMOAIAzUgDAB0cAICBWQAAzXwCAMykDQAkCwCAWQwAgKjJDwCHOQAA1wkAgImhDwADCwCAkREAAJ4MAIDaCQCAmQsAgF8MAICAuQ8AgbkPANUdAICDjQ8A9gsAgCUcAICEBQAALRwAgB4LAIA1HACAKgsAgIGdDwCHIQAAh7UPAMyoAgDN6AIAzLQMAM3cDACmzQAAp8UAAE0cAICPgQ8AjIkPAKPlAAAwCwCAPRwAgDwLAICxyQAAhwUAAFUcAIBFHACAhz0AAF0cAIBxDACANgsAgKMFDwCB+QAAzKgDAGUcAIBICwCAjEkAAKPxAABtHACAdwwAgEILAICnlQAAfRwAgHUcAIDMrAMAzcgAAN0JAICHaQAA4AkAgIG9AACCeQAA4wkAgIe5AQBOCwCAkaUAAIEdAACdHACAVAsAgIgFAAClHACAm5EAAFoLAIDmCQCAjJEBANILAIDGCwCAwAsAgMwLAICDRQAAgrkBAIG5AQCApQEAPR4AgIZxAABgCwCAhEkAAIsVAACKPQAAiTkAAIhFAACP+QAAZgsAgLoLAICMBQAAp1EBAKZJAQBlDACAsHkAAKNZAQCMqQAAgKkAAIGpAACBlQAAgJUAAK1xAQBrDACAogsAgISNAABNHgCARR4AgKMhAABdHgCAVR4AgGUeAICBbQAAgG0AALEFAQCkOQAANR4AgIUcAIBsCwCAqAUAAJUcAICNHACArQkAAMywAQCBvQMAgL0DAIPNAwCtHACAtRwAgL0cAIDMvAEAzYQBAInpAwDMHAEAgdkCAIDFAgDNOAEAzDwBAMxoAgDNRAIAg00AAMUcAICH2QAAhy0AAIBFAACBEQAAggUAAHILAIDVHACAzRwAgN0cAIDMOAIAiBUAAIjhAACAbQAAgTkAAMyEAgDNUAEA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vBkBAL0ZAQC+fQEAv3UBAKPtAQCeOwCAojsAgKY7AICqOwCApu0BAKXtAQCuOwCAq3kBAKpxAQCyOwCAtjsAgK85AQCuMQEArVUBAKxVAQC6OwCAvjsAgMI7AIDGOwCAyjsAgOGsAQDOOwCA42AGANI7AIDWOwCA2jsAgO9UBgDeOwCA4jsAgL60GgDmOwCA6jsAgO47AICGaBwAh4wDAPI7AID2OwCA+jsAgP47AICAOQAAgTkAAIIFAAACPACACjwAgA48AIASPACAFjwAgKgdAwCpQQMAqkEDAKtBAwCsQQMArUkDAK5xAwCvcQMAhCAdABo8AIAePACAIjwAgCY8AIAqPACALjwAgDI8AIC46QAAufUAALr9AAC78QAAvJEAAL2RAAC+iQAAv4kAALDhAACx4QAAsuEAALPhAAC04QAAte0AALbZAAC32QAA4wwHAOEgBwDhMAEA4wgHADY8AIA6PACAPjwAgEI8AIBGPACASjwAgE48AIBSPACA75gHAFY8AIBaPACA74gHALOJAgBePACAYjwAgL6AGgBmPACAtokCALWJAgBqPACAu2UBALplAQBuPACAcjwAgL9pAQC+ZQEAvXUBALx1AQC3PQYAtj0GALU9BgC0IQYAszUGALI1BgCxAQYAsAkGAL9ZBgC+UQYAvVkGALxNBgC7bQYAunkGALlxBgC4eQYAgJ0AAIGtAACCpQAAejwAgH48AICCPACAhjwAgIo8AICvcQYArmkGAK1tBgCsbQYAq4EGAKqZBgCpkQYAqJkGAAY8AIB2PACAjjwAgKPFHQCSPACApcUdAKbFHQCWPACAhgADAIdkAwCqKR4AqykeAKw5HgCtOR4ArikeAK8lHgCzOR4AmjwAgJ48AICiPACApjwAgLb9HgC1/R4AqjwAgLvZHgC60R4ArjwAgLI8AIC/aR8AvmEfAL1pHwC8wR4AqPEeAKnxHgCq8R4Aq/EeAKw1HgCtPR4ArjUeAK8tHgC2PACAujwAgL48AIDCPACAxjwAgMo8AIDOPACA0jwAgLjlHwC57R8AuuUfALv5HwC86R8AvZEfAL6RHwC/jR8AsFUeALFdHgCyVR4As/0fALTlHwC17R8AtuUfALfdHwCjeR8A1jwAgNo8AIDePACA4jwAgKa9HwClvR8A5jwAgKuZHwCqkR8AhogAAIdMAQCvKR4AriEeAK0pHgCsgR8AgEkAAIFJAACCWQAAs5keAOo8AIC1iR4AtlEBAO48AIDyPACA9jwAgLotAQC7JQEAvD0BAL0lAQC+JQEAvxUBAKhNHgCpVR4Aql0eAKtVHgCsTR4ArZ0BAK6JAQCvgQEAhKwBAPo8AID+PACAAj0AgAY9AIAKPQCADj0AgBI9AIC4ZQEAuW0BALplAQC7fQEAvGUBAL1tAQC+ZQEAv9kAALClAQCxrQEAsqUBALO9AQC0rQEAtZ0BALaVAQC3XQEAo9UdABY9AIAaPQCAHj0AgCI9AICmHQIApcUdACY9AICraQIAqmECACo9AIAuPQCAr1kCAK5pAgCtaQIArHECADI9AIA2PQCAOj0AgD49AIBCPQCARj0AgEo9AIBOPQCAgDkAAIE5AACCBQAAUj0AgFo9AIBePQCAh0ADAIZcBACETAQAYj0AgGY9AICEBAUA4yABAGo9AIDhqAEAbj0AgO+UGgByPQCAdj0AgHo9AIB+PQCAgj0AgIY9AICKPQCAs6EDAI49AICSPQCAlj0AgJo9AIC2fQMAtX0DAJ49AIC7WQMAulEDAKI9AICmPQCAv/0AAL79AAC9/QAAvEEDAKhRAgCpWQIAqmkCAKtpAgCstQIArb0CAK61AgCvrQIAhKgHAKo9AICuPQCAsj0AgIKpAAC2PQCAgKkAAIGpAAC4aQEAuWkBALoJAQC7CQEAvBkBAL0ZAQC+CQEAvwkBALDVAgCx3QIAstUCALNpAQC0eQEAtXkBALZpAQC3YQEA4bgBAOHUHwDjOB8A4wwbALo9AIC+PQCAwj0AgMo9AIDOPQCA0j0AgNY9AIDaPQCAvjwJAN49AIDvhBsA74QbAKOhAgDiPQCAhugEAIe8BQDmPQCApn0CAKV9AgDqPQCAq1kCAKpRAgDuPQCA8j0AgK/9AQCu/QEArf0BAKxBAgCzhQYAxj0AgPY9AID6PQCA/j0AgLaJBgC1jQYAAj4AgLuRBgC6iQYABj4AgAo+AIC/9QYAvokGAL2BBgC8iQYADj4AgBI+AIAWPgCAGj4AgB4+AIAiPgCAJj4AgO+EHQAqPgCA4QAEAC4+AIDj/AQAgBEAAIEdAACCBQAAMj4AgKjxBgCp8QYAqg0GAKsFBgCsBQYArQkGAK49BgCvNQYANj4AgDo+AICGiAAAhxADAD4+AIBCPgCA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GkUAgB5FAIAiRQCAJkUAgIANAACBFQAAgh0AACpFAIAuRQCAMkUAgIR4AQC+FAAA4xQPADpFAIDh4A0AhAADAIawBACHFAMAPkUAgEJFAIBGRQCASkUAgE5FAIBSRQCA78APAFZFAIBaRQCAXkUAgGJFAIBmRQCAakUAgLNtAwBuRQCAtX0DALZ1AwByRQCAdkUAgHpFAIC6UQMAu1EDALz1AwC9/QMAvukDAL/hAwB+RQCAgkUAgIZFAICKRQCAjkUAgJJFAICWRQCAmkUAgKhxAgCpeQIAqokDAKuJAwCsmQMArZkDAK6JAwCviQMAsPkDALH5AwCyTQMAs0UDALRBAwC1SQMAtnEDALdxAwC4IQMAuSEDALohAwC7IQMAvCEDAL0hAwC+IQMAvyEDAICdAQCBEQAAghEAAIQEBQDvFAAAnkUAgKJFAIC+EAUA48gAAKpFAIDh0AEArkUAgLJFAIC2RQCAukUAgL5FAICqeQIAq3kCAIboBACHYAUArsECAK/JAgCs3QIArdUCAMJFAICjRQIAxkUAgMpFAICmXQIAzkUAgNJFAIClVQIA1kUAgNpFAIDeRQCA4kUAgOZFAIDqRQCA7kUAgO+EDgC+rAQA4dAOAPJFAIDjFAEA9kUAgPpFAID+RQCAAkYAgLPdAQAGRgCACkYAgA5GAIASRgCAtv0BALX9AQAaRgCAu90BALrdAQCE4AQAHkYAgL+hAQC+vQEAvb0BALy9AQCoBQYAqR0GAKoVBgCrLQYArDUGAK09BgCuNQYArykGAKZFAICC9QcAgeUHAIDlBwAWRgCAIkYAgIYcAACHsAMAuCUGALnFBgC6zQYAu8UGALzdBgC9xQYAvs0GAL/FBgCwWQYAsVkGALIpBgCzKQYAtDkGALUlBgC2JQYAtx0GAKOdBgAmRgCAKkYAgC5GAIAyRgCApr0GAKW9BgA2RgCAq50GAKqdBgA6RgCAPkYAgK/hBgCu/QYArf0GAKz9BgBCRgCAs/UHAEZGAIBKRgCAtu0HAE5GAIBSRgCAteUHALqNBwC7kQcAVkYAgFpGAIC+dQcAv30HALyBBwC9fQcAqCUGAKkpBgCqOQYAqzkGAKwpBgCtKQYArnkGAK91BgBeRgCAYkYAgGZGAIBqRgCAbkYAgHJGAIB2RgCAekYAgLjVBgC53QYAuuEGALv9BgC85QYAve0GAL7lBgC/mQYAsA0GALERBgCyEQYAs+0GALT1BgC1/QYAtvUGALftBgCjsQYAgi0AAIEVAACAsQAANkUAgKapBgCloQYAfkYAgKvVBgCqyQYAgkYAgL5oAQCvOQYArjEGAK05BgCsxQYAikYAgLPxAQCGaAAAh3wBALZdAQCORgCAkkYAgLVVAQC6SQEAu0kBAJZGAICaRgCAvj0BAL8hAQC8OQEAvTUBAJ5GAICiRgCAhAQDAL6AHACmRgCA4RwGAKpGAIDjAAYAvwguAK5GAICyRgCA78gHALZGAIC6RgCAvkYAgMJGAIDGRgCAykYAgKN9AgDORgCApdkCANJGAIDWRgCAptECANpGAIDeRgCAq8UCAKrFAgCtuQIArLUCAK+tAgCusQIAqW0FAKhZBQCrDQIAqrkCAK0dAgCsHQIArwUCAK4NAgC+aB0A4kYAgOZGAIDqRgCAgB0AAIEJAACCmQEA7kYAgLnhAwC4KQIAu+EDALrpAwC94QMAvPkDAL/hAwC+6QMAsU0CALBNAgCzIQIAsi0CALUlAgC0OQIAtxECALYlAgCowQIAqdECAKrRAgCr5QIArP0CAK0VAQCuHQEArw0BAPJGAID6RgCA/kYAgAJHAIAGRwCACkcAgA5HAIASRwCAuAUBALkJAQC6HQEAuxUBALwxAQC9MQEAvv0BAL/1AQCweQEAsUEBALJBAQCzXQEAtEUBALVNAQC2RQEAtz0BAIagHQCHxB0AFkcAgO/YAAAaRwCAHkcAgCJHAIDvxAYAhGwcAOH0BgAmRwCA47AGACpHAIDhlAEALkcAgONEBgCzGQIAMkcAgDZHAIA6RwCAhewsALbVAQC1NQIAPkcAgLvFAQC6/QEAQkcAgEZHAIC/yQEAvsEBAL3JAQC81QEAo9kdAPZGAIBKRwCATkcAgFJHAICmFR4ApfUdAFZHAICrBR4Aqj0eAFpHAIBeRwCArwkeAK4BHgCtCR4ArBUeAIBpAACBaQAAggUAAGJHAIBmRwCAakcAgIcQAwCGfAMAbkcAgHJHAIB2RwCAekcAgH5HAICCRwCAhkcAgIpHAICopR8Aqa0fAKqlHwCrvR8ArKUfAK2tHwCupR8ArxUfAI5HAICSRwCAlkcAgJpHAICeRwCAokcAgKZHAICqRwCAuA0fALkZHwC6IR8AuyEfALzZAAC92QAAvskAAL/BAACwcR8AsXEfALJxHwCzRR8AtEEfALVNHwC2PR8AtzUfALMtHgCuRwCAskcAgLZHAIC6RwCAti0eALUtHgC+RwCAu7UeALq1HgDCRwCAxkcAgL+JHgC+hR4AvZEeALylHgCCKQAAo2keAIAdAACBFQAApmkeAMpHAIDORwCApWkeAKrxHgCr8R4A0kcAgITgAQCuwR4Ar80eAKzhHgCt1R4AqNUBAKnlAQCq7QEAq+UBAKz9AQCt5QEAru0BAK/lAQC+oAEAhkYAgNZHAIDaRwCAhhAAAId0AQDeRwCA4kcAgLh9AQC5wQAAusEAALvBAAC8wQAAvckAAL7xAAC/8QAAsJ0BALFFAQCyTQEAs0UBALRdAQC1RQEAtk0BALdFAQDmRwCA6kcAgO5HAIDyRwCA9kcAgO80AgDv7B4A+kcAgOHwHQDj4AIA4zAeAOGEAQD+RwCAAkgAgAZIAIAKSACAsyUCAJQAAAAOSACAEkgAgBZIAIC2JQIAtTUCABpIAIC7wQIAuhkCAB5IAIAiSACAv8ECAL7ZAgC90QIAvNkCACZIAIAqSACALkgAgKPpAgAySACApfkCAKbpAgA2SACAOkgAgD5IAICq1QIAqw0CAKwVAgCtHQIArhUCAK8NAgCAYQAAgWEAAIIFAABCSACASkgAgIQABAC+FAQATkgAgIbABACHUAMAUkgAgFZIAIBaSACAXkgAgGJIAIBmSACAqK0CAKm9AgCqtQIAqw0BAKwVAQCtHQEArhUBAK8NAQCE7AQAakgAgG5IAIBySACAdkgAgHpIAIB+SACAgkgAgLgdAQC5LQEAuiUBALvNAQC81QEAvd0BAL7JAQC/wQEAsH0BALFVAQCyXQEAs1UBALRNAQC1PQEAtjUBALctAQDhGB4AhkgAgOM4HgCKSACAjkgAgJJIAICWSACAmkgAgJ5IAICiSACAvmAEAKZIAICBdQAAgHUAAO/gHwCCbQAAqkgAgK5IAICG6AQAh3wFALJIAIDhkAEAukgAgOOgAAC+SACAwkgAgMZIAIDvtAAAykgAgM5IAIDSSACA1kgAgLUFBgBGSACAtkgAgLYFBgDaSACA3kgAgLOlBQDiSACAvRkGALwRBgC/YQYAvhEGAOZIAIDqSACAuwkGALohBgCj/QUA7kgAgPJIAID2SACA+kgAgKZdBgClXQYA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sY0CALKFAgCzbQEAtHkBALV5AQC2aQEAt2kBAIYgBACHCAUAYksAgGZLAIBqSwCAbksAgHJLAIDvXAAAhOwEAOFcDgB2SwCA44wOAHpLAIB+SwCAgksAgIZLAICjVQIAiksAgI5LAICSSwCAlksAgKYdAgClHQIAmksAgKsJAgCqOQIAnksAgKJLAICv/QEArv0BAK35AQCsEQIAqGkGAKlpBgCqeQYAq3kGAKxpBgCtaQYArp0GAK+VBgBWSwCApksAgKpLAICuSwCAsksAgLZLAIC6SwCAvksAgLj1BgC5+QYAuo0GALuFBgC8nQYAvYUGAL6FBgC/tQYAsO0GALH1BgCy/QYAs/UGALTtBgC10QYAttEGALfRBgCz8QYAghUAAIG1AACAtQAAwksAgLbpBgC14QYAvtQDALsxBgC6KQYAxksAgMpLAIC/FQYAvikGAL0hBgC8KQYAzksAgKO1BgCGyAAAh8gAAKatBgDSSwCA1ksAgKWlBgCqbQYAq3UGANpLAIDeSwCArm0GAK9RBgCsbQYArWUGAKg1BgCpOQYAqoEGAKuBBgCsgQYArYEGAK6BBgCvtQYA4ksAgOZLAIDqSwCA7ksAgPJLAID2SwCA+ksAgP5LAIC4nQYAua0GALqlBgC7aQEAvHkBAL15AQC+aQEAv2kBALDRBgCx0QYAstEGALPRBgC0tQYAtb0GALa1BgC3rQYAswkGAAJMAIAGTACACkwAgA5MAIC2AQYAtQkGABJMAIC7FQYAuhUGABZMAIAaTACAv3kGAL5xBgC9BQYAvAUGAB5MAICjTQYAIkwAgOZKAICmRQYAJkwAgCpMAIClTQYAqlEGAKtRBgAuTACAMkwAgK41BgCvPQYArEEGAK1BBgCB6QMAgN0DAISIAwCC4QMAhrA8AIeIAgC+VAMAOkwAgD5MAIBCTACARkwAgEpMAIBOTACAUkwAgFZMAIBaTACA4/AGAF5MAIDhMAYAhAA8AGJMAIBmTACAakwAgG5MAIByTACAhTQ9AHZMAIB6TACA77AHAH5MAICCTACAhkwAgIpMAICOTACAkkwAgL7EPACWTACAgp0BAIGdAQCAnQEAqA0CAKllAgCqfQIAq3UCAKxZAgCtWQIArpkDAK+ZAwCw6QMAsekDALL5AwCz+QMAtOkDALXpAwC2XQMAt1UDALhtAwC5dQMA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t/0eALO5HgBeUgCAYlIAgGZSAIBqUgCAtsUeALXVHgBuUgCAu8EeALr5HgByUgCAdlIAgL/FHgC+2R4AvdEeALzZHgB6UgCAo/0eAH5SAICCUgCApoEeAIZSAICKUgCApZEeAKq9HgCrhR4AjlIAgJJSAICunR4Ar4EeAKydHgCtlR4AqCkeAKkpHgCqVR4Aq20eAKx1HgCtfR4ArnUeAK9pHgCWUgCAmlIAgJ5SAICiUgCAplIAgKpSAICuUgCAslIAgLjpHgC59R4Auv0eALv1HgC87R4AvZEeAL6RHgC/kR4AsB0eALHlHgCy7R4As+UeALT9HgC15R4Atu0eALflHgCz3R4AtlIAgLpSAIC+UgCAwlIAgLb9HgC1/R4AhFgBALshHgC62R4AvigAAMpSAIC/IR4AvjkeAL0xHgC8OR4AgU0AAIBNAACjlR4Agl0AAKW1HgDGUgCAzlIAgKa1HgB2UQCA0lIAgKtpHgCqkR4ArXkeAKxxHgCvaR4ArnEeAIYABACHRAMAs4ECANZSAIC1gQIA2lIAgN5SAIC2gQIAiAAAAOJSAIC74QIAuu0CAL3lAgC8+QIAv9ECAL7lAgDmUgCA6lIAgIREAwC+jAMA4UgCAO5SAIDjAAIA7/wfAPJSAIDhPB4A79wCAONgHwD2UgCA+lIAgP5SAIACUwCAqQUCAKixAgCrBQIAqgUCAK0NAgCsBQIArzUCAK41AgCEbAUABlMAgApTAIAOUwCAElMAgBZTAIAaUwCAHlMAgLnpAwC44QMAu/kDALrhAwC96QMAvOEDAL9dAwC+4QMAsSkCALAlAgCzPQIAsiECALUZAgC0LQIAt9kDALYRAgAiUwCAJlMAgCpTAICjhQMALlMAgKWFAwCmhQMAMlMAgDpTAIA+UwCAqukDAKvlAwCs/QMAreEDAK7hAwCv1QMAgEkAAIFVAACCVQAAo6kCAL6YBAClQQEApkEBAEJTAICG4AUAh+AFAKotAQCrOQEArBEBAK0FAQCuDQEArwUBAEZTAIBKUwCATlMAgO/cAABSUwCAVlMAgFpTAIDviB4AhCwHAOHsHgBeUwCA4xweAGJTAIDhlAEAZlMAgOMwAACzJQIAhWDmAGpTAIBuUwCAclMAgLbNAQC1zQEAdlMAgLu1AQC6oQEAelMAgH5TAIC/iQEAvoEBAL2JAQC8nQEA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qoECAKuBAgCsgQIArYECAK6FAgCvHQEAAlYAgAZWAIAKVgCADlYAgBJWAIAWVgCAGlYAgIS4BQC4dQEAuX0BALp1AQC7CQEAvBkBAL0ZAQC+CQEAvwEBALBlAQCxbQEAsmUBALN9AQC0aQEAtV0BALZVAQC3TQEAHlYAgCJWAIAmVgCAKlYAgC5WAIAyVgCA7zQAAO/ADgDhXA4A4UwPAOOUAADjnA4ANlYAgIJlAACBfQAAgH0AADpWAIA+VgCAvsQHALNFAgBCVgCAtUUCALZNAgBKVgCAhkAGAIeQBAC67QEAu+UBALz9AQC95QEAvuEBAL/VAQCflQgAngUIAJ3dDQCcPQwAmzEMAJr1DQCZ7RAAmD0QAJfVEQCWsRUAlQUUAJTlFQCTtRkAkjEYAJE5GACQDRwAj2EcANZVAICz1QYATlYAgLX9BgBGVgCAUlYAgLaRBgBWVgCAWlYAgLuVBgC6lQYAvVUHALxVBwC/VQcAvlUHAF5WAIBiVgCAqo0GAKuFBgCsnQYArYUGAK6BBgCvtQYAhKgAAGZWAIBqVgCAoyUFAG5WAIClJQUApi0FAHJWAIB2VgCAelYAgH5WAICCVgCAhlYAgIpWAICOVgCAklYAgJZWAICaVgCAnlYAgKJWAICjqQUAotEEAKHZBACgZQUAgiEdAIM1HQCmVgCAqlYAgIaVGACH3RQAhBkZAIUZGQCKDRUAi7EUAK5WAICyVgCAjsURAI/VDACMzRAAjR0RAJJhDQCTdQ0AvkwAALpWAICWxQkAl80EAJSNDACVXQkAmkEFAJtBBQCGyP8Ah0wAAIFZAACAeQAAnCEEAIJRAAChxQEAvlYAgKMB/ACi2QEApRX9AKS1/QCnufkApgH4AKkJ+AColfkAqwX1AKqt9QCtsfEArAHwAK8d8ACurfEAseHtALAB7ACzAegAsv3sALVd6QC09ekAwlYAgMZWAIDKVgCAzlYAgNJWAIDWVgCA2lYAgN5WAIDiVgCA5lYAgKiNBACplQQAqpUEAKulBACsvQQArdkEAK75BACv8QQAhGz8AOpWAIDuVgCA8lYAgPZWAID6VgCA/lYAgAJXAIC4eQUAucUFALrNBQC7xQUAvN0FAL3FBQC+zQUAv+0FALCZBACxmQQAskkFALNJBQC0WQUAtVkFALZJBQC3SQUAox0EAL7M/AAGVwCAClcAgA5XAICmWQQApTUEABJXAICrXQQAql0EABZXAIAaVwCAr50FAK6dBQCtnQUArJ0FAB5XAICznQIAIlcAgCpXAIC2UQIALlcAgDJXAIC1uQIAukkCALtVAgCGSP0Ah8D8AL41AgC/PQIAvEUCAL09AgCo3QQAqUkDAKpRAwCrbQMArHUDAK2VAwCunQMAr7kDAICNAQCB5QEAguEBADZXAIA6VwCAPlcAgEJXAIBGVwCAuJUDALmdAwC6lQMAu60DALy1AwC9vQMAvrUDAL9VAgCwyQMAsdUDALLVAwCzrQMAtLUDALW9AwC2tQMAt60DAEpXAIBOVwCAo9EDAFJXAICl9QMAVlcAgFpXAICmHQMAXlcAgGJXAICrGQMAqgUDAK1xAwCsCQMAr3EDAK55AwDhKAcAZlcAgOPkBgBqVwCA4SgGAG5XAIDjaAEAclcAgHZXAIB6VwCA71gAAH5XAICCVwCAhlcAgO/IBgCKVwCAqE39AKmB/QCq0f0Aq9H9AKzx/QCt8f0ArvH9AK/x/QAmVwCAghEAAIEZAACA0f8AjlcAgJJXAICEdAMAvnQDALh1/gC5ff4AunX+ALvF/gC83f4AvcX+AL7F/gC/9f4AsJH9ALGR/QCykf0As5H9ALRV/gC1Xf4AtlX+ALdN/gCzWf0AllcAgIasAACHRAMAmlcAgLZx/QC1ef0AnlcAgLtV/QC6Vf0AolcAgKZXAIC/mf4AvpH+AL1F/QC8Rf0AqlcAgKMd/QCuVwCAslcAgKY1/QC2VwCAulcAgKU9/QCqEf0AqxH9AL5XAIDCVwCArtX+AK/d/gCsAf0ArQH9AKjN/wCp0f8AqtH/AKsh/gCsIf4ArSH+AK4h/gCvIf4AxlcAgMpXAIDOVwCA0lcAgNZXAIDaVwCA3lcAgOJXAIC4jf4AuZH+ALqV/gC7rf4AvLX+AL25/gC+qf4Av6n+ALDh/gCx4f4AsuX+ALP5/gC06f4AtdX+ALbd/gC3uf4As1n/AOZXAIC2VgCA6lcAgO5XAIC2of4Atan+APJXAIC7Jf4AuiX+APZXAID6VwCAvxH+AL4t/gC9Lf4AvDH+AIIZAACjHf8AgGUAAIEZAACm5f4A/lcAgAJYAICl7f4AqmH+AKth/gCEZAEAviAAAK5p/gCvVf4ArHX+AK1p/gAKWACA4zT+AA5YAIDhfP0AhrAEAIcIAwASWACAFlgAgBpYAIAeWACAhCQDAIQkBAAiWACA70j+ACZYAIAqWACAs+kCAC5YAIC+RAQAvkAFADJYAIC2nQIAtZkCADZYAIC7iQIAur0CADpYAIA+WACAv1kDAL5RAwC9WQMAvJECAKkdAgCoFQIAqyUCAKolAgCtWQIArFUCAK9NAgCuUQIAvmQGAEJYAIBGWACASlgAgE5YAIBSWACAVlgAgFpYAIC5+QMAuPEDALtNAwC68QMAvUEDALxZAwC/cQMAvkEDALEJAgCwPQIAs8kDALIBAgC12QMAtNEDALfJAwC20QMA4ZABAF5YAIDj8AAAYlgAgGZYAICCPQAAgT0AAIA9AABqWACAblgAgHJYAIB6WACAflgAgIJYAIDvLAAAhlgAgKPpAwCKWACAhugEAIdgBQCOWACApp0DAKWZAwCSWACAq4kDAKq9AwCWWACAmlgAgK9ZAgCuUQIArVkCAKyRAwCeWACAolgAgKZYAICqWACArlgAgLJYAIC2WACA71gBAISgBADhVP8AulgAgOOEAQC+WACAwlgAgMZYAIDKWACAs9kBAM5YAICFzBkA0lgAgNZYAIC28QEAtfkBANpYAIC7pQEAutkBAN5YAIDiWACAv50BAL6dAQC9pQEAvK0BAKgBBgCpDQYAqhEGAKsRBgCsMQYArTEGAK4pBgCvJQYAdlgAgILJBwCBwQcAgPEHAOZYAIDqWACAhhwAAIf8AwC47QYAufUGALr9BgC79QYAvO0GAL1RBwC+VQcAv00HALBdBgCxIQYAsjkGALMxBgC0GQYAtRkGALbdBgC31QYAo5kGAO5YAIDyWACA9lgAgPpYAICmsQYApbkGAP5YAICr5QYAqpkGAAJZAIAGWQCAr90GAK7dBgCt5QYArO0GAApZAICz8QcADlkAgBJZAIC2gQcAFlkAgBpZAIC1mQcAuo0HALtlBwAeWQCAIlkAgL59BwC/ZQcAvH0HAL11BwCoLQYAqTUGAKo9BgCrMQYArFUGAK1FBgCuRQYAr3UGACZZAIAqWQCALlkAgDJZAIA2WQCAOlkAgD5ZAIBCWQCAuOkGALn1BgC6/QYAu/UGALztBgC9kQYAvpUGAL+NBgCwDQYAseUGALLtBgCz5QYAtP0GALXlBgC27QYAt+UGAKO1BgBGWQCASlkAgE5ZAIBSWQCA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nlsAgLshBwC6yQcAolsAgKZbAIC/KQcAviEHAL0pBwC8NQcAqlsAgKOBBwCuWwCAslsAgKaBBwC2WwCAulsAgKWRBwCqjQcAq2UHAL5bAIDCWwCArmUHAK9tBwCscQcArW0HAKgVAQCpgQEAqoEBAKuBAQCsgQEArYkBAK6xAQCvsQEAxlsAgMpbAIDOWwCA0lsAgNZbAIDaWwCA3lsAgOJbAIC4ZQAAuW0AALplAAC7fQAAvGUAAL1tAAC+ZQAAv90AALChAQCxrQEAsqUBALO5AQC0qQEAtZ0BALaVAQC3XQAA5lsAgIIdAACBHQAAgB0AAOpbAIDuWwCA8lsAgL5YAQCErAIA9lsAgIcIAQCGjAEA+lsAgKZaAID+WwCAAlwAgLNJAQAGXACAClwAgA5cAIASXACAtkkBALVJAQAWXACAuykBALolAQAaXACAHlwAgL8ZAQC+LQEAvS0BALwxAQC+2AMAIlwAgO/4BgAmXACAKlwAgC5cAIDv4AIAMlwAgOGUAQA2XACA43QCADpcAIDhmAUAPlwAgOMMBwBCXACARlwAgEpcAICjwQIAhIwDAKXBAgBOXACAUlwAgKbBAgBWXACAWlwAgKuhAgCqrQIAraUCAKy5AgCvkQIArqUCAKgxAwCpPQMAqjUDAKtJAwCsWQMArVkDAK5JAwCvQQMAgMUAAIEJAACCGQAAXlwAgGJcAIBqXACAh2wDAIYcHAC47QAAufEAALr1AAC7jQAAvJUAAL2BAAC+gQAAv70AALAJAwCxCQMAsu0AALPhAAC04QAAteEAALblAAC32QAAblwAgHJcAIB2XACAs7ECAHpcAIC13QIAttUCAH5cAICCXACAhlwAgLrBAgC7wQIAvDUBAL05AQC+KQEAvykBAKaNAgCKXACAjlwAgKWFAgCSXACAo+kCAJZcAICaXACArnEBAK9xAQCsbQEArWEBAKqZAgCrmQIAnlwAgKJcAICmXACA4YQGAKpcAIDjJAYArlwAgOGUAQCyXACA4ywAAL7oHQC2XACAulwAgO/IAACE/B0AvvAcAL5cAIDvSAcAwlwAgMZcAIDKXACAzlwAgIEdAACAHQAA0lwAgIIFAACGQBwAh8QcANpcAIDeXACA4lwAgOZcAIDqXACA7lwAgKi1HgCpBR8Aqg0fAKsFHwCsAR8ArQkfAK45HwCvOR8A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rmU+AK1xPgCsAT4A0mIAgNZiAIDaYgCA3mIAgOJiAIDmYgCA6mIAgO5iAICAOQAAgTkAAIIFAADyYgCAvrgBAIS4AQD6YgCA/mIAgKitAgCp1QIAqtUCAKstAwCsNQMArT0DAK41AwCvLQMAAmMAgAZjAIAKYwCADmMAgBJjAIAWYwCAGmMAgB5jAIC46QMAuekDALqJAwC7iQMAvJkDAL2ZAwC+iQMAv4kDALBVAwCxXQMAslUDALPpAwC0+QMAtfkDALbpAwC34QMAs10CACJjAICGKAQAh8wDACZjAIC2vQMAtb0DACpjAIC7mQMAupEDAC5jAIAyYwCAvz0DAL49AwC9PQMAvIEDAIUAFACjGQIANmMAgDpjAICm+QMAPmMAgEJjAICl+QMAqtUDAKvdAwBGYwCASmMAgK55AwCveQMArMUDAK15AwDjVD4A4dw/AOHQPgDjPD4ATmMAgO8cAABSYwCAVmMAgFpjAIDjwAAAXmMAgOHUAQDvYD4AYmMAgGpjAIDvRD8AgGEAAIFtAACCfQAAhAAFAIbwBACHnAUAvhAFAG5jAIByYwCAdmMAgHpjAIB+YwCAgmMAgIZjAICKYwCAjmMAgLiJPQC5iT0Aupk9ALuRPQC8uT0Avbk9AL7RPQC/0T0AsAU+ALENPgCyBT4Asx0+ALQFPgC1DT4AtgU+ALe5PQConT4Aqa0+AKqlPgCrvT4ArKU+AK2tPgCupT4Ar30+AISsBAC+rAQAkmMAgJZjAICaYwCAnmMAgKJjAICmYwCAqPkFAKn5BQCqKQYAqykGAKw5BgCtOQYArikGAK8pBgBmYwCAqmMAgK5jAICyYwCAtmMAgLpjAIC+YwCAwmMAgLiNBgC5kQYAupEGALulBgC8vQYAvUUHAL5BBwC/QQcAsFkGALFZBgCy7QYAs/0GALTtBgC13QYAttUGALe1BgCzoQYAxmMAgMpjAIDOYwCA0mMAgLa5BgC1sQYA2mMAgLudBgC6nQYA1mMAgPZiAIC/GQYAvikGAL0pBgC8OQYAglEAAKPlBgCAQQAAgUEAAKb9BgDeYwCA4mMAgKX1BgCq2QYAq9kGAIZIAACHbAAArm0GAK9dBgCsfQYArW0GAKg5BgCpWQYAqmkGAKtpBgCseQYArXkGAK5pBgCvaQYA5mMAgOpjAIDuYwCA8mMAgPZjAID6YwCA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uNEGALnZBgC64QYAu+EGALyRBgC9nQYAvpUGAL+JBgCwSQYAsUkGALJdBgCzVQYAtE0GALXxBgC28QYAt/EGALDhBwCx4QcAsgkHALMJBwC0GQcAtRkHALYJBwC3CQcAuDkHALkNBwC6GQcAuxkHALwJBwC9CQcAvn0HAL9xBwCCZgCAlmUAgIZmAICKZgCAjmYAgJJmAICWZgCAmmYAgKjxBwCpxQcAqsEHAKvdBwCsyQcArb0HAK6pBwCvoQcAsykGAJ5mAICiZgCApmYAgKpmAIC2XQYAtSEGAK5mAIC7RQYAukUGALJmAIC2ZgCAv70GAL69BgC9vQYAvL0GALpmAICjbQYAvmYAgMJmAICmGQYAxmYAgMpmAIClZQYAqgEGAKsBBgDOZgCA0mYAgK75BgCv+QYArPkGAK35BgCobQYAqbEBAKpJAQCrRQEArF0BAK1FAQCuTQEAr0UBANZmAICCHQAAgR0AAIAdAADaZgCA3mYAgOJmAIC+VAEAuIEAALmNAAC6hQAAu5kAALyJAAC9vQAAvrUAAL99AACwPQEAseEAALLhAACz4QAAtOEAALXpAAC20QAAt9EAALsFAwC62QIAhiwCAIcsAwC/DQMAvgUDAL0VAwC8FQMAs+ECAOpmAIDuZgCAhCwDAPJmAIC25QIAtfUCAPZmAICqnQIAq0EDAPpmAID+ZgCArkEDAK9JAwCsUQMArVEDAAJnAICjpQIABmcAgApnAICmoQIADmcAgBJnAIClsQIAqakAAKihAACrtQAAqr0AAK3dAACs3QAAr/EAAK79AAC+LBwAFmcAgBpnAIAeZwCAImcAgCZnAIAqZwCALmcAgLl9AAC4fQAAu80BALrNAQC93QEAvN0BAL/NAQC+zQEAsZUAALCJAACzTQAAspUAALVdAAC0XQAAt00AALZNAAAyZwCANmcAgDpnAIA+ZwCAQmcAgEZnAIBKZwCATmcAgIA5AACBOQAAggUAAFJnAIBaZwCAXmcAgIf4AgCGfB0A4bgEAL7IHADjQAYAYmcAgGZnAIBqZwCAbmcAgHJnAIB2ZwCAemcAgH5nAICCZwCAhmcAgIpnAIDvsAcAjmcAgJJnAICWZwCAmmcAgO/IAACeZwCAomcAgKZnAIDvQAYAqmcAgOH8BgCuZwCA4xwGALJnAIDhlAEAtmcAgONkBgCAEQAAgRkAAIIpAACz/QEAumcAgLWdAQC2lQEAvmcAgMJnAICEbB0AuoUBALuZAQC8iQEAvVEBAL5RAQC/UQEAozEeAFZnAIDGZwCAymcAgM5nAICmWR4ApVEeANJnAICrVR4AqkkeAIYIAwCHbAMAr50eAK6dHgCtnR4ArEUeANZnAICzCR8A2mcAgN5nAIC2CR8A4mcAgOZnAIC1CR8AugUfALsNHwDqZwCA7mcAgL4FHwC/CR8AvBUfAL0NHwCw5R8Ase0fALLlHwCz/R8AtOUfALXpHwC2GR8AtxkfALgpHwC5NR8Auj0fALs1HwC8ER8AvR0fAL4JHwC/BR8A8mcAgPZnAIDmZgCA+mcAgP5nAIACaACABmgAgApoAICo0R8AqdEfAKqlHwCrvR8ArKUfAK2tHwCupR8Ar50fAKNNHgAOaACAEmgAgBZoAIAaaACApk0eAKVNHgAeaACAq0keAKpBHgAiaACAJmgAgK9NHgCuQR4ArUkeAKxRHgCADQAAgRUAAIIdAAAqaACALmgAgDJoAICEtAEAvrQBAL/oAQA6aACAhkgHAIc0AACEvAYAPmgAgEJoAIC+tAYAqI0BAKmVAQCqlQEAq80BAKzZAQCt2QEArs0BAK/FAQBGaACASmgAgE5oAIBSaACAVmgAgFpoAIBeaACAYmgAgLgdAQC5wQAAusEAALvBAAC8wQAAvckAAL7xAAC/8QAAsIkBALGJAQCyKQEAsykBALQ9AQC1JQEAti0BALclAQC7bQIAum0CAGZoAIBqaACAv8ECAL7ZAgC93QIAvN0CALM9AgBuaACAcmgAgHZoAICE/AYAtnkCALVxAgB6aACAqikCAKspAgB+aACAgmgAgK6dAgCvhQIArJkCAK2ZAgCGaACAo3kCAIpoAICOaACApj0CAJJoAICWaACApTUCAIJtJwCDjSoAhqgFAIdsAwCGmS4Ah80vAIQRLgCFmS4AiiESAIspEgCaaACAnmgAgI6RFgCPHRYAjBESAI0RFgCScRoAk+UaAKJoAIDvlHYAlvEeAJflHgCUSRoAlRkeAJopAgCb4QIAqmgAgK5oAICyaACA4SASAJzxAgDjIBYAnyEfAJ7BHwCdmRsAnC0bAJuhGwCavRcAmTkXAJixFwCXiRMAlqkTAJWpEwCUdS4AkzkvAJIxLwCRsS8AkDUrAI+tJgDjeB8A0gAAAOFcHwCCmQEAtmgAgIDxAQCB8QEAvqgHALpoAIC+aACAwmgAgIS8BgDvLB8AxmgAgMpoAIDhpB4A48wAAON8HgDhvAEAzmgAgNJoAIDWaACAhJwGANpoAIC+bAYA3mgAgOJoAIDmaACA7xAAAO8EHgDqaACA7mgAgPJoAID2aACA+mgAgP5oAIACaQCABmkAgAppAICAPQAAgQkAAILJBwAOaQCAo/kDAKLxAwChMQMAoM0fALBJcQCxAXwAsgl8ALMhfQC0AXgAtRV4ADZoAICmaACAEmkAgL4oDgCGDAAAh4wDABZpAIAaaQCAHmkAgCJpAIAmaQCAoV0AAKJVAACjfQAApAEMAKUVDACm9QwApwEIAKghCACpxQgAqgF0AKsJdACsAXQArR11AK55cACveXAAqOUFAKnxBQCq8QUAqy0FAKw1BQCtPQUArjUFAK8tBQAqaQCALmkAgDJpAIA2aQCAOmkAgD5pAIBCaQCARmkAgLj9BgC5jQYAuoUGALutBgC8uQYAvbkGAL6tBgC/pQYAsFUFALFdBQCyVQUAs+UGALT9BgC10QYAttEGALfRBgCzeQQASmkAgE5pAIBSaQCAVmkAgLa9BAC1vQQAWmkAgLuZBAC6kQQAXmkAgGJpAIC/FQcAvjkHAL0xBwC8gQQAZmkAgKM9BABqaQCAbmkAgKb5BAByaQCAdmkAgKX5BACq1QQAq90EAHppAIB+aQCArn0HAK9RBwCsxQQArXUHAKhpBwCpaQcAqnkHAKvZBgCs9QYArf0GAK71BgCv5QYAgMkAAIHJAACCBQAAgmkAgIZwDwCHNAAAimkAgI5pAIC4fQYAuQUGALoNBgC7BQYAvB0GAL0FBgC+DQYAvwUGALCdBgCxdQYAsn0GALN1BgC0UQYAtV0GALZVBgC3TQYAs/EEAJJpAICWaQCAmmkAgJ5pAIC2fQUAtX0FAKJpAIC7sQUAulkFAKZpAICqaQCAv5kFAL6VBQC9oQUAvKkFAK5pAICjtQQAsmkAgLZpAICmOQUAumkAgL5pAIClOQUAqh0FAKv1BQDCaQCAxmkAgK7RBQCv3QUArO0FAK3lBQCpuQIAqLECAKvJAgCqsQIArTUCAKw1AgCvNQIArjUCAMppAIDOaQCA0mkAgNZpAIDaaQCA3mkAgOJpAIDmaQCAuekDALjZAwC7iQMA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teEBALbhAQC3zQEAo60NAKp1AICudQCAsnUAgLZ1AICm1Q0ApaENALp1AICr/Q0AqvUNAL51AIDCdQCAryUCAK4lAgCt3Q0ArN0NAIBdAACBbQAAgmUAALNRAwC+nAMAtXkDALYZAwDKdQCAhOACAM51AIC6PQMAuzUDALwZAwC9GQMAvtkDAL/ZAwCohQMAqZUDAKqVAwCrpQMArL0DAK3VAwCu0QMAr9EDAIYABACHNAMAv6AzANJ1AIDWdQCA2nUAgN51AIDidQCAuHEDALlxAwC6cQMAu3EDALzVAAC93QAAvtUAAL/NAACwtQMAsb0DALKBAwCzgQMAtFEDALVRAwC2UQMAt1EDAO+oAwDmdQCA6nUAgO51AICEHAIA8nUAgPZ1AID6dQCAviwFAP51AIACdgCABnYAgONAAwAKdgCA4SgAAA52AICjXQIAEnYAgBZ2AIAadgCAHnYAgKYVAgCldQIAInYAgKs5AgCqMQIAJnYAgCp2AICv1QIArtUCAK0VAgCsFQIA4ygBAOEADwDhCA4A4wgOAID9AACBCQAAgjkAAC52AIAydgCAOnYAgD52AIBCdgCA7+gOAEZ2AIBKdgCA72QOALNtAQBOdgCAhugEAIcMBQBSdgCAtm0BALVtAQBWdgCAu+0AALrtAABadgCAXnYAgL/VAAC+6QAAveEAALzpAACoXQYAqWEGAKqlBgCrvQYArKUGAK2tBgCupQYArxkHADZ2AIBidgCAZnYAgGp2AIBudgCAcnYAgHZ2AIB6dgCAuHUHALl5BwC6DQcAuwUHALwdBwC9BQcAvgUHAL81BwCwaQcAsWkHALJ9BwCzdQcAtG0HALVRBwC2UQcAt1EHAKMtBgB+dgCAgnYAgIZ2AICKdgCApi0GAKUtBgCOdgCAq60HAKqtBwCSdgCAlnYAgK+VBwCuqQcAraEHAKypBwCADQAAgRUAAIIdAACadgCAnnYAgKJ2AICEVAMAvlwAAKZ2AICqdgCAhugAAIdMAwCudgCAsnYAgLZ2AIC6dgCAvnYAgOMEBADCdgCA4bQFAMZ2AIDKdgCAznYAgNJ2AIDWdgCA2nYAgN52AIDidgCA5nYAgO/sBADqdgCA7nYAgLPtBgDydgCA9nYAgPp2AID+dgCAtpEGALXhBgACdwCAu40GALqNBgAGdwCACncAgL9BAQC+WQEAvVEBALxZAQCoJQYAqS0GAKolBgCrOQYArCkGAK1RBgCuSQYAr0EGAIDNAACBCQAAghkAAA53AIASdwCAhCwBAL40AAAadwCAuP0BALlBAQC6QQEAu0EBALxBAQC9SQEAvnEBAL9xAQCwCQYAsQkGALLNAQCzxQEAtN0BALXFAQC2zQEAt8UBAIagPACHRAMAHncAgKOhBQAidwCApa0FAKbdBQAmdwCAKncAgL4oPACqwQUAq8EFAKwVAgCtHQIArhUCAK8NAgC2QQMALncAgDJ3AIC1sQIANncAgLOhAgA6dwCAPncAgL5FAwC/TQMAvHUDAL1NAwC6ZQMAu20DAEJ3AIBGdwCASncAgE53AIDGdQCAUncAgFZ3AIBadwCAXncAgGJ3AICoRQIAqVUCAKpdAgCrVQIArE0CAK21AwCusQMAr60DALDVAwCx3QMAstUDALPtAwC09QMAtf0DALb1AwC37QMAuNkDALnZAwC6rQMAu6UDALy9AwC9pQMAvqUDAL+VAwCj9QMAZncAgGp3AIBudwCAcncAgKYVAgCl5QMAdncAgKs5AgCqMQIAencAgH53AICvGQIArhECAK0ZAgCsIQIAgGkAAIFpAACCBQAAgncAgIp3AICOdwCAkncAgO8cAACEbAIA4ZQBAJZ3AIDjyAAAmncAgJ53AICGWDwAh1A9AKJ3AICmdwCAqncAgISEPQCudwCAsncAgLZ3AIDvuAEAvmw8AOF0BgC6dwCA42QBAL53AIDCdwCAxncAgMp3AICz0QEAzncAgNJ3AIDWdwCA2ncAgLaRAQC1+QEA3ncAgLu9AQC6vQEA4ncAgOZ3AIC/dQEAvnUBAL2FAQC8hQEAqL09AKkNPgCqGT4AqxE+AKwxPgCtUT4ArlE+AK9NPgCGdwCAgh0AAIEdAACAHQAA6ncAgO53AIDydwCA9ncAgLjVPgC53T4AutU+ALtJPwC8WT8AvVk/AL5JPwC/QT8AsDk+ALE5PgCyET4AsxE+ALTxPgC18T4AtvU+ALftPgCjkT4A+ncAgIYoAACHwAMA/ncAgKbRPgCluT4AAngAgKv9PgCq/T4ABngAgAp4AICvNT4ArjU+AK3FPgCsxT4ADngAgLOdPwASeACAFngAgLalPwAaeACAHngAgLWtPwC6aT8Au3U/ACJ4AIAmeACAvlk/AL9FPwC8bT8A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IoUAgOH8AQBWgwCAJoUAgO/IBgAqhQCALoUAgDKFAICzjQMANoUAgLWNAwA6hQCAPoUAgLa1AwBChQCARoUAgLtBAwC6SQMAvUEDALxZAwC/QQMAvkkDAKNFDACmhACAFoUAgEqFAIBOhQCApn0MAKVFDABShQCAq4kMAKqBDABWhQCAWoUAgK+JDACugQwArYkMAKyRDACAFQ8AgR0PAIIhDwCzIQ4AXoUAgLUhDgC2JQ4AYoUAgGaFAIBqhQCAusEOALvBDgC8wQ4AvcEOAL7BDgC/wQ4AqK0OAKntDgCq5Q4Aq/0OAKzlDgCt6Q4ArjkOAK85DgBuhQCAcoUAgHaFAIB6hQCAgB0AAIEJAACCvQEAfoUAgLjNDwC51Q8AutUPALvlDwC8/Q8AvZUPAL6RDwC/kQ8AsEkOALFJDgCyWQ4As1kOALRJDgC1SQ4Atv0PALf1DwCjbQ8AgoUAgL6EAQCKhQCAjoUAgKZpDwClbQ8AkoUAgKuNDwCqjQ8AhogAAIdsAQCvjQ8Aro0PAK2NDwCsjQ8AloUAgLPtDgCahQCAnoUAgLaRDgCihQCApoUAgLXhDgC6tQ4Au70OAKqFAICuhQCAvn0BAL9lAQC8mQ4AvZkOAKgRDgCpJQ4AqiEOAKs5DgCsLQ4ArVUOAK5dDgCvUQ4AhKgAALKFAIC2hQCAuoUAgL6FAIDChQCAxoUAgMqFAIC47QEAuZUBALqVAQC7rQEAvLUBAL11AQC+fQEAv3UBALA1DgCxPQ4AsgkOALMJDgC0/QEAteUBALblAQC31QEAo6kNAM6FAIDShQCA1oUAgNqFAICm1Q0ApaUNAN6FAICr+Q0AqvENAOKFAIDmhQCAryECAK45AgCt3Q0ArN0NAIANAACBFQAAgh0AAOqFAIDuhQCA8oUAgIeQAwCGfAQAvuwEAPqFAID+hQCAAoYAgAaGAIAKhgCADoYAgBKGAICyLQ4AszUOALAtDgCxJQ4Ati0OALedDwC0LQ4AtSUOALq9DwC7jQ8AuKUPALm9DwC+LQ8AvxUPALyVDwC9JQ8AFoYAgBqGAIAehgCAIoYAgCaGAIAqhgCALoYAgDKGAICqpQ4Aq7UOAKjFDgCp3Q4Arp0OAK9VDgCspQ4ArZUOAKgNAgCpFQIAqhUCAKtNAgCsWQIArVkCAK5NAgCvRQIAhKgFADaGAIA6hgCA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mogAgJ6IAIC+cAMAgGkAAIFpAACCeQAAhAAEAIbwBACHdAMAoogAgO8MHwCmiACA4aweAKqIAIDj8B4ArogAgLKIAIC2iACAuogAgL6IAIDCiACAxogAgMqIAIDvVAIAzogAgNKIAIDWiACA46QCANqIAIDhgAEA3ogAgOKIAIDmiACA6ogAgO6IAICzRQMA8ogAgPaIAID6iACA/ogAgLZFAwC1VQMAAokAgLshAwC6SQMAvqAEAAqJAIC/KQMAviEDAL01AwC8OQMAqDkCAKk5AgCqjQIAq4UCAKydAgCthQIAroUCAK+1AgCA7QEAgfUBAIL1AQAOiQCAhpAEAIcEBQASiQCAFokAgLhFAQC5TQEAukUBALtdAQC8SQEAvUkBAL55AQC/eQEAsM0CALGlAgCyrQIAs6ECALSlAgC1rQIAtp0CALd9AQAaiQCAHokAgCKJAIAmiQCAKokAgC6JAIAyiQCA74gBAITsBADhVB4ANokAgONUAQA6iQCAPokAgEKJAIBGiQCAo0UCAEqJAIBOiQCAUokAgFaJAICmRQIApVUCAFqJAICrIQIAqkkCAF6JAIBiiQCArykCAK4hAgCtNQIArDkCAKg1BgCpPQYAqlEGAKttBgCseQYArWUGAK5tBgCvZQYABokAgGaJAIBqiQCAbokAgIAZAACBGQAAggUAAHKJAIC45QYAuekGALr5BgC7+QYAvOkGAL3pBgC+nQYAv5UGALAdBgCx5QYAsu0GALPlBgC0/QYAteEGALbhBgC34QYAs9kGAL7QAwB2iQCAeokAgH6JAIC25QYAtfEGAIKJAIC7IQYAutkGAIaYAACHeAMAvyUGAL45BgC9MQYAvDkGAIaJAICjnQYAiokAgI6JAICmoQYAkokAgJaJAICltQYAqp0GAKtlBgCaiQCAnokAgK59BgCvYQYArH0GAK11BgCo7QcAqSkGAKoxBgCrMQYArJEGAK2RBgCukQYAr5EGAKKJAICmiQCAqokAgK6JAICyiQCAtokAgLqJAIC+iQCAuIUGALmNBgC6hQYAu50GALyNBgC9vQYAvrUGAL95AQCw8QYAsfEGALLxBgCzxQYAtMEGALXBBgC2wQYAt8EGALO5BgDCiQCAxokAgMqJAIDOiQCAthEGALUZBgDSiQCAuzUGALo1BgDWiQCA2okAgL8FBgC+BQYAvREGALwlBgClQQYA3okAgOKJAICmSQYAgRUAAIB5AACj4QYAghUAAK1JBgCsfQYAr10GAK5dBgCENAEAlogAgKttBgCqbQYAvswDAOqJAICzlQIA7okAgLXZAgDyiQCA9okAgLbRAgCGgAwAhzgDALvFAgC6xQIAvRUDALwVAwC/FQMAvhUDAPqJAID+iQCA71gGAIRAAwACigCABooAgAqKAIAOigCAEooAgBaKAIAaigCAHooAgOE4BgAiigCA4yQGAL5wDACsSQIArUkCAK5dAgCvVQIAqB0CAKkFAgCqBQIAq10CAISoDAAmigCAKooAgC6KAIC+vA0AMooAgDaKAIA6igCAvE0DAL1VAwC+VQMAv2UDALjpAwC56QMAul0DALtVAwC0yQMAtckDALbZAwC32QMAsBkCALEZAgCy2QMAs9kDAD6KAIDj5AAAQooAgOG8AQBGigCAgj0AAIE9AACAPQAASooAgE6KAIBSigCAWooAgF6KAIDvzAMAYooAgGaKAICj3QMAaooAgIboDACHYA0AbooAgKaZAwClkQMAcooAgKuNAwCqjQMAdooAgHqKAICvXQIArl0CAK1dAgCsXQIAfooAgIKKAICGigCAiooAgI6KAICSigCAlooAgO/gAQCEvAwA4YwGAJqKAIDjHAYAnooAgKKKAICmigCAqooAgLPVAQCuigCAsooAgLaKAIC6igCAtpEBALWZAQC+igCAu70BALq9AQDCigCAyooAgL+dAQC+nQEAvZ0BALydAQCoBQ4AqQkOAKodDgCrFQ4ArFEOAK1RDgCuSQ4Ar0kOAFaKAICCzQ8AgfUPAID9DwDGigCAzooAgIYcAACHsAMAuOkOALnpDgC6/Q4Au/UOALztDgC9VQ8AvlEPAL9NDwCwOQ4AsTkOALIJDgCzCQ4AtBkOALUZDgC2DQ4At9kOAKOVDgDSigCA1ooAgNqKAIDeigCAptEOAKXZDgDiigCAq/0OAKr9DgDmigCA6ooAgK/dDgCu3Q4Ard0OAKzdDgDuigCAs/0PAPKKAID2igCAtoEPAPqKAID+igCAtZkPALqNDwC7ZQ8AAosAgAaLAIC+fQ8Av2UPALx9DwC9dQ8AqC0OAKk1DgCqMQ4AqzEOAKxVDgCtRQ4ArkUOAK91DgAKiwCADosAgBKLAIAWiwCAGosAgB6LAIAiiwCAJosAgLjpDgC59Q4Auv0OALv1DgC87Q4AvZEOAL6RDgC/kQ4AsA0OALHlDgCy7Q4As+UOALT9DgC15Q4Atu0OALflDgCjuQ4Agi0AAIEVAACAHQAAKosAgKbFDgCl3Q4ALosAgKshDgCqyQ4AMosAgL4sAQCvIQ4ArjkOAK0xDgCsOQ4AOosAgLZVAQC1RQEANosAgLNVAQA+iwCAhngAAIdcAAC/OQEAvjEBAL0lAQC8JQEAuzEBALpZAQDmiQCAQosAgEaLAIBKiwCAhAQDAKOJAgBOiwCApZkCAKaJAgBSiwCAvyg5AFaLAICqhQIAq+0CAKz5AgCt+QIAru0CAK/lAgDjWAIA78AOAOGIAQBaiwCAXosAgGKLAIBmiwCAaosAgG6LAIByiwCAdosAgHqLAIDvKAIA4ygOAH6LAIDhRA4AqbUCAKhpDQCrAQIAqgkCAK0BAgCsGQIArzECAK4BAgC+AAQAgosAgIaLAICKiwCAjosAgJKLAICWiwCAmosAgLnlAwC45QMAu+UDALrlAwC95QMAvOUDAL/lAwC+5QMAsSECALBJAgCzJQIAsiUCALUpAgC0IQIAtxUCALYVAgCowQIAqdECAKr1AgCrDQEArBUBAK0FAQCuBQEArzkBAJ6LAICiiwCAqosAgK6LAICyiwCAtosAgLqLAIC+iwCAuC0BALk9AQC67QEAu+UBALz9AQC95QEAvu0BAL/lAQCwLQEAsTUBALI9AQCzNQEAtC0BALUVAQC2HQEAtxUBAIA9AQCBpQAAgq0AAO/YAACGsAUAh9gFAMKLAIDv1A8AhGwEAOH0DgDGiwCA4xwPAMqLAIDhlAEAzosAgOMMDgCzPQIA0osAgNaLAIDaiwCA3osAgLbFAQC13QEA4osAgLuxAQC6qQEA5osAgOqLAIC/kQEAvqkBAL2hAQC8qQEAposAgO6LAICqRQYAq10GAKxFBgCtTQYArkUGAK99BgDyiwCA9osAgPqLAICj0QUA/osAgKUxBgCmKQYAAowAgAaMAICCHQAAgR0AAIAdAAAKjACADowAgBKMAIC+lAMAFowAgBqMAICGSAMAh8wDAB6MAIAijACAJowAgCqMAICoqQcAqakHAKq5BwCruQcArKkHAK2pBwCuAQcArzUHAC6MAIAyjACANowAgDqMAIA+jACAQowAgEaMAIBKjACAuC0HALnBAAC66QAAu+kAALz5AAC95QAAvuUAAL+dAACwUQcAsV0HALItBwCzJQcAtD0HALUlBwC2JQcAtxUHALMxBgBOjACAUowAgFaMAIBajACAtikGALUhBgBejACAu5kGALqVBgBijACAZowAgL/hBgC++QYAvfEGALz5BgBqjACAo3UGAG6MAIByjACApm0GAHaMAIB6jACApWUGAKrRBgCr3QYAfowAgIKMAICuvQYAr6UGAKy9BgCttQYAqOUBAKn1AQCq/QEAq/UBAKztAQCtNQEArj0BAK81AQCA+QAAgc0AAILFAACEYAEAvngBAIqMAICHrAAAhpABALjRAAC52QAAuuEAALvhAAC8kQAAvZ0AAL6VAAC/iQAAsE0BALFVAQCyXQEAs1UBALRNAQC18QAAtvEAALfxAACzdQIAjowAgJKMAICWjACAmowAgLa1AgC1ZQIAnowAgLuRAgC6iQIAoowAgKaMAIC/NQMAvokCAL2BAgC8iQIAqowAgKMxAgCujACAhMADAKbxAgCyjACAtowAgKUhAgCqzQIAq9UCALqMAIC+jACArs0CAK9xAwCszQIArcUCAKuNAACqjQAAqY0AAKg5AwCvvQAArr0AAK2FAACsjQAAqgAAAKsAAADCjACAxowAgMqMAIDOjACA0owAgNaMAIC7fQAAun0AALl9AAC4fQAAv90BAL7dAQC93QEAvN0BALO5AACysQAAsaEAALCtAAC3XQAAtl0AALWVAAC0lQAA2owAgN6MAIDijACA5owAgIE1AACADQAA6owAgII1AAC+rD0A7owAgPKMAICFaD0A+owAgP6MAICGODwAh8ACALNJAQACjQCA0AAAAAaNAIAKjQCAtkkBALVJAQAOjQCAuykBALolAQASjQCAFo0AgL8dAQC+HQEAvSEBALwpAQDjNDYA4QwGAOGwAgDjPAYAGo0AgB6NAIAijQCAJo0AgIQsPwC+oD8AKo0AgC6NAIDvfDcAMo0AgDaNAIDvGAEAOo0AgD6NAICGaD4Ah8w/AEKNAIBGjQCASo0AgO+UAABOjQCA4ZQBAFKNAIDjUAAAVo0AgILpPwCB6T8AgPE/AKMJPgCPASQA9owAgFqNAIBejQCApgk+AKUJPgBijQCAq2k+AKplPgBmjQCAao0AgK9dPgCuXT4ArWE+AKxpPgCeYTgA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vY0CAL69AgC/fQMAsFkCALFZAgCy7QIAs+UCALT9AgC15QIAtuUCALfVAgCjUQUAEpIAgBaSAIAakgCAHpIAgKZ5BQClcQUAIpIAgKudAgCqnQIAJpIAgCqSAICvIQIArjkCAK0xAgCsOQIAghEAAC6SAICAZQAAgQkAADKSAIC+mAMAOpIAgD6SAICEJAMAQpIAgIdoAwCGjBwARpIAgEqSAIBOkgCAUpIAgFaSAIBakgCAs6ECAITAHAC10QIAXpIAgGKSAIC21QIAZpIAgGqSAIC7wQIAuvUCAL0RAQC82QIAvxEBAL4ZAQBukgCAcpIAgHaSAIB6kgCAfpIAgIKSAICGkgCA77gGAIqSAIDhnAQAjpIAgON0BgCSkgCAlpIAgJqSAICekgCAgPkAAIH5AACCBQAAopIAgL5YHACEWB8A71wAAO9ABgDhkAEA4fwGAOM8AADjdAYAqpIAgK6SAICGmBwAh/QcAKNpAgC+DB8AspIAgLaSAIC6kgCAph0CAKUZAgC+kgCAqwkCAKo9AgDCkgCAxpIAgK/ZAQCu0QEArdkBAKwRAgCokR0AqZkdAKqhHQCroR0ArNEdAK3dHQCu1R0Ar8kdADaSAICmkgCAypIAgM6SAIDSkgCA1pIAgNqSAIDekgCAuHkeALl5HgC6zR4Au8UeALzdHgC9xR4AvsUeAL/1HgCwuR0AsY0dALKFHQCzTR4AtFUeALVdHgC2VR4At0keALjNHwC51R8Aut0fALvVHwC88R8Avf0fAL7pHwC/6R8AsKUfALGxHwCysR8As40fALSVHwC19R8Atv0fALf1HwCoGR4AqRkeAKotHgCrPR4ArCUeAK0tHgCuJR4Ar90fAOKSAIDmkgCA6pIAgO6SAIDykgCAxpEAgPaSAID6kgCAs+UfAP6SAIACkwCABpMAgAqTAIC27R8Ate0fAA6TAIC7NR4AuiEeABKTAIAWkwCAv3EeAL4RHgC9GR4AvCUeAIJpAACjoR8AgFkAAIFRAACmqR8AGpMAgB6TAIClqR8AqmUeAKtxHgCGAAQAh+wBAK5VHgCvNR4ArGEeAK1dHgCoMR4AqTEeAKpBHgCrQR4ArEEeAK1JHgCucR4Ar3EeACKTAIAmkwCAKpMAgC6TAIAykwCANpMAgDqTAIA+kwCAuCkBALkpAQC6OQEAuzUBALwtAQC90QAA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qnkOAKshDgC2lQCAupUAgK4hDgCvKQ4ArDEOAK0xDgCoYQ4AqXUOAKp9DgCrdQ4ArG0OAK31DgCu/Q4Ar/UOAIaAAQCHpAEAvpUAgMKVAIDGlQCAypUAgM6VAIDSlQCAuHUBALl9AQC6dQEAu8kBALzdAQC9xQEAvsUBAL/1AQCwjQ4AsZUOALKdDgCzkQ4AtFUBALVdAQC2VQEAt00BALP1DgDWlQCA2pUAgN6VAIDilQCAtnUOALXlDgDmlQCAu1EOALpJDgDqlQCA7pUAgL+ZAQC+kQEAvUUOALxJDgDylQCAo7EOAPaVAID6lQCApjEOAP6VAIAClgCApaEOAKoNDgCrFQ4ABpYAgAqWAICu1QEAr90BAKwNDgCtAQ4AqO0CAKktAwCqJQMAqz0DAKwlAwCtLQMAriUDAK+ZAwAOlgCAEpYAgBaWAIAalgCAHpYAgCKWAIC+dAIAKpYAgLiNAwC5kQMAupEDALulAwC8vQMAvXUAAL59AAC/dQAAsOkDALHpAwCy+QMAs/EDALTZAwC12QMAtrkDALe1AwCArQAAgbUAAIK9AACzoQMALpYAgLWhAwC2oQMAMpYAgITgAgA2lgCAuiEDALshAwC8IQMAvSkDAL4RAwC/EQMAo+0DAIXABACFtG8AOpYAgD6WAICm7QMApe0DAEKWAICrbQMAqm0DAIZIBQCHbAMAr10DAK5dAwCtZQMArG0DAEaWAIDjAA4A71hsAOG0DwBKlgCATpYAgFKWAIBWlgCAoakDAKD9DwCjwQMAog0DAOHgAwDv4A8A4+QDAFqWAIBelgCAYpYAgIQEBAC+BAQAZpYAgO+UAwBqlgCAbpYAgHKWAIDj1AMAdpYAgOFUAAB6lgCAfpYAgIKWAICGlgCAgA0AAIEVAACCHQAAipYAgI6WAICSlgCAj5EbAO+cDgCE4AcA4dQOAJqWAIDj8A4AnpYAgKKWAICGGAcAh5AEAJnlFwCY5RcAm+kLAJo5CwCd/QoAnPELAJ9VDwCeXQ8AkSkfAJDNGwCTJR8Aks0fAJXREwCUKRMAlxkXAJZ1EwCM4RAAjSUQAI4tEACP+QwAJpYAgJaWAICKORQAi5UUAITpGACFBRgAhuUYAIfxFACmlgCAqpYAgIIxHACDFRwAnKkEAK6WAICylgCAtpYAgLqWAIC+lgCAmtEEAJt9BACUTQ0AleUIAJblCACXtQgAwpYAgMaWAICSWQwAk1kMAKGRAADKlgCAowF8AKKZAACluXwApJF8AKeZeACm4X0AqYF5AKiheACriXQAqgF0AK0BcACsWXQAr4VwAK6dcACx4WwAsAFsALMBaACyHWwAtfVoALT1aADOlgCA0pYAgNaWAIDalgCA3pYAgOKWAIDmlgCA6pYAgO6WAIDylgCAqD0HAKmVBwCqlQcAq6kHAKzdBwCtxQcArsUHAK8dBgD2lgCAgh0AAIEdAACAHQAA+pYAgP6WAIAClwCAvmABALgZBgC5GQYAuikGALslBgC8IQYAvSEGAL4hBgC/IQYAsHEGALFxBgCycQYAs3EGALRNBgC1NQYAtj0GALctBgCzHQcACpcAgIYoAACHqAAADpcAgLZFBwC1VQcAEpcAgLu1BgC6tQYAFpcAgBqXAIC/8QYAvokGAL2lBgC8pQYAHpcAgKNZBwAilwCAJpcAgKYBBwAqlwCALpcAgKURBwCq8QYAq/EGADKXAIA2lwCArs0GAK+1BgCs4QYAreEGAKipBQCptQUAqr0FAKs9AgCsJQIArVECAK5RAgCvUQIAOpcAgD6XAIBClwCARpcAgIQ8AwBKlwCATpcAgFKXAIC4pQIAua0CALqlAgC7vQIAvKUCAL2tAgC+pQIAv30DALAxAgCxMQIAshkCALMZAgC09QIAta0CALalAgC3nQIAVpcAgFqXAIBelwCAszkFAGKXAIC1oQIAtt0CAGaXAIBqlwCAbpcAgLr5AgC7+QIAvMECAL3BAgC+PQIAv2UCAHKXAICmgQIApf0CAHqXAICjZQUAvlh8AIbYfACHnHwArzkCAK5hAgCtnQIArJ0CAKulAgCqpQIAfpcAgIKXAICohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAIGFAQCAhQEAhpcAgILtAQCKlwCAjpcAgJKXAICWlwCAuHUBALl9AQC6dQEAu80BALzVAQC93QEAvskBAL/BAQCwtQIAsb0CALKBAgCzgQIAtFEBALVRAQC2UQEAt1EBAJqXAICelwCAopcAgKaXAIDhMAYA4WQHAOMoBgDjxAYAhCB9AKqXAIDvbAAA7xgGAK6XAICylwCAtpcAgLqXAICzXQIAvkh8AL6XAIDClwCAxpcAgLYVAgC1dQIAypcAgLs5AgC6MQIAzpcAgNKXAIC/1QEAvtUBAL0VAgC8FQIAo519AHaXAIDWlwCA2pcAgN6XAICm1X0ApbV9AOKXAICr+X0AqvF9AOaXAIDqlwCArxV+AK4VfgCt1X0ArNV9AIBNAACBVQAAglUAALOxfgDulwCAtWV/ALZtfwDylwCAhkADAIcEAwC66X8Au+l/ALz5fwC9+X8Avt1/AL/NfwD2lwCA+pcAgAaXAID+lwCAApgAgAaYAIAKmACADpgAgKhtfgCpXX4AqlV+AKuFfwCsgX8ArYF/AK6BfwCvgX8AsEF/ALFBfwCyQX8As0F/ALR1fwC1ZX8Atm1/ALdlfwC4XX8AuS1/ALolfwC7PX8AvC1/AL0dfwC+FX8Av/UAAKP9fwASmACAFpgAgBqYAIAemACApiF+AKUpfgAimACAq6V+AKqlfgAmmACAKpgAgK+BfgCukX4ArbV+AKy1fgAumACAMpgAgDaYAIA6mACAPpgAgEKYAIBGmACASpgAgIA9AACBCQAAghkAAE6YAIBSmACAhLgBAL6wAQBWmACAqK0BAKnVAQCq1QEAqw0BAKwVAQCtGQEArgkBAK8JAQCGAAQAhwQBAFqYAIBemACAYpgAgGaYAIBqmACAbpgAgLjtAAC5hQAAuo0AALuFAAC8nQAAvYUAAL6NAAC/hQAAsHkBALF5AQCy7QAAs+UAALT9AAC15QAAtuUAALfVAACzXQIAcpgAgHaYAIB6mACAfpgAgLaZAgC1nQIAgpgAgLu9AgC6vQIAhpgAgIqYAIC/IQMAvjkDAL0xAwC8OQMAvigDAKMZAgCOmACAkpgAgKbdAgCWmACAmpgAgKXZAgCq+QIAq/kCAJ6YAICimACArn0DAK9lAwCsfQMArXUDAL7IBACmmACAqpgAgL7EBQCumACAspgAgLaYAIC6mACAgD0AAIEJAACCGQAAvpgAgMKYAICEOAMAypgAgM6YAIDveAIA0pgAgIZIBACHVAMA1pgAgNqYAIDemACA4pgAgOaYAIDqmACA7pgAgPKYAIDjVAIA9pgAgOFAAQD6mACA/pgAgOMkfwACmQCA4Zx8AAaZAIAKmQCADpkAgBKZAICEbAUAFpkAgBqZAIAemQCAIpkAgO8YfwAmmQCAKpkAgLPxAgAumQCAMpkAgDqZAIA+mQCAtukCALXhAgBCmQCAu3EBALppAQCHoAUAhswEAL85AQC+WQEAvVEBALxhAQDhQH8ARpkAgOM4fgCEwAQAgtkAAO8UAACApQAAgdkAAEqZAIDjwAAATpkAgOHUAQBSmQCAVpkAgO+EfgBamQCAqs0BAKvVAQBemQCAYpkAgK79AQCvnQEArMUBAK31AQBmmQCAo1UCAGqZAIBumQCApk0CAHKZAIB2mQCApUUCAMaYAIA2mQCAepkAgH6ZAICCmQCAhpkAgIqZAICOmQCAqJkGAKmZBgCq7QYAq/0GAKzlBgCt7QYAruUGAK/dBgCwpQYAsa0GALKlBgCzuQYAtK0GALVVBwC2UQcAt00HALh1BwC5fQcAunUHALtJBwC8WQcAvVkHAL5JBwC/RQcAs0UGAJKZAICWmQCAmpkAgJ6ZAIC2TQYAtU0GAKKZAIC7SQYAukEGAIYIAACHjAAAv7EHAL5JBgC9TQYAvFEGAIJdAACjAQYAgEUAAIFdAACmCQYAqpkAgK6ZAIClCQYAqgUGAKsNBgCymQCAtpkAgK4NBgCv9QcArBUGAK0JBgCoTQYAqVUGAKpVBgCriQYArLEGAK29BgCuqQYAr6kGAKaZAIC6mQCAvpkAgMKZAIDGmQCAypkAgM6ZAIDSmQCAuEkBALlJAQC6WQEAu1kBALxJAQC9SQEAvt0BAL/VAQCw3QYAsa0GALKlBgCzjQYAtJkGALWZBgC2jQYAt4UGALPdBgDWmQCA2pkAgN6ZAIDimQCAtj0GALU5BgDmmQCAu2kGALoZBgDqmQCA7pkAgL9dBgC+XQYAvVkGALxxBgDymQCAo5kGAPaZAID6mQCApnkGAP6ZAIACmgCApX0GAKpdBgCrLQYABpoAgAqaAICuGQYArxkGAKw1BgCtHQYAqNUCAKndAgCq4QIAq+ECAKw1AwCtPQMArjUDAK8tAwCAzQMAgQkAAIIZAAAOmgCAEpoAgIQYAgC+dAMAGpoAgLjpAwC56QMAuokDALuFAwC8nQMAvYEDAL6BAwC/tQMAsFUDALFdAwCyVQMAs+kDALT5AwC1+QMAtukDALfhAwCGIAwAhxADAB6aAIAimgCAJpoAgCqaAIAumgCA71wCADKaAIDhFAAANpoAgOOIAgC++AwAOpoAgD6aAIBCmgCAu/kDALrxAwC+gA0ARpoAgL9dAwC+XQMAvV0DALzhAwCzCQIASpoAgE6aAIBSmgCAVpoAgLbdAwC13QMAWpoAgKipBgCpqQYAqrkGAKu5BgCsqQYArakGAK4dBQCvFQUAXpoAgGKaAIBmmgCAapoAgG6aAIBymgCAdpoAgHqaAIC4GQUAuS0FALolBQC7yQUAvNkFAL3FBQC+zQUAv8UFALBtBQCxdQUAsnUFALNFBQC0XQUAtT0FALY1BQC3KQUA4fQGAOFUBwDjFAYA47wGAIEJAACAqQAAfpoAgII5AACE7A0AgpoAgIeIDACGDAwAipoAgI6aAIDvzAcA78QHAKMpAwCSmgCAlpoAgJqaAICemgCApv0CAKX9AgCimgCAq9kCAKrRAgCmmgCAqpoAgK99AgCufQIArX0CAKzBAgCoPQ4AqY0OAKqFDgCrnQ4ArIUOAK2NDgCuuQ4Ar7UOAIaaAICumgCAspoAgLaaAIC6mgCAvpoAgMKaAIDGmgCAuL0OALllDwC6bQ8Au2UPALx9DwC9ZQ8Avm0PAL9lDwCw1Q4Asd0OALLVDgCzoQ4AtJUOALWdDgC2lQ4At40OALMNDgDKmgCAzpoAgNKaAIDWmgCAtg0OALUNDgDamgCAuxkOALoRDgDemgCAFpoAgL9ZDgC+UQ4AvXUOALwBDgDimgCAo0kOAOaaAIDqmgCApkkOAO6aAIDymgCApUkOAKpVDgCrXQ4AhKQDAPaaAICuFQ4Arx0OAKxFDgCtMQ4AqLEOAKmxDgCqzQ4Aq8UOAKzdDgCtxQ4ArsUOAK/1DgCA7QEAgfEBAILxAQD6mgCAhpABAIe0AQD+mgCAApsAgLjFAQC5zQEAusUBALvdAQC8zQEAvf0BAL6ZAQC/lQEAsI0OALFBAQCyQQEAs0EBALRBAQC1QQEAtkEBALdBAQCzRQ4ABpsAgAqbAIAOmwCAEpsAgLZFDgC1VQ4AFpsAgLuFAQC6SQ4AGpsAgB6bAIC/hQEAvoUBAL2VAQC8lQEAIpsAgKMBDgAmmwCAKpsAgKYBDgAumwCAMpsAgKURDgCqDQ4Aq8EBADabAIA6mwCArsEBAK/BAQCs0QEArdEBAKgtAwCpPQMAqjUDAKuJAwCsmQMArZkDAK6JAwCvgQMAPpsAgEKbAIBGmwCASpsAgE6bAIBSmwCAVpsAgFqbAIC4rQMAuWUAALptAAC7ZQAAvH0AAL1lAAC+bQAAv2UAALDJAwCxyQMAsqkDALOlAwC0vQMAtaEDALahAwC3lQMAgL0AAIEJAACCGQAAXpsAgGKbAIC+2AMAapsAgG6bAICErAIAcpsAgIfoAwCGDAQAdpsAgHqbAIB+mwCAgpsAgLP9AwCGmwCAipsAgI6bAICSmwCAtlkDALVRAwCWmwCAu00DALpNAwCamwCAnpsAgL8lAwC+OQMAvTEDALw9AwCimwCAppsAgKqbAICumwCA71gPALKbAIC2mwCAupsAgOOQDgC+mwCA4bAPAMKbAIDGmwCAypsAgM6bAIDSmwCAgHUAAIF9AACCdQAAhBgFAO88AwDamwCAvhQFAN6bAIDj0AMA4psAgOFAAADmmwCAhtAEAIdYBQDqmwCA7psAgPKbAID2mwCA+psAgP6bAIACnACABpwAgAqcAIDvrA8AhOwEAOEQDgAOnACA41QBABKcAIAWnACAGpwAgB6cAICj/QIAIpwAgCacAIAqnACALpwAgKZZAgClUQIAMpwAgKtNAgCqTQIANpwAgDqcAICvJQIArjkCAK0xAgCsPQIAqJkGAKmZBgCqrQYAq70GAKylBgCtrQYArqUGAK/ZBgDWmwCAghEAAIEZAACAwQcAPpwAgEKcAIC+cAMARpwAgLhJBwC5SQcAul0HALtVBwC8TQcAvXEHAL51BwC/bQcAsKkGALGpBgCyuQYAs7EGALSZBgC1mQYAtnkHALd5BwC1NQYASpwAgE6cAIC2NQYAhjAAAIdcAwCzPQYAUpwAgL19BgC8dQYAv0UGAL5FBgBmmwCAVpwAgLt1BgC6dQYAo2UGAFqcAIBenACAYpwAgGacAICmbQYApW0GAGqcAICrLQYAqi0GAG6cAIBynACArx0GAK4dBgCtJQYArC0GAKhVBgCpWQYAqm0GAKthBgCsaQYArWkGAK6ZBgCvmQYAdpwAgHqcAIB+nACAgpwAgIacAICKnACAjpwAgJKcAIC4+QYAufkGALqNBgC7hQYAvJ0GAL2FBgC+hQYAv7UGALDpBgCx6QYAsvkGALP5BgC06QYAtd0GALbJBgC3yQYAs+UGAJacAICanACAnpwAgKKcAIC26QYAteEGAKacAIC7LQYAui0GAKqcAICunACAvxkGAL4tBgC9LQYAvC0GAIIVAACjoQYAgGEAAIFhAACmrQYAspwAgL6QAQClpQYAqmkGAKtpBgCEpAEAupwAgK5pBgCvXQYArGkGAK1pBgCohQIAqY0CAKqVAgCruQIArNUCAK3dAgCu1QIAr80CAIaAHACHZAMAvpwAgL5gAwDCnACAxpwAgMqcAIDOnACAuHUDALl9AwC6dQMAu8kDALzZAwC92QMAvskDAL/BAwCwvQIAsY0CALKFAgCzTQMAtFUDALVdAwC2VQMAt00DALMdAgDSnACAhAgDANacAIDanACAtl0CALVdAgDenACAu0kCALp5AgDinACA5pwAgL+ZAwC+kQMAvZkDALxRAgCwAAAAo1kCAOqcAIDunACAphkCAPKcAID2nACApRkCAKo9AgCrDQIA+pwAgP6cAICu1QMAr90DAKwVAgCt3QMAAp0AgAadAIAKnQCA76wGAA6dAIASnQCAFp0AgBqdAIC+6BwAHp0AgCKdAIAqnQCALp0AgOGABwAynQCA42AGAIBdAACBYQAAgmEAALN9AQA2nQCAtW0BALZlAQA6nQCAhiAdAIdYHQC6+QEAu/EBALzZAQC92QEAvrEBAL+xAQDvoAAAPp0AgEKdAIBGnQCASp0AgE6dAIBSnQCA71wBAIRsHADhzAYAVp0AgOMcBgDjSAAAWp0AgOEwAQBenQCAo/EBAGKdAICFABQAZp0AgGqdAICm6QEApeEBAG6dAICrfQEAqnUBAHKdAIB2nQCArz0BAK49AQCtVQEArFUBAKjtHQCpLR4AqjkeAKs5HgCsKR4ArSkeAK6dHgCvkR4AJp0AgHqdAIB+nQCAgp0AgIadAICC+QAAgfEAAID9AAC4qR4AuakeALpJHwC7SR8AvFkfAL1FHwC+TR8Av0UfALDxHgCx+R4AssEeALPBHgC0uR4AtbkeALatHgC3pR4AsBEfALERHwCyER8AsyUfALQlHwC1KR8Atl0fALdRHwC4cR8AuXkfALpBHwC7QR8AvJUAAL2dAAC+lQAAv40AAIqdAIC2nACAjp0AgJKdAICWnQCAmp0AgIb4AwCH0AAAqM0fAKnVHwCq0R8Aq70fAKytHwCtcR8ArnEfAK9xHwCzOR4Anp0AgKKdAICmnQCAqp0AgLaRHgC1RR4Arp0AgLu1HgC6tR4Asp0AgLadAIC/jR4AvoEeAL2RHgC8pR4Aup0AgKN9HgC+nQCAwp0AgKbVHgDGnQCAyp0AgKUBHgCq8R4Aq/EeAM6dAIDSnQCArsUeAK/JHgCs4R4A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gqIAgIaiAICKogCAjqIAgO9EBgCSogCA4dQGAJaiAIDjDAcAmqIAgJ6iAICiogCApqIAgLP1AQCqogCArqIAgLKiAIC2ogCAtkUBALXlAQC6ogCAuzEBALopAQC+ogCAwqIAgL8dAQC+HQEAvRkBALwlAQCoLT4AqTU+AKo9PgCrNT4ArC0+AK2FPgCuhT4Ar7k+AGaiAIDGogCAyqIAgM6iAICAGQAAgRkAAIIFAADSogCAuLk+ALm5PgC6ST8Au0k/ALxZPwC9WT8Avk0/AL9BPwCwrT4AsbU+ALKxPgCzjT4AtJk+ALWZPgC2iT4At4k+AKO1PgCEjAIA1qIAgNqiAIDeogCApgU+AKWlPgDiogCAq3E+AKppPgCGCAAAh2gDAK9dPgCuXT4ArVk+AKxlPgDmogCAs5E/AOqiAIDuogCAtlk/APKiAID2ogCAtbk/ALp1PwC7fT8A+qIAgP6iAIC+QT8Av0E/ALxZPwC9VT8AsJU+ALGdPgCyqT4As6U+ALShPgC1oT4AtqE+ALehPgC45T4Aue0+ALrlPgC7/T4AvO0+AL3dPgC+1T4AvxkBAAKjAIAGowCACqMAgA6jAIASowCA9qEAgBajAIAaowCAqF0+AKkhPgCqPT4AqzU+AKwVPgCt/T4ArvU+AK/tPgCj1T4AHqMAgCKjAIAmowCAKqMAgKYdPgCl/T4ALqMAgKs5PgCqMT4AMqMAgDajAICvBT4ArgU+AK0RPgCsHT4AgREAAIANAAA6owCAghkAAD6jAIBCowCAhJQBAL4QAACGQAcAhwABAEqjAIBOowCAUqMAgFajAIBaowCAXqMAgKiNAgCplQIAqpUCAKvNAgCs2QIArdkCAK7NAgCvxQIAYqMAgGajAIBqowCAbqMAgIwAAAByowCAdqMAgHqjAIC4HQMAucEDALrBAwC7wQMAvMEDAL3JAwC+8QMAv/EDALCJAgCxiQIAsikDALMpAwC0OQMAtTkDALYpAwC3JQMAsx0CAH6jAICCowCAhqMAgIqjAIC2WQIAtVECAI6jAIC7TQIAuk0CAJKjAICWowCAv/0DAL79AwC9/QMAvP0DAJqjAICeowCAoqMAgKajAIDhDD4AqqMAgOOoPwCuowCAgT0AAIAxAADvUD8Agh0AALKjAIC++AQAhhgFAIdMAwCEDAIA48wAALqjAIDhvAEA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tUkCACKmAIC7hQIAuoUCACamAIAqpgCAv4UCAL6FAgC9lQIAvJUCAIU8GgCjVQIALqYAgDKmAICmDQIANqYAgDqmAIClDQIAqsECAKvBAgA+pgCAQqYAgK7BAgCvwQIArNECAK3RAgCCGQAARqYAgIAZAACBGQAASqYAgE6mAIBSpgCAWqYAgL4ABABepgCAYqYAgGamAIBqpgCAbqYAgHKmAIB2pgCA7+gOAHqmAICG6AQAh1ADAH6mAICCpgCA74ACAIamAIDhlAEAiqYAgONYAQCOpgCA4wAOAJKmAIDhaA0AlqYAgKhxAgCpcQIAqnECAKupAgCsuQIArbkCAK6pAgCvqQIAhKwFAJqmAICepgCAoqYAgKamAICqpgCArqYAgLKmAIC4bQEAuQ0BALoFAQC7GQEAvAkBAL09AQC+NQEAv9kBALDZAgCx2QIAsm0BALNlAQC0fQEAtWUBALZlAQC3VQEA4WAPAOP0AADjHA4A4bwBALamAICCOQAAgTEAAIA9AAC6pgCAvigEAL6mAIDCpgCAvjwHAO8QAADv0A4AyqYAgIbgBACHyAQAzqYAgLO1AgDSpgCAtX0CALZ1AgDWpgCA2qYAgN6mAIC6UQIAu1ECALz1AQC9/QEAvvUBAL/tAQBWpgCAxqYAgKqxBQCrsQUArBUGAK0dBgCuFQYArw0GAOKmAIDmpgCA6qYAgKNVBQDupgCApZ0FAKaVBQDypgCAs+kGAPamAID6pgCA/qYAgAKnAIC24QYAtekGAAanAIC7sQYAuqEGAAqnAIAOpwCAv50GAL6RBgC9pQYAvKkGAKgdBgCpIQYAqiEGAKshBgCsIQYArSEGAK4hBgCvIQYAEqcAgBanAIAapwCAHqcAgCKnAIAmpwCAKqcAgC6nAIC45QcAue0HALrlBwC7/QcAvOUHAL3tBwC+5QcAv00HALAlBgCxNQYAsj0GALMxBgC0FQYAtRkGALYNBgC3AQYAo6kHAIIVAACBtQEAgLUBADKnAICmoQcApakHADanAICr8QcAquEHAISgAgA6pwCAr90HAK7RBwCt5QcArOkHAD6nAICzlQYAhugAAIcYAQC2tQYAQqcAgEanAIC1vQYAukkBALtVAQBKpwCATqcAgL45AQC/OQEAvEUBAL05AQCoPQYAqU0GAKpZBgCrUQYArHEGAK1xBgCuuQEAr7kBAISsAQBSpwCAVqcAgFqnAIBepwCAYqcAgGanAIBqpwCAuKkBALmpAQC6aQEAu2kBALx5AQC9eQEAvmkBAL9pAQCwyQEAsdUBALLVAQCzqQEAtLkBALW5AQC2qQEAt6EBAKPRBQBupwCAcqcAgHanAIB6pwCApvEFAKX5BQB+pwCAqxECAKoNAgCCpwCAhqcAgK99AgCufQIArX0CAKwBAgCKpwCAjqcAgJKnAICWpwCAgTEAAIANAACapwCAgjkAAJ6nAICipwCAviQDAKqnAICupwCAsqcAgIbYHACHTAMAtqcAgLqnAIC+pwCAhMAcAOMgAQDCpwCA4cgBAManAIDvMAIAyqcAgM6nAIDSpwCA1qcAgNqnAIDepwCA4qcAgLOVAwDmpwCA6qcAgO6nAIDypwCAtrkDALWxAwD2pwCAu1EDALpJAwD6pwCA/qcAgL/1AAC+SQMAvUEDALxJAwCoLQIAqUUCAKpdAgCrVQIArHkCAK15AgCuvQIAr7UCAL5oHQACqACABqgAgAqoAICAHQAAgQkAAIKpAAAOqACAuFEBALlZAQC6YQEAu2EBALwRAQC9EQEAvhEBAL8RAQCwzQIAsdUCALLdAgCz1QIAtM0CALVxAQC2cQEAt3EBAOFYBgDhVAcA47AAAOO8BgASqACAGqgAgIYYHACHVB0AHqgAgCKoAIAmqACAKqgAgL74HAAuqACA7/AGAO/gBgCjlQIAMqgAgDaoAIA6qACAPqgAgKa5AgClsQIAQqgAgKtRAgCqSQIARqgAgEqoAICv9QEArkkCAK1BAgCsSQIAqG0eAKl1HgCqfR4Aq40eAKyVHgCtnR4Aro0eAK+BHgAWqACATqgAgFKoAIBWqACAWqgAgF6oAIBiqACAZqgAgLiJHgC5iR4AupkeALuRHgC8uR4AvbkeAL59HwC/dR8AsMUeALHNHgCyxR4As90eALTFHgC1zR4AtsUeALe5HgCz9R4AaqgAgG6oAIByqACAdqgAgLYdHgC1HR4AeqgAgLsJHgC6AR4AfqgAgIKoAIC/CR4AvgEeAL0JHgC8ER4Agm0AAKOxHgCAVQAAgWUAAKZZHgCEmAMAv9ABAKVZHgCqRR4Aq00eAIYABACHmAEArkUeAK9NHgCsVR4ArU0eAIqoAICOqACAhCQAAJKoAICWqACAmqgAgKanAICGqACA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5qsAgIR0BwDqqwCA72gBAO6rAIDyqwCApXkCAKbNAQD2qwCAgCEAAIEhAACC3QcAo2kCAKzJAQCtyQEArqEBAK+hAQD6qwCA/qsAgKrpAQCr4QEAlqsAgAKsAIC+QAIABqwAgIYwAwCHMAMACqwAgA6sAICoOQcAqTkHAKoNBwCrHQcArAUHAK0NBwCuBQcAr3kHALAJBwCxCQcAshkHALMRBwC0OQcAtTkHALbdBwC3yQcAuPkHALn5BwC6zQcAu8EHALzFBwC9yQcAvrkHAL+xBwCzpQcAEqwAgBasAIAarACAHqwAgLatBwC1rQcAIqwAgLvtBwC67QcAJqwAgCqsAIC/3QcAvt0HAL3lBwC87QcALqwAgKPhBwAyrACANqwAgKbpBwA6rACAPqwAgKXpBwCqqQcAq6kHAEKsAIBGrACArpkHAK+ZBwCsqQcAraEHAEqsAIBOrACAUqwAgFasAIBarACAXqwAgGKsAIBmrACAgREAAIANAABqrACAghkAAG6sAIByrACAvuQBAHasAICG4AAAhxgBAHqsAIB+rACAgqwAgIasAICKrACA77AEAI6sAIDh1AYAkqwAgONcBACWrACAmqwAgJ6sAICirACAqJkBAKmZAQCqDQEAqwUBAKwdAQCtBQEArgUBAK81AQCEiAEApqwAgKqsAICurACAsqwAgLasAIC6rACAvqwAgLjBAAC5wQAAusEAALvBAAC8wQAAvcEAAL7BAAC/wQAAsE0BALElAQCyIQEAsyEBALQlAQC1LQEAthEBALcRAQDCrACAxqwAgLONAgDKrACAtZ0CAM6sAIDSrACAto0CANasAIDarACAu+kCALqBAgC9/QIAvP0CAL/hAgC+6QIA3qwAgKbVAgClxQIAvggDAKPVAgCCLQAAgRkAAIB5AACvuQIArrECAK2lAgCspQIAq7ECAKrZAgDirACA6qwAgO80AgDurACAhxgDAIYs/ADyrACA9qwAgPqsAID+rACAAq0AgAatAIAKrQCADq0AgOMAAQASrQCA4eABABatAIC6tQMAu70DABqtAIAerQCAvnkDAL95AwC8pQMAvXkDACarAICztQMAIq0AgCatAIC2kQMAKq0AgC6tAIC1pQMAqEkCAKlJAgCqWQIAq1kCAKxJAgCtdQIArnECAK9tAgC+aP0AvqT/ADKtAIA2rQCA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s1kGAA2yAIARsgCAFbIAgBmyAIC2ZQYAtXUGAB2yAIC7KQYAuiEGACGyAIAlsgCAvxUGAL4VBgC9JQYAvC0GAKOZBgCPmfwAKbIAgDGyAIA1sgCApqUGAKW1BgA5sgCAq+kGAKrhBgCGKB8Ah5wAAK/VBgCu1QYAreUGAKztBgCebQkAn30HAJwNCwCd7QkAmvENAJs5DQCY5fAAmQ0PAJbh8QCX6fEAlMX1AJUN8wCSHfcAk/H1AJD9+QCR7fkAgh3/AIMB+gA9sgCAQbIAgIYV9gCHOfYAhAn6AIXx9ACKwfAAiyXyAEWyAIBJsgCAjuEMAI8VDgCMNfIAjQHzAJKtDgCTgQgATbIAgFGyAICW6QQAl3UGAJR5CgCV8QoAmtEGAJvJAABVsgCAWbIAgIEdAwCAHQMAnFkCAIL1AwCrARAAqpUWAKmNFgCojRYAr5UuAK4BLACt/RIArJkSAKOlHgCipR4AoY0CAN2wAICnGRoAppUaAKUBGACknR8AXbIAgGGyAIBlsgCAabIAgG2yAIBxsgCAdbIAgHmyAICz5SoAsuUqALGtLwCw5S4AfbIAgIGyAIC1ASQAtBEqAKgpAwCpNQMAqj0DAKs1AwCsLQMArbUDAK69AwCvtQMAhbIAgImyAICNsgCAkbIAgIAdAACBCQAAgrkAAJWyAIC4TQIAuV0CALptAgC7CQIAvBkCAL0ZAgC+CQIAvwECALDNAwCx1QMAst0DALPVAwC0zQMAtXUCALZ9AgC3dQIAmbIAgITIHQChsgCAvgwfAKWyAICpsgCA70gGAO9YBwDhWAYA4ZgGAOOUAQDjAAYAhhAcAId8HQC+9B4ArbIAgLGyAIC2ZQMAtfUDALWyAICz5QMAubIAgL2yAIDBsgCAv+ECAL5ZAwC9UQMAvFkDALtBAwC6WQMAxbIAgMmyAIAtsgCAnbIAgM2yAIDRsgCA1bIAgNmyAIDdsgCA4bIAgKitHQCptR0AqrUdAKslHgCsPR4ArR0eAK4VHgCvdR4AsA0eALEtHgCyJR4As40eALSVHgC1nR4AtpUeALeNHgC4tR4Aub0eALq1HgC7nR4AvIUeAL1VHwC+XR8Av1UfALMdHQDlsgCA6bIAgO2yAIDxsgCAtr0eALWVHgD1sgCAu8keALrpHgD5sgCA/bIAgL95HgC+cR4AvXkeALzRHgCCKQAA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vPkBAL35AQC+mQEAv5UBALAFAQCxDQEAsgUBALMdAQC0BQEAtQ0BALYFAQC3+QEA4WQPAOGcDwDjFA4A49QPAJ22AIDhPA4AobYAgOPkAAC+rAQApbYAgKm2AIDvDAAArbYAgLG2AIDvYA4A77QPALW2AIC5tgCAhEQEALNhAgC9tgCAtWECALZhAgDBtgCAxbYAgMm2AIC6jQEAu4UBALydAQC9hQEAvo0BAL+FAQCjrQUAjbYAgM22AIDRtgCA1bYAgKatBQClrQUA2bYAgKtJBgCqQQYA3bYAgOG2AICvSQYArkEGAK1JBgCsUQYA5bYAgOm2AIDttgCA8bYAgIAdAACBCQAAgjkAAPW2AID5tgCA/bYAgIbIAACHIAMAAbcAgAW3AIAJtwCADbcAgKhtBgCptQcAqr0HAKsdBwCsCQcArTEHAK4xBwCvLQcAhKgDABG3AIAVtwCAGbcAgB23AIAhtwCAJbcAgCm3AIC4zQAAudUAALrVAAC75QAAvP0AAL2VAAC+nQAAv5UAALBVBwCxJQcAsi0HALM9BwC0LQcAtRUHALYdBwC39QAALbcAgOG8BgAxtwCA4/QFADW3AIA5twCAPbcAgEG3AIBFtwCASbcAgE23AIBRtwCAVbcAgFm3AIBdtwCA7+gEALN1BgCCLQAAgRUAAIAdAABhtwCAtvEGALXBBgBltwCAu6EGALrRBgBptwCAvmwBAL+RBgC+qQYAvakGALy5BgCjtQYAcbcAgIYoAACHTAEAdbcAgKYxBgClAQYAebcAgKthBgCqEQYAfbcAgIG3AICvUQYArmkGAK1pBgCseQYAhbcAgLO9AQCJtwCAjbcAgLZ5AQCRtwCAlbcAgLV5AQC6VQEAu10BAJm3AICdtwCAvvkAAL/lAAC8RQEAvf0AAKhxAgCpcQIAqnECAKtxAgCstQIArb0CAK61AgCvrQIAhOw8AKG3AICltwCAqbcAgK23AICxtwCAtbcAgLm3AIC4XQMAuWUDALptAwC7ZQMAvH0DAL1lAwC+bQMAv2UDALDVAgCx3QIAstUCALNtAwC0eQMAtWUDALZtAwC3ZQMAHbYAgL23AIDBtwCAo/UCAMW3AIClMQIApjECAMm3AIDNtwCA0bcAgKodAgCrFQIArA0CAK21AwCusQMAr60DAIBlAACBCQAAghkAANW3AIDZtwCA4bcAgL4QPADltwCAhsA8AIcgAwDptwCA7bcAgPG3AID1twCA+bcAgP23AICohQIAqZUCAKqVAgCrpQIArL0CAK3VAgCu0QIAr9ECAAG4AIAFuACACbgAgA24AIARuACAFbgAgBm4AIAduACAuHUBALl9AQC6dQEAu8kBALzZAQC9xQEAvsUBAL/9AQCwtQIAsb0CALKBAgCzgQIAtFUBALVdAQC2VQEAt00BAOGkBgAhuACA41AGAL6APACEHDwAvoA/ACW4AIApuACALbgAgDG4AIA1uACAObgAgD24AIBBuACA7+AGAEW4AICBfQAAgHEAAEm4AICCBQAAUbgAgFW4AIDvTAAAWbgAgOGQAQBduACA41gBAGG4AIBluACAabgAgIZYPwCH/DwAs509AN23AIBNuACAbbgAgHG4AIC21T0AtbU9AHW4AIC7+T0AuvE9AHm4AIB9uACAvxk+AL4RPgC91T0AvNU9AIG4AICj2T0AhbgAgIm4AICmkT0AjbgAgJG4AICl8T0AqrU9AKu9PQCVuACAmbgAgK5VPgCvXT4ArJE9AK2RPQCoVT4AqVk+AKphPgCrYT4ArGE+AK1hPgCuYT4Ar2E+AISoAwCduACAobgAgKW4AICpuACArbgAgLG4AIC1uACAuEU/ALldPwC6VT8Au20/ALx1PwC9fT8AvnU/AL9tPwCwwT8AscE/ALLBPwCzwT8AtME/ALXBPwC2wT8At8E/AIC5AQCBuQEAggUAALm4AIDhgD4AwbgAgOMoPQDFuACAhoAAAIcEAQDvCD0AybgAgM24AIDRuACA1bgAgNm4AICzqT8AvbgAgN24AIDhuACA5bgAgLahPwC1qT8A6bgAgLtFPgC6RT4A7bgAgPG4AIC/RT4AvkU+AL1VPgC8VT4Ao2k/APW4AID5uACA/bgAgAG5AICmYT8ApWk/AAW5AICrhT4AqoU+AAm5AIANuQCAr4U+AK6FPgCtlT4ArJU+ABG5AICzGT4AFbkAgBm5AIC2IT4AHbkAgCG5AIC1MT4AuvEBALv5AQAluQCAKbkAgL6xAQC/vQEAvNEBAL3RAQCo0T0AqdE9AKrVPQCr6T0ArP09AK3lPQCu7T0ArxECAID5AwCBzQMAgsUDAIQkAwC+AAQAMbkAgIesAwCGvAQAuBkCALktAgC6JQIAu+kCALz5AgC9+QIA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eLsAgOE0AgB8uwCA4zQBAIC7AIDjCAwAhLsAgOEIDQChoQEAiLsAgKMJBQCibQMApc0EAKQRBQCnHRkAph0ZAKmhHQCoORkAq+kcAKqpHQCtkREArAEQAK8BFACuUREAsfkVALDlFQCz6WkAsgFoALUBbAC0eWkAjLsAgJC7AICUuwCAmLsAgJy7AICguwCAowkDAKIZDQCh/Q0AoP0NAIIlJgCDBToApLsAgKi7AICGqTwAhzU+AIQdOgCFPTsAiok+AIslMgCsuwCAsLsAgI6xNACPMTYAjD0yAI0tMgCSJTYAk9EIAIREAwC+wAQAlhULAJdVDgCUXQoAlVUKAJplDgCbiQ4AtLsAgLi7AIC8uwCAwLsAgJyBAADEuwCAuLUCALm9AgC6tQIAuwkCALwZAgC9GQIAvgkCAL8BAgCwdQ0AsX0NALJJDQCzSQ0AtJUCALWdAgC2lQIAt40CAKi9DQCpUQ0AqlUNAKtpDQCsfQ0ArWUNAK5tDQCvEQ0AZLsAgILtAQCBHQAAgB0AAMi7AIDMuwCAfboAgL5wBQCznQwAhIwFANC7AIDYuwCA3LsAgLalDAC1tQwA4LsAgLv5DAC68QwAhigFAIcgBQC/GQMAvhEDAL3dDAC83QwA5LsAgKPZDADouwCA7LsAgKbhDADwuwCA9LsAgKXxDACqtQwAq70MAPi7AID8uwCArlUDAK9dAwCsmQwArZkMAAC8AIAEvACACLwAgAy8AIAQvACAFLwAgBi8AIDvvAEAHLwAgOF8DgAgvACA41ABACS8AIAovACALLwAgDC8AICzlQIANLwAgDi8AIA8vACAQLwAgLa9AgC1uQIASLwAgLs5AgC6YQIAhsgEAIesBAC/GQIAvhECAL0ZAgC8IQIAo1UFAILVBwCBxQcAgMUHAEy8AICmfQUApXkFAFC8AICr+QUAqqEFAFS8AIBYvACAr9kFAK7RBQCt2QUArOEFAFy8AICzWQcAYLwAgGS8AIC2HQcAaLwAgGy8AIC1FQcAugkHALsJBwBwvACAdLwAgL75BwC/+QcAvPkHAL35BwDUuwCARLwAgHi8AIB8vACAgLwAgIS8AICIvACAjLwAgKitBwCptQcAqrUHAKvtBwCs+QcArfkHAK7tBwCv5QcAsKkHALGpBwCySQcAs0kHALRZBwC1WQcAtkkHALdJBwC4eQcAuUUHALpBBwC7XQcAvEUHAL1NBwC+RQcAvzkHAKMdBgCQvACAlLwAgJi8AICcvACAplkGAKVRBgCgvACAq00GAKpNBgCkvACAqLwAgK+9BgCuvQYArb0GAKy9BgCAbQAAgQkAAIIZAACsvACAsLwAgISYAQC+kAEAtLwAgIYAHACHxAEAuLwAgLy8AIDAvACAxLwAgMi8AIDMvACAqF0GAKmVAQCqlQEAq6UBAKy9AQCt1QEArtEBAK/RAQDQvACA1LwAgNi8AIDcvACA4LwAgOS8AIDovACA7LwAgLhZAQC5WQEAus0AALvFAAC83QAAvcUAAL7FAAC/9QAAsLUBALG9AQCygQEAs4EBALR5AQC1eQEAtmkBALdpAQCzHQIA8LwAgPS8AIC+gBwA+LwAgLZVAgC1NQIA/LwAgLt5AgC6cQIAAL0AgAS9AIC/vQIAvr0CAL1VAgC8VQIACL0AgKNZAgAMvQCAEL0AgKYRAgAUvQCAGL0AgKVxAgCqNQIAqz0CABy9AIAgvQCArvkCAK/5AgCsEQIArRECACi9AIAsvQCAvgQdAL4AHgAwvQCANL0AgDi9AIA8vQCAgPkAAIHNAACCxQAAhCADAIawHACHlAMAQL0AgES9AIBIvQCATL0AgFC9AIBUvQCA42wCAFi9AIDhoAEAXL0AgO8UAgBgvQCAZL0AgGi9AIBsvQCAcL0AgHS9AIB4vQCA4fAGAOE0BgDjTAAA4xgGAHy9AICAvQCAhL0AgIi9AICAPQAAgQkAAIIZAACMvQCAkL0AgIS8HQDvmAAA7zgHALMxAgDRAAAAh9gdAIZsHACYvQCAtikCALUhAgCcvQCAu80CALrNAgCgvQCApL0AgL/NAgC+zQIAvc0CALzNAgCyXQYAs2UGALANBgCxVQYAtn0GALedBQC0fQYAtXUGALqNBQC7zQUAuKUFALmFBQC+xQUAv8kFALzVBQC9zQUAqL0AgKy9AICwvQCAtL0AgLi9AIC8vQCAwL0AgMS9AICqtQYAq70GAKgBBwCpvQYAroEGAK+NBgCsmQYArZUGAKNxHQDIvQCAzL0AgNC9AIDUvQCApmkdAKVhHQDYvQCAq40dAKqNHQDcvQCA4L0AgK+NHQCujR0ArY0dAKyNHQDkvQCAs9UeAOi9AIDsvQCAts0eAPC9AID0vQCAtcUeALqhHgC7oR4A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s5EOAPDFAID0xQCAtqUOAPjFAID8xQCAta0OALrhDgC74Q4AAMYAgATGAIC+6Q4Av9UOALz1DgC96Q4Ao6UKAAjGAIAMxgCAEMYAgBTGAICmzQ0Apc0NABjGAICrbQwAqm0MABzGAIAgxgCArz0MAK49DACtVQwArFUMAKgJDgCpCQ4Aqh0OAKsVDgCsIQ4ArSEOAK4hDgCvIQ4AJMYAgCjGAIAsxgCAMMYAgDTGAIA4xgCAPMYAgEDGAIC4zQEAudUBALrdAQC71QEAvM0BAL1RAQC+UQEAv1EBALAhDgCxIQ4AsiUOALM5DgC0KQ4AtRUOALYdDgC39QEARMYAgEjGAIBMxgCAo5kNAFDGAIClpQ0Apq0NAL7cAgCE7AMAWMYAgKrpDQCr6Q0ArP0NAK3hDQCu4Q0Ar90NAIBFAACBTQAAglkAAKNFAwBcxgCApUEDAKZBAwBgxgCAhsAEAIcAAwCqLQMAqyUDAKw9AwCtJQMAriUDAK8VAwCoWQIAqYUDAKqBAwCrgQMArIUDAK2NAwCusQMAr7EDAGTGAIBoxgCAbMYAgHDGAIB0xgCAeMYAgHzGAICAxgCAuGUDALltAwC6ZQMAu30DALxlAwC9bQMAvmUDAL/dAACwpQMAsa0DALKlAwCzvQMAtK0DALWdAwC2lQMAt10DALMJAgCExgCAiMYAgIzGAICQxgCAtg0CALUNAgCUxgCAu2kCALphAgCYxgCAnMYAgL9ZAgC+aQIAvWkCALxxAgCgxgCApMYAgKjGAICsxgCA4aABALDGAIDjaAMAtMYAgIEVAACAFQAA74wDAIIVAAC4xgCAvMYAgMDGAIC+cAUA4RgOAOGUDwDjOA8A49QPAISUAgDIxgCAzMYAgNDGAIDUxgCA2MYAgNzGAIDgxgCA5MYAgOjGAIDv7AEA7/gPAIZgBACHBAUAs5UBAITMBQC1dQEA7MYAgPDGAIC2dQEA9MYAgPjGAIC7UQEAulkBAL31AAC8SQEAv/UAAL71AACoJQYAqVUGAKpVBgCrrQYArLUGAK29BgCutQYAr60GAMTGAID8xgCAAMcAgATHAIAIxwCADMcAgBDHAIAUxwCAuGkHALlpBwC6CQcAuwkHALwZBwC9GQcAvg0HAL8BBwCw1QYAsd0GALLVBgCzaQcAtHkHALV5BwC2aQcAt2EHAKPdBgAYxwCAHMcAgCDHAIAkxwCApj0GAKU9BgAoxwCAqxkGAKoRBgAsxwCAMMcAgK+9BwCuvQcArb0HAKwBBgCAXQAAgW0AAIJlAACzUQcAvtgDALVxBwC2cQcANMcAgIbgAACHFAMAul0HALs5BwC8KQcAvRUHAL4dBwC/2QAAqJUGAKmdBgCqlQYAq60GAKy1BgCtvQYArrUGAK+tBgA4xwCAPMcAgEDHAIBExwCASMcAgEzHAIBQxwCAVMcAgLhxAQC5cQEAunEBALtxAQC81QEAvd0BAL7VAQC/zQEAsNUGALGxBgCysQYAs40GALSVBgC1UQEAtlEBALdRAQBYxwCAoxkGAFzHAIBgxwCApjkGAFTGAIBkxwCApTkGAKoVBgCrcQYAaMcAgGzHAICuVQYAr5EBAKxhBgCtXQYAcMcAgHTHAIB4xwCAfMcAgIDHAICExwCAiMcAgIzHAICQxwCAlMcAgJjHAICcxwCAgBkAAIEZAACCBQAAoMcAgISAAgC+gAMAhwwDAIasHADhaAYAqMcAgOOYBwCsxwCAsMcAgLTHAIDvrAcAuMcAgLzHAIDAxwCAxMcAgMjHAIDMxwCA0McAgNTHAICzZQMA2McAgLVlAwC2bQMA3McAgODHAIDkxwCAuukDALvlAwC8/QMAve0DAL7RAwC/0QMA6McAgOzHAIDwxwCA9McAgPjHAID8xwCAAMgAgATIAICogQMAqYEDAKqBAwCrgQMArIEDAK2BAwCugQMAr4EDALBBAwCxTQMAskUDALNVAwC0eQMAtXkDALYZAwC3GQMAuCkDALkpAwC6OQMAuzkDALwpAwC9KQMAvhkDAL8ZAwCBGQAAgBEAAKMhAgCCLQAApSECAAjIAIAMyACApikCABDIAIAYyACAq6ECAKqtAgCtqQIArLkCAK+VAgCulQIAhEwCAL5IHQCHZB0AhuwcAONAAwAcyACA4aABACDIAIDvnAMAJMgAgCjIAIAsyACAMMgAgDTIAIA4yACAPMgAgEDIAIBEyACASMgAgEzIAIBQyACAVMgAgFjIAIDvtAEAhKgdAOF8BgBcyACA43AGAGDIAIBkyACAaMgAgGzIAICz4QEAcMgAgHTIAIB4yACAfMgAgLblAQC19QEAgMgAgLuhAQC62QEAvuQcAIjIAIC/rQEAvqUBAL2xAQC8uQEAqBUeAKkZHgCqKR4AqykeAKw9HgCtJR4Ari0eAK8lHgAUyACAgvkfAIH5HwCA4R8AhMgAgIzIAICGHAAAh7ADALjBHgC5wR4AusEeALvBHgC8wR4AvcEeAL7BHgC/wR4AsF0eALElHgCyLR4AsyUeALQhHgC1KR4AthkeALcZHgCjoR4AkMgAgJTIAICYyACAnMgAgKalHgCltR4AoMgAgKvhHgCqmR4ApMgAgKjIAICv7R4AruUeAK3xHgCs+R4ArMgAgLOZHwCwyACAtMgAgLa9HwC4yACAvMgAgLW1HwC6mR8Au5kfAMDIAIDEyACAvnkfAL95HwC8eR8AvXkfAKglHgCpUR4AqlUeAKtpHgCseR4ArXkeAK5pHgCvaR4AyMgAgMzIAIDQyACA1MgAgNjIAIDcyACA4MgAgOTIAIC42R4Aue0eALr5HgC7+R4AvOkeAL3pHgC+nR4Av5UeALAZHgCxGR4AsukeALPpHgC0+R4AtfkeALbpHgC36R4Ao90eAIIpAACBFQAAgB0AAOjIAICm+R4ApfEeAOzIAICr3R4Aqt0eAKTHAIDwyACArz0eAK49HgCtPR4ArD0eAITIAgCzQQEAvgwBAPjIAIC2QQEA/MgAgADJAIC1UQEAuk0BALslAQCGSAAAh1ABAL4lAQC/LQEAvDEBAL0xAQAEyQCACMkAgIQEAwC+gAQADMkAgO+oHwAQyQCAFMkAgL8oMQDjdB8AGMkAgOE4HgAcyQCAIMkAgCTJAIAoyQCALMkAgDDJAICjzQIANMkAgKXdAgA4yQCAPMkAgKbNAgBAyQCARMkAgKupAgCqwQIArb0CAKy9AgCvoQIArqkCAKm1AgCoaR0AqwECAKoJAgCtAQIArBkCAK8xAgCuAQIAhGwFAEjJAIBMyQCAUMkAgFTJAICCnQEAgZ0BAICdAQC55QMAuOUDALvlAwC65QMAveUDALzlAwC/5QMAvuUDALEhAgCwSQIAsyUCALIlAgC1KQIAtCECALcVAgC2FQIAqM0CAKnRAgCq0QIAqw0BAKwVAQCtBQEArgEBAK8BAQBYyQCAXMkAgGDJAIBoyQCAvvgEAGzJAIBwyQCAdMkAgLgVAQC5HQEAuikBALspAQC89QEAvf0BAL71AQC/7QEAsEkBALFVAQCyXQEAs1UBALRNAQC1NQEAtj0BALcxAQCGoAUAh8gFAHjJAIDvvAAAfMkAgIDJAICEyQCA74weAIQsBwDh8B4AiMkAgOMcHgCMyQCA4ZQBAJDJAIDjbAAAsxkCAJTJAICYyQCAnMkAgIQACAC2xQEAtd0BAKDJAIC70QEAus0BAKTJAICoyQCAv7EBAL7JAQC9wQEAvMkBAKPZBQBkyQCArMkAgLDJAIC0yQCApgUGAKUdBgC4yQCAqxEGAKoNBgC8yQCAwMkAgK9xBgCuCQYArQEGAKwJBgDEyQCAgh0AAIEdAACAHQAAyMkAgMzJAIDQyQCA1MkAgIZAAwCHxAMA2MkAgNzJAIDgyQCA5MkAgOjJAIDsyQCAqK0HAKmxBwCqsQcAq7EHAKwZBwCtBQcArg0HAK8FBwDwyQCA9MkAgPjJAID8yQCAAMoAgATKAIAIygCADMoAgLgtBwC5zQAAusUAALvdAAC8zQAAvf0AAL71AAC/nQAAsEkHALFVBwCyUQcAsykHALQ5BwC1OQcAtiUHALcVBwCzOQYAEMoAgBTKAIAYygCAHMoAgLaFBgC1kQYAIMoAgLuRBgC6jQYAJMoAgCjKAIC//QYAvv0GAL39BgC8hQYALMoAgKN9BgAwygCANMoAgKbBBgA4ygCAPMoAgKXVBgCqyQYAq9UGAEDKAIC+bAEArrkGAK+5BgCswQYArbkGAKjpAQCp6QEAqvkBAKv5AQCs6QEArekBAK45AQCvOQEAgPUAAIH9AACCwQAARMoAgIYQAACHdAEASMoAgPTIAIC4zQAAudUAALrVAAC75QAAvP0AAL2VAAC+kQAAv5EAALBJAQCxSQEAslkBALNZAQC0SQEAtUkBALb9AAC39QAA7/QGAEzKAIBQygCAVMoAgO8wAgBYygCAXMoAgGDKAIDj4AcAZMoAgOGAAQBoygCA4ygGAGzKAIDhyAUAcMoAgLMxAgB0ygCAeMoAgJYAAAB8ygCAtikCALUhAgCAygCAu80CALrNAgCEygCAiMoAgL/NAgC+zQIAvc0CALzNAgCMygCAkMoAgJTKAICj/QIAmMoAgKXtAgCm5QIAnMoAgKDKAICkygCAqgECAKsBAgCsAQIArQECAK4BAgCvAQIAgA0AAIEVAACCHQAAqMoAgKzKAICwygCAvlQMALjKAICGwAwAhyQDALzKAIDAygCAxMoAgMjKAIDMygCA0MoAgKi5AgCpAQEAqgEBAKsBAQCsBQEArQ0BAK4FAQCvOQEAhKgNANTKAIDYygCA3MoAgODKAIDkygCA6MoAgOzKAIC4LQEAucUBALrNAQC7xQEAvMEBAL3JAQC++QEAv/kBALBNAQCxUQEAslUBALMpAQC0OQEAtSUBALYlAQC3FQEA4RgGAPDKAIDjOAcA9MoAgPjKAIC+WAwA/MoAgADLAICEbA8ABMsAgL5gDwAIywCADMsAgBDLAIDvcAYAFMsAgIAVAACBGQAAgi0AAITMDwDjYAYAGMsAgOGgAQAcywCA73QAACDLAICGyAwAh/wMACjLAIAsywCAMMsAgDTLAICjCQ4AtMoAgCTLAIA4ywCAPMsAgKYNDgClDQ4AQMsAgKsVDgCqCQ4ARMsAgEjLAICvYQ4Arn0OAK19DgCsAQ4ATMsAgLOpDgBQywCAVMsAgLapDgBYywCAXMsAgLWpDgC6SQ8Au0kPAGDLAIBkywCAvkkPAL9JDwC8SQ8AvUkPAKhdDgCpbQ4AqmUOAKt9DgCsZQ4ArW0OAK5lDgCvuQ8AaMsAgGzLAIBwywCAdMsAgHjLAIB8ywCAgMsAgITLAIC4UQ8AuV0PALpVDwC7aQ8AvH0PAL1lDwC+bQ8Av2EPALDJDwCxyQ8AstkPALPZDwC0yQ8AtckPALZ9DwC3cQ8AiMsAgLURDwC2EQ8AjMsAgIARAACBGQAAgikAALMVDwC8HQ8AvWEPAL5hDwC/fQ8AkMsAgJTLAIC6FQ8AuwkPAKOtDwCYywCAhugAAIfIAQCcywCApq0PAKWtDwCgywCAq00OAKpNDgCkywCAqMsAgK9NDgCuTQ4ArU0OAKxNDgCocQ4AqXEOAKpxDgCrcQ4ArJ0BAK2FAQCuhQEAr7UBAL7sAACsywCAsMsAgLTLAIC4ywCAvMsAgMDLAIDEywCAuGEBALlhAQC6YQEAu2EBALxhAQC9YQEAvmEBAL9hAQCwzQEAsaUBALKhAQCzoQEAtKUBALWtAQC2kQEAt5EBALP5DQDIywCAzMsAgNDLAIDUywCAtgUCALUVAgDYywCAu2ECALoJAgDcywCA4MsAgL9pAgC+YQIAvXUCALx1AgDkywCAo70NAOjLAIDsywCApkECAPDLAID0ywCApVECAKpNAgCrJQIA+MsAgPzLAICuJQIAry0CAKwxAgCtMQIAge0AAIDtAADv0AEAgh0AAADMAIAIzACAhjgEAIdQAwAMzACAEMwAgBTMAIAYzACA4eABABzMAIDjZA8AIMwAgCTMAIAozACALMwAgLORAwAwzACAtbkDALZ9AwA0zACAOMwAgDzMAIC6WQMAu1kDALxJAwC9SQMAvv0AAL/1AACoRQIAqVUCAKpVAgCrZQIArH0CAK2xAgCusQIAr7ECAL5oBQBAzACARMwAgEjMAIBMzACAUMwAgFTMAIBYzACAuF0BALltAQC6ZQEAuw0BALwZAQC9GQEAvg0BAL8FAQCw0QIAsdECALLRAgCz0QIAtHUBALV9AQC2dQEAt20BAOF4DwDjNA4A47gOAOF8DgBczACAYMwAgGTMAIBozACAbMwAgHDMAIB4zACAfMwAgIDMAIDv5A4A79QOAITMAICjnQIAgmEAAIFpAACAUQAAhJwFAKZxAgCltQIAiMwAgKtVAgCqVQIAhkgEAIfMBACv+QEArvEBAK1FAgCsRQIAqJUGAKmlBgCqrQYAq6UGAKy9BgCtoQYArqUGAK/dBgB0zACAjMwAgJDMAICUzACAmMwAgJzMAICgzACApMwAgLhtBwC5dQcAun0HALt1BwC8bQcAvcUHAL7NBwC/xQcAsKUGALGtBgCyuQYAs7EGALSRBgC1kQYAtl0HALdVBwCzJQYAqMwAgKzMAICwzACAtMwAgLYhBgC1NQYAuMwAgLtpBgC6YQYAvMwAgMDMAIC/VQYAvlUGAL1lBgC8bQYAxMwAgKNhBgDIzACAzMwAgKZlBgDQzACA1MwAgKVxBgCqJQYAqy0GANjMAIDczACArhEGAK8RBgCsKQYArSEGAKipBgCpqQYAqrkGAKuxBgCszQYArTEBAK4xAQCvMQEAgMkBAIHJAQCCBQAA4MwAgL54AgCEeAIA5MwAgOjMAIC43QEAue0BALrlAQC7jQEAvJkBAL2ZAQC+jQEAv4UBALBRAQCxUQEAslEBALNRAQC09QEAtf0BALb1AQC37QEAszEGAOzMAICGKAAAh9wBAPDMAIC2sQEAtUUGAPTMAIC7lQEAupUBAPjMAID8zACAvzkBAL4xAQC9hQEAvIUBAATMAICjdQYAAM0AgATNAICm9QEACM0AgAzNAIClAQYAqtEBAKvRAQAQzQCAFM0AgK51AQCvfQEArMEBAK3BAQAYzQCAHM0AgCDNAIAkzQCAKM0AgCzNAIAwzQCANM0AgDjNAIA8zQCAQM0AgETNAIBIzQCATM0AgFDNAIC+cAMAhQA8AOHEBgCERAIA44wHAIBhAACBYQAAgmEAAO9oAwCFRDwA4RACAFjNAIDj2CsAhlA9AIf0AwBczQCA76QHAGDNAIDvQAIAZM0AgGjNAIBszQCAcM0AgHTNAIB4zQCAhDw8AHzNAICAzQCAhM0AgIjNAIDj7AIAjM0AgOEsAQCzUQMAkM0AgJTNAICYzQCAnM0AgLZ5AwC1cQMAoM0AgLs5AwC6MQMApM0AgKjNAIC/9QAAvvUAAL0VAwC8FQMAqD0CAKmBAgCqmQIAq5ECAKy5AgCtuQIArtECAK/RAgCEqD8Avqg/AKzNAICwzQCAtM0AgLjNAIC8zQCAwM0AgLhRAQC5UQEAulEBALtRAQC8cQEAvXEBAL5xAQC/cQEAsLUCALG9AgCygQIAs4ECALRxAQC1cQEAtnEBALdxAQCAtQAAgb0AAIK1AADIzQCAhrA/AIfgPADMzQCA71QAAL4sPgDhVAYA0M0AgOOIAADUzQCA2M0AgNzNAIDgzQCAo1ECAOTNAIC/2CYA6M0AgOzNAICmeQIApXECAPDNAICrOQIAqjECAPTNAID4zQCAr/UBAK71AQCtFQIArBUCAJAtJACRBSgAkg0oAJPZKACUhS0AlTUsAJbFLACXtTEAmAEwAJkVMACalTUAmyk0AJxtNACdmTUAnj04AJ81OABUzQCAttU+ALXFPgDEzQCAs9E+APzNAIAAzgCABM4AgL/ZPgC+1T4AvcU+ALzFPgC71T4Auuk+AAjOAICPXSQAqeUJAKgVCACrBQwAqg0MAK0BEACsAQwAr0EQAK69EACh4QAADM4AgKMBBACi4QAApZ0EAKSVBACnuQgApgEIAKD1OQChBT0Aouk8AKP1PQAQzgCAFM4AgBjOAIAczgCAscEUALABFACzARgAsn0UALXVGAC01RgAIM4AgCTOAICCISUAgyklACjOAIAszgCAhsUpAIeBLACEGSkAhRkpAIoBLQCL+S0AMM4AgDjOAICOATEAj4k0AIyRMACNHTEAkkU1AJMZNQCG6AcAh+wBAJZZOQCXYTgAlPU0AJVZOQCaoTwAm0U9ADzOAIBAzgCAgX0AAIB9AACcQTwAglUAAKjpPwCp/T8Aqgk/AKsFPwCsHT8ArQU/AK4NPwCvBT8ARM4AgEjOAIBMzgCAUM4AgFTOAIBYzgCAXM4AgGDOAIC4DT8AuRU/ALoVPwC7JT8AvD0/AL39PgC+9T4Av+0+ALB9PwCxQT8AskE/ALNBPwC0QT8AtU0/ALY9PwC3NT8Ao4E8AGTOAIBozgCAbM4AgHDOAICmhTwApZU8AHTOAICrhTwAqrk8AHjOAIB8zgCAr4k8AK6FPACtlTwArJU8AITIAwCz7T0AgM4AgITOAIC26T0AiM4AgIzOAIC16T0Auq09ALu1PQCQzgCAlM4AgL6dPQC/IQIAvKU9AL2VPQCoDT0AqR09AKohPQCrPT0ArCU9AK0tPQCuJT0Ar1k9AIANAACBFQAAgh0AAJjOAICczgCAoM4AgKjOAIC+uAMAuLkCALlhAgC6GQIAuxkCALwJAgC9CQIAviECAL8hAgCwLT0AsTU9ALI1PQCzBT0AtB09ALWhAgC2oQIAt6ECAKOpPACszgCAhigFAIfsAgCwzgCApq08AKWtPAC0zgCAq/E8AKrpPAC4zgCAvM4AgK9lAwCu2TwArdE8AKzhPADAzgCAsykCAMTOAIDIzgCAtvkCAMzOAIDQzgCAtfkCALrVAgC73QIA1M4AgNjOAIC+eQEAv3kBALzFAgC9eQEA3M4AgODOAICj5QIA5M4AgKU1AgDozgCA7M4AgKY1AgDwzgCA9M4AgKsRAgCqGQIArbUBAKwJAgCvtQEArrUBAOPwPgDhrD8A4UA+AON8PwD4zgCA/M4AgADPAIAEzwCAgA0AAIERAACCEQAACM8AgO+oPgAMzwCAEM8AgO8gPgCoLQUAqW0FAKplBQCrrQUArLUFAK29BQCutQUAr60FAKTOAICE6AMAvuADABTPAICGEAMAh5gDABjPAIAczwCAuGkGALlpBgC6AQYAuwEGALwFBgC9DQYAvjEGAL8xBgCw1QUAsd0FALLVBQCzaQYAtHkGALV5BgC2aQYAt2EGAKg5BgCpgQcAqpkHAKuRBwCsuQcArbkHAK7ZBwCv1QcAIM8AgCTPAIA0zgCAKM8AgCzPAIAwzwCANM8AgDjPAIC4VQcAuV0HALppBwC7aQcAvAEHAL0BBwC+AQcAvwEHALCtBwCxsQcAsrEHALOFBwC0nQcAtXUHALZ9BwC3cQcAsxEGADzPAIBAzwCARM8AgEjPAIC2OQYAtTEGAEzPAIC7dQYAumkGAFDPAIBUzwCAv7EGAL5ZBgC9UQYAvGUGAFjPAICjVQYAXM8AgGDPAICmfQYAZM8AgGjPAICldQYAqi0GAKsxBgBszwCAcM8AgK4dBgCv9QYArCEGAK0VBgCouQEAqbkBAKopAQCrKQEArD0BAK0lAQCuLQEAryUBAHTPAICCHQAAgR0AAIAdAAB4zwCAfM8AgIDPAIC+cAEAuIEAALmNAAC6hQAAu5kAALyJAAC9vQAAvrUAAL99AACwXQEAseEAALLhAACz4QAAtOEAALXpAAC20QAAt9EAAITIAgCzpQIAhzgDAIYoAgC2oQIAiM8AgIzPAIC1sQIAup0CALshAwC+bAMAkM8AgL4hAwC/KQMAvDEDAL0xAwCj4QIAlM8AgJjPAICczwCAoM8AgKblAgCl9QIApM8AgKtlAwCq2QIAqM8AgKzPAICvbQMArmUDAK11AwCsdQMAqZkAAKiRAACrzQAAqqEAAK3dAACs3QAAr8UAAK7NAAC+LA0AsM8AgLTPAIC4zwCAvM8AgMDPAIDEzwCAyM8AgLnBAQC4eQAAu8EBALrJAQC9wQEAvNkBAL/FAQC+xQEAsY0AALCNAACzQQAAskkAALVBAAC0WQAAt0EAALZJAADMzwCA0M8AgNTPAIDYzwCA3M8AgO9QBwDgzwCA5M8AgL74DwDjdAcA6M8AgOF8BACAGQAAgQkAAIJ5AADszwCA8M8AgLNpAQD4zwCAhMQCALYdAQD8zwCAANAAgLUVAQC6CQEAuwkBAIboDQCH6A0Avt0BAL/FAQC83QEAvdUBAATQAIAI0ACADNAAgBDQAIDv1AAAFNAAgBjQAIDvTAEA47ADAOG0BgDhgAEA45gBABzQAIAg0ACAJNAAgCjQAIAs0ACAMNAAgKPlAQCEwA0ApZkBADTQAIA40ACAppEBADzQAIBA0ACAq4UBAKqFAQCtWQEArFEBAK9JAQCuUQEA9M8AgETQAIBI0ACATNAAgFDQAIBU0ACAWNAAgFzQAICoaQ8AqXEPAKpxDwCrrQ8ArLUPAK29DwCutQ8Ar6kPALDZDwCx9Q8Asv0PALP1DwC07Q8AtZUPALadDwC3iQ8AuLkPALmFDwC6jQ8Au2kAALx5AAC9eQAAvmkAAL9pAACBnQAAgJ0AAGDQAICCBQAAZNAAgGjQAIBs0ACAcNAAgIaAAwCH9AMAdNAAgHjQAIB80ACAgNAAgITQAICEzwCAs5kPAIjQAICM0ACAkNAAgJTQAIC2XQ8AtV0PAJjQAIC7UQ8Aun0PAJzQAICg0ACAvzEPAL5JDwC9QQ8AvEkPAKNZDgCk0ACAqNAAgKzQAICw0ACApp0OAKWdDgC00ACAq5EOAKq9DgC40ACAvNAAgK/xDgCuiQ4ArYEOAKyJDgDA0ACAxNAAgMjQAIDM0ACAgBkAAIEZAACCBQAA0NAAgISgAQDU0ACAh+gBAIYABADY0ACA3NAAgODQAIDk0ACAqBUBAKkdAQCqFQEAqyUBAKw9AQCtJQEAri0BAK8lAQDo0ACA7NAAgPDQAID00ACA+NAAgPzQAIAA0QCABNEAgLjJAAC5yQAAutkAALvRAAC8+QAAvfkAAL6ZAAC/mQAAsCUBALEtAQCyJQEAsz0BALQtAQC1HQEAthUBALf5AAAI0QCADNEAgBDRAICzkQIAFNEAgLW5AgC2qQIAGNEAgBzRAIAg0QCAuu0CALvlAgC8/QIAveUCAL7lAgC/1QIApvECACTRAIAo0QCApeECACzRAICjyQIAMNEAgDTRAICuvQIAr40CAKylAgCtvQIAqrUCAKu9AgA40QCAPNEAgID5AACB+QAAggUAAEDRAIC+yAMAhBgDAEjRAIBM0QCAUNEAgFTRAIBY0QCAXNEAgGDRAIBk0QCAhhgEAIecAwBo0QCAbNEAgHDRAIB00QCAeNEAgHzRAIDvsAIAgNEAgOGUAQCE0QCA42wCAIjRAICM0QCAkNEAgJTRAICY0QCA79APAJzRAICg0QCApNEAgKjRAIDhrAEArNEAgONsAACAMQAAgT0AAIIdAADv9A4A42wOALDRAIDhLA8AvnAFALM5AgCEDAUAhugEAIdgBQDcAAAAtvECALX5AgC40QCAu9UCALrVAgC80QCAwNEAgL91AQC+dQEAvcUCALzFAgDE0QCA4fQOAMjRAIDjUA4AzNEAgNDRAIDU0QCA2NEAgNzRAIDg0QCA5NEAgOjRAIDs0QCA8NEAgPTRAIDv5A8ApmUCAPjRAID80QCApW0CAADSAICjrQIABNIAgAjSAICu4QEAr+EBAKxRAgCtUQIAqkECAKtBAgAM0gCAENIAgKiZBgCpmQYAqqkGAKupBgCsuQYArbkGAK6pBgCvqQYAFNIAgIIdAACBHQAAgB0AABjSAIAc0gCAINIAgL50AwC4rQYAubUGALq9BgC7tQYAvK0GAL1RBwC+UQcAv1EHALChBgCxoQYAsqEGALOhBgC0oQYAtaEGALalBgC3mQYARNEAgLMlBgCExAMAtNEAgLY9BgAk0gCAKNIAgLU1BgC6YQYAu2EGAIYIAACHiAAAvmEGAL9hBgC8cQYAvXEGAKNhBgAs0gCAMNIAgDTSAIA40gCApnkGAKVxBgA80gCAqyUGAKolBgBA0gCARNIAgK8lBgCuJQYArTUGAKw1BgCoXQYAqW0GAKplBgCrjQYArJkGAK2FBgCujQYAr4UGAEjSAIBM0gCAUNIAgFTSAIBY0gCAXNIAgGDSAIBk0gCAuIUGALmNBgC6mQYAu5UGALyNBgC9rQYAvqUGAL99AQCw/QYAscUGALLNBgCzxQYAtN0GALXFBgC2zQYAt8UGALPtBgBo0gCAbNIAgHDSAIB00gCAtgUGALURBgB40gCAuwEGALo5BgB80gCAgNIAgL8BBgC+GQYAvREGALwZBgCE0gCAo6kGAIjSAICM0gCApkEGAJDSAICElAEApVUGAKp9BgCrRQYAvqABAJjSAICuXQYAr0UGAKxdBgCtVQYAqJkCAKnBAgCqwQIAq8ECAKzBAgCtyQIArvECAK/xAgCB7QMAgO0DAJzSAICC+QMAhpAcAId0AwCg0gCApNIAgLjFAwC5zQMAusUDALvdAwC8zQMAvf0DAL71AwC/nQMAsEEDALFBAwCyQQMAs0EDALRBAwC1QQMAtkEDALdBAwCzSQIAqNIAgKzSAICw0gCAtNIAgLZJAgC1SQIAuNIAgLuFAwC6hQMAvNIAgMDSAIC/hQMAvoUDAL2VAwC8lQMAxNIAgKMNAgDI0gCAzNIAgKYNAgDQ0gCA1NIAgKUNAgCqwQMAq8EDANjSAIDc0gCArsEDAK/BAwCs0QMArdEDAOOYAQDhpAcA4VgGAONYBgDhoAEA4NIAgOPQAADk0gCA6NIAgOzSAIDvOAAA8NIAgO/0AQD00gCA+NIAgO/4BgCAeQAAgRUAAIIdAACEAB0A/NIAgADTAIC+EB0ACNMAgIbAHACHrB0ADNMAgBDTAIAU0wCAGNMAgBzTAIAg0wCAu8UFALqhBQC5qQUAuJEFAL/NBQC+zQUAvckFALzVBQCzHQYAsh0GALEdBgCwHQYAt6EFALa9BQC1vQUAtL0FAKu9BgCqvQYAqb0GAKi9BgCvfQYArn0GAK19BgCsfQYAJNMAgCjTAIAs0wCAMNMAgDTTAIA40wCAPNMAgEDTAICo7R0AqS0eAKoxHgCrMR4ArJUeAK2dHgCulR4Ar40eAATTAIBE0wCASNMAgEzTAIBQ0wCAVNMAgFjTAIBc0wCAuKkeALmpHgC6XR8Au1EfALxxHwC9cR8AvnUfAL9pHwCw/R4Asc0eALLFHgCzrR4AtLkeALW5HgC2rR4At6UeALO5HgBg0wCAZNMAgGjTAICU0gCAth0eALUdHgBs0wCAuwkeALo5HgBw0wCAhOADAL99HgC+fR4AvXkeALwRHgCCaQAAo/0eAIBFAACBUQAAplkeAL6cAwB00wCApVkeAKp9HgCrTR4AhkgAAIdsAACuOR4ArzkeAKxVHgCtPR4AqF0eAKltHgCqZR4Aq30eAKxlHgCtbR4ArmUeAK/9HgB40wCAfNMAgIDTAICE0wCAiNMAgIzTAICQ0wCAlNMAgLhpAQC5aQEAunkBALt5AQC8aQEAvWkBAL7dAQC/1QEAsIUeALGNHgCyhR4As50eALSFHgC1jR4AtoUeALdZAQCz7R4AmNMAgJzTAICg0wCApNMAgLbtHgC17R4AqNMAgLtJHgC6QR4ArNMAgLDTAIC/SR4AvkEeAL1JHgC8UR4AtNMAgKOpHgC40wCAvNMAgKapHgDA0wCAxNMAgKWpHgCqBR4Aqw0eAMjTAIDM0wCArgUeAK8NHgCsFR4ArQ0eAKghAwCpIQMAqiEDAKshAwCsIQMArSEDAK4hAwCvIQMA0NMAgNTTAIDY0wCAvmACANzTAIDg0wCA6NMAgOzTAIC4iQMAuYkDALqdAwC7lQMAvLkDAL25AwC+eQAAv3kAALDlAwCx7QMAsuUDALP9AwC07QMAtd0DALbVAwC3vQMAgKkAAIG1AACCvQAAs6UDAPDTAIC1pQMAtq0DAPTTAICE4AIA+NMAgLotAwC7JQMAvD0DAL0lAwC+JQMAvxUDAKPpAwD80wCAhmgEAIeAAwAA1ACApuEDAKXpAwAE1ACAq2kDAKphAwAI1ACADNQAgK9ZAwCuaQMArWkDAKxxAwAQ1ACAFNQAgBjUAIAc1ACAINQAgOE8HwAk1ACA40AeACjUAIAs1ACAMNQAgO+MHgA01ACAONQAgDzUAIBA1ACARNQAgIIlAACBEQAAgB0AAEjUAIDj5AMATNQAgOGsAQBQ1ACA77ADAIRkAgC+YAUAhtAEAIdEBQBY1ACAXNQAgGDUAIBk1ACAaNQAgGzUAIBw1ACAdNQAgHjUAIDvsAEAhKQFAOHcHgB81ACA4xABAIDUAICE1ACAiNQAgIzUAICzUQEAkNQAgJTUAICY1ACAnNQAgLYRAQC1fQEAoNQAgLsNAQC6DQEApNQAgKjUAIC//QAAvv0AAL39AAC8/QAAqDkGAKk5BgCqmQYAq5EGAKy1BgCt0QYArskGAK/BBgBU1ACArNQAgLDUAIC01ACAgA0AAIGxAACCsQAAuNQAgLhhBwC5YQcAumEHALt9BwC8ZQcAvW0HAL5lBwC/HQcAsIkGALGJBgCyaQcAs2kHALR5BwC1eQcAtmkHALdlBwCjEQYAvNQAgMDUAIC+gAMAxNQAgKZRBgClPQYAyNQAgKtNBgCqTQYAhggAAId8AwCvvQcArr0HAK29BwCsvQcAzNQAgNDUAICzSQcA1NQAgLVZBwDY1ACA3NQAgLZRBwDg1ACA5NMAgLtBBwC6dQcAvUUHALxFBwC/RQcAvkUHAKh5BgCpeQYAqokGAKuJBgCsmQYArZkGAK6JBgCviQYA5NQAgOjUAIDs1ACA8NQAgPTUAID41ACA/NQAgADVAIC4jQYAuZUGALqVBgC7pQYAvL0GAL1xAQC+cQEAv3EBALD5BgCxzQYAstkGALPZBgC0yQYAtckGALa9BgC3tQYAowEGAATVAIAI1QCADNUAgBDVAICmGQYApREGABTVAICrCQYAqj0GABjVAIAc1QCArw0GAK4NBgCtDQYArA0GACDVAIAk1QCAKNUAgCzVAICAGQAAgRkAAIIFAAAw1QCAhKwBAL6sAQCH6AAAhkwPADjVAIA81QCAQNUAgETVAIConQIAqcUCAKrNAgCrwQIArMUCAK3NAgCu+QIArz0DAEjVAIBM1QCAUNUAgFTVAIC+PAwAWNUAgFzVAIBg1QCAuMkDALnJAwC62QMAu9EDALz5AwC9+QMAvpkDAL+ZAwCwRQMAsU0DALJFAwCzXQMAtEUDALVNAwC2RQMAt/kDALNFAgBk1QCAaNUAgGzVAIBw1QCAtk0CALVNAgB01QCAu4kDALqBAwB41QCAfNUAgL+JAwC+gQMAvYkDALyRAwCA1QCAowECAITVAICI1QCApgkCAIzVAICQ1QCApQkCAKrFAwCrzQMAlNUAgJjVAICuxQMAr80DAKzVAwCtzQMAgO0BAIEVAACCEQAAhAACAJzVAIDhpAEAoNUAgOPsAACo1QCArNUAgLDVAIDvMAAAtNUAgLjVAIC81QCAwNUAgIbgDACH9AIAxNUAgMjVAIDM1QCA0NUAgO/MBgDU1QCA4bAHANjVAIDjEAYA3NUAgODVAIDk1QCA6NUAgOzVAIDw1QCA9NUAgPjVAID81QCAANYAgATWAIAI1gCA7+gBAIUYDwDhzAYADNYAgOMcBgCAKQAAgR0AAIIFAAAQ1gCAszkCAITMDQCGaA8Ah/wMAOHQ0gO28QEAtfkBABjWAIC72QEAutEBAL7kDAAc1gCAv30BAL59AQC9fQEAvMEBAKjxDQCp8Q0AqvENAKvxDQCsMQ4ArTEOAK4xDgCvMQ4ApNUAgBTWAIAg1gCAJNYAgCjWAIAs1gCAMNYAgDTWAIC46Q4AuekOALqJDgC7hQ4AvJ0OAL2BDgC+gQ4Av7UOALBVDgCxXQ4AslUOALPpDgC0+Q4AtfkOALbpDgC34Q4Ao3kNADjWAIA81gCAQNYAgETWAICmsQ4ApbkOAEjWAICrmQ4AqpEOAEzWAIBQ1gCArz0OAK49DgCtPQ4ArIEOAFTWAICz7Q8AWNYAgFzWAIC26Q8AYNYAgGTWAIC16Q8Auq0PALu1DwA01QCAaNYAgL6VDwC/mQ8AvK0PAL2hDwCoIQ4AqSEOAKohDgCrPQ4ArCUOAK0tDgCuJQ4Ar1UOAGzWAIBw1gCAdNYAgHjWAICAHQAAgQkAAIK9AAB81gCAuDkOALk5DgC6yQ4Au8kOALzZDgC92Q4AvskOAL/JDgCwLQ4AsTUOALI9DgCzMQ4AtBUOALUZDgC2CQ4AtwkOAKOpDgCA1gCAhIACAL6AAQCFAAQApq0OAKWtDgCI1gCAq/EOAKrpDgCGKAcAhxgAAK/dDgCu0Q4AreUOAKzpDgCM1gCAs+0BAJDWAICU1gCAtuUBAJjWAICc1gCAte0BALplAQC7bQEAoNYAgKTWAIC+bQEAv10BALx1AQC9bQEAqN0NAKnpDQCqIQIAqyECAKwhAgCtIQIAriECAK8hAgCo1gCArNYAgLDWAIC01gCAohECAKMRAgCgqQ4AodUCALiJAgC5iQIAup0CALuVAgC8vQIAvXUDAL59AwC/dQMAsOUCALHtAgCy5QIAs/0CALTtAgC13QIAttUCALe9AgCjqQIAj8UaALjWAIC81gCAwNYAgKahAgClqQIAxNYAgKspAgCqIQIAyNYAgMzWAICvGQIArikCAK0pAgCsMQIAniUOAJ/lDgCc6QoAnRUKAJpFFgCbRQoAmFkWAJlRFgCWcRIAl4ETAJRVEgCV7RIAktEeAJPZHgCQtRoAkVUeAISpHwCFJR8AhiUfAIexEwDQ1gCA1NYAgIJZGwCDURsAjEUSAI2lFwCOpRcAj7kXAIA5+wHY1gCAijkTAIutEwCUmQsAlaEPAJZpDwCX3Q8A3NYAgO+cDwCSyQsAk30LAJxFAwDjeA4A4NYAgOGYDADk1gCAhHgCAJqRAwCbXQMA4QQAAL6IBQDj3OoD6NYAgOzWAIDw1gCA7+wAAO+MDgDhcA4A4fwOAOMwAADjeA4AgSEAAIA5AADvtO0DgikAALMJAgD41gCAhmgEAIcsBQD81gCAtg0CALUNAgAA1wCAu8UBALrFAQAE1wCACNcAgL99AQC+fQEAvdUBALzVAQCE1gCA9NYAgAzXAIAQ1wCAFNcAgBjXAIAc1wCAINcAgKi9BQCp5QUAquEFAKvhBQCs5QUAre0FAK7RBQCv0QUAsGEGALFhBgCyYQYAs2EGALTZBgC12QYAtskGALfBBgC4yQYAuckGALp5BwC7eQcAvEUHAL0lBwC+EQcAvw0HAKNJBQAk1wCAKNcAgCzXAIAw1wCApk0FAKVNBQA01wCAq4UGAKqFBgA41wCAPNcAgK89BgCuPQYArZUGAKyVBgBA1wCARNcAgEjXAIBM1wCAUNcAgFTXAIBY1wCAXNcAgIA5AACBOQAAggUAAGDXAIC+uAMAhLgDAGjXAIBs1wCAqMUGAKnVBgCq1QYAq+UGAKz9BgCtHQEArhUBAK8NAQBk1wCAcNcAgIaIAQCHHAEAdNcAgHjXAIB81wCAgNcAgLjpAQC56QEAuokBALuJAQC8mQEAvZkBAL6JAQC/iQEAsHUBALF9AQCydQEAs+kBALT5AQC1+QEAtukBALfhAQCzXQYAhNcAgIjXAICM1wCAhLwBALadAQC1dQYAkNcAgLu5AQC6sQEAlNcAgJjXAIC/PQEAvj0BAL09AQC8oQEA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gNwAgLYVAgC1dQIAhNwAgLs5AgC6MQIAiNwAgIzcAIC/2QEAvtEBAL0VAgC8FQIAo50FADTcAICQ3ACAlNwAgJjcAICm1QUApbUFAJzcAICr+QUAqvEFAKDcAICk3ACArxkGAK4RBgCt1QUArNUFAIBRAACBWQAAgmEAALOVBgCo3ACAtXEHALZxBwCs3ACAhkADAIdUAwC67QcAu+UHALzlBwC97QcAvtEHAL/NBwCw3ACAtNwAgLjcAIC83ACAwNwAgMTcAIDvQAQAyNwAgOEwBwDM3ACA45QEANDcAIDU3ACA2NwAgNzcAIDg3ACAoxkGAOTcAIDo3ACA7NwAgPDcAICm/QcApf0HAPTcAICraQcAqmEHAPjcAID83ACAr0EHAK5dBwCtYQcArGkHAKjNBwCp0QcAqtEHAKstBgCsNQYArT0GAK41BgCvnQYAAN0AgATdAIAI3QCADN0AgIAZAACBGQAAggUAABDdAIC4iQYAuYkGALqZBgC7kQYAvLkGAL25BgC+UQEAv1EBALDlBgCx7QYAsv0GALP1BgC02QYAtcUGALbBBgC3uQYAqNEBAKnZAQCqCQEAqwkBAKwZAQCtGQEArgkBAK8JAQCEYAEAvnwBAIeoAACGjAEAGN0AgBzdAIAg3QCAJN0AgLgJAQC5CQEAuhkBALsRAQC8OQEAvTkBAL75AAC/+QAAsH0BALFBAQCyRQEAs10BALRFAQC1TQEAtkUBALc5AQAo3QCALN0AgDDdAICzjQIANN0AgLWdAgC2lQIAON0AgDzdAIBA3QCAurUCALuJAgC8nQIAvYUCAL6NAgC/hQIAps0CAETdAIBI3QCApcUCAEzdAICj1QIAUN0AgFTdAICu1QIAr90CAKzFAgCt3QIAqu0CAKvRAgCE9AMAWN0AgKgxAwCpMQMAqjEDAKsxAwCskQAArZEAAK6RAACvjQAAXN0AgGDdAIBk3QCAaN0AgGzdAIBw3QCAdN0AgHjdAIC4vQAAuWUAALptAAC7ZQAAvH0AAL1lAAC+bQAAv2UAALD9AACxxQAAss0AALOpAAC0uQAAtaUAALahAAC3oQAAgL0BAIEJAACCGQAAfN0AgIDdAIC+WAIAhxQdAIacHQCEbB0AxNsAgIjdAICM3QCAvrwcAJDdAICU3QCAmN0AgLP5AgCc3QCAoN0AgKTdAICo3QCAtlEBALVZAQC+3B8Au0EBALp5AQCs3QCAsN0AgL8hAQC+PQEAvT0BALxZAQDhcAcAtN0AgOMIBgC43QCA78wAALzdAIDA3QCAxN0AgOMQAADI3QCA4dABAMzdAICGkBwAh/QcAO/gBgDQ3QCAo3kCANTdAIDY3QCA3N0AgODdAICm0QEApdkBAOTdAICrwQEAqvkBAOjdAIDs3QCAr6EBAK69AQCtvQEArNkBAITdAICCFQAAgeUfAIDlHwDw3QCA9N0AgPjdAID83QCAqAkfAKkJHwCqHR8AqxUfAKwNHwCtcR8ArnEfAK9xHwCwER8AsS0fALIlHwCzyR8AtN0fALXBHwC2wR8At8EfALjFHwC5yR8AutUfALupHwC8uR8AvbkfAL6pHwC/oR8As7UfAADeAIAE3gCACN4AgAzeAIC20R8AtaUfABDeAIC7yR8AuvUfABTeAIAY3gCAvyUfAL45HwC9PR8AvNEfABzeAIAg3gCAJN4AgCjeAIAs3gCA4WAfADDeAIDjtBwANN4AgDjeAIA83gCA7wAdAEDeAIBE3gCASN4AgEzeAICjNR4AUN4AgFTeAIBY3gCAXN4AgKZRHgClJR4AYN4AgKtJHgCqdR4AhKgCAGTeAICvpR4ArrkeAK29HgCsUR4AgE0AAIFVAACCVQAAs8kBAGjeAIC12QEAtskBAGzeAICGoAAAhwQBALrFAQC7rQEAvLUBAL29AQC+tQEAv60BAKiZAQCpmQEAqg0BAKsFAQCsHQEArQUBAK4FAQCvNQEAcN4AgHTeAIB43gCAfN4AgIDeAICE3gCAiN4AgIzeAIC4JQEAuS0BALo5AQC7OQEAvCkBAL0pAQC+3QAAv9UAALBNAQCxJQEAsi0BALMlAQC0PQEAtSUBALYhAQC3HQEAkN4AgJTeAICY3gCAo4kCAJzeAIClmQIApokCAKDeAICk3gCAqN4AgKqFAgCr7QIArPUCAK39AgCu9QIAr+0CAKzeAICw3gCAtN4AgIRAAgC43gCAvN4AgMDeAIDE3gCAgA0AAIEVAACCHQAAyN4AgMzeAIDQ3gCAh7QDAIbcBAC+zAMA2N4AgNzeAIDg3gCA7+gCAOTeAIDo3gCA7N4AgOP8AgDw3gCA4dABAPTeAID43gCA/N4AgADfAIAE3wCAs2EDAAjfAIAM3wCAEN8AgBTfAIC2eQMAtXEDABjfAIC7XQMAul0DABzfAIAg3wCAv+EAAL79AAC9/QAAvP0AALC5AgCxuQIAsgkBALMJAQC0GQEAtQUBALYFAQC3PQEAuAUBALllAQC6bQEAu2UBALxhAQC9YQEAvmEBAL9hAQCFXAcAJN8AgCjfAIAs3wCAFN0AgDDfAIA03wCAON8AgKgxAgCpOQIAqskCAKvJAgCs2QIArdkCAK7JAgCvyQIAhMwFAOGAHgA83wCA47weAOE4HgBA3wCA46AAAL4QBABI3wCATN8AgO8MHgBQ3wCAVN8AgFjfAIBc3wCA73QeAKNhAgCCUQAAgUEAAICRAABg3wCApnkCAKVxAgBk3wCAq10CAKpdAgCGyAQAhzwFAK/hAQCu/QEArf0BAKz9AQCohQYAqY0GAKqFBgCrmQYArIkGAK2JBgCuvQYAr7EGAETfAIBo3wCAbN8AgHDfAIB03wCAeN8AgHzfAICA3wCAuJ0GALmtBgC6pQYAuwkHALwZBwC9GQcAvg0HAL8FBwCw0QYAsdEGALLRBgCz0QYAtLUGALW9BgC2tQYAt60GALMNBgCE3wCAiN8AgIzfAICQ3wCAtgkGALUBBgCU3wCAuxUGALoVBgCY3wCAnN8AgL95BgC+cQYAvQUGALwFBgCg3wCA4aAEAKTfAIDjXAUAgA0AAIE1AACCPQAAqN8AgKzfAICw3wCAhGADAL5sAAC/8AEAhZAAALTfAIDvmAUAo40HAIQIAACGAAwAh4wAALjfAICmiQcApYEHALzfAICrlQcAqpUHAMDfAIDE3wCAr/kHAK7xBwCthQcArIUHAMjfAICz6QYAzN8AgNDfAIC26QYA1N8AgNjfAIC16QYAukUBALtNAQDc3wCA4N8AgL5FAQC/TQEAvFUBAL1NAQCoIQYAqSEGAKolBgCrPQYArCUGAK0tBgCuSQYAr0EGAOTfAIDo3wCA7N8AgPDfAID03wCA+N8AgPzfAIAA4ACAuEkBALlJAQC6WQEAu1EBALx5AQC9eQEAvhkBAL8VAQCwxQEAsc0BALLFAQCz3QEAtMUBALXNAQC2xQEAt3kBAATgAIAI4ACADOAAgKOhBQAQ4ACApaEFAKahBQAU4ACAjyHqAxjgAICqDQIAqwUCAKwdAgCtBQIArg0CAK8FAgCX7RIAlmUSAJVFEQCUnRYAk3EWAJJVFQCReesDkFnqA59hBgCeNQUAnUUaAJxpGgCbVRkAmkUeAJlZHgCYRR0A4WAAABzgAIDjTD4AIOAAgKOxAgCi1QEAobUHAKCJBgCxATgAsAk+ALOVOgCyjToAtbUmALQBJADvaDoAvjAMAKnJNgCowTYAqwEwAKrhNwCtzTMArPUyAK/5PgCuATwAoRkCACjgAICjbQ4Aom0OAKX1CgCkAQgAp4ULAKaZCgCGAA0Ah0QNAIIJ6wODCesDhDHqA4UVFACGORcAh80XAISgDQAs4ACAiiUQAIsNEwCMnRMAjQ0cAI4ZHwCPDR8A1N4AgO8AAwCSbRgAk0kbAJR9GwCVBQQAllkHAJdJBwAw4ACANOAAgJpFBgCbLQAAnFEDAONgAAA44ACA4WwAAIClAQCBAQEAggUBAL4ADAA84ACAQOAAgETgAIDviAEASOAAgOFUBgBM4ACA41QBAFDgAIBU4ACAWOAAgFzgAICz6QIAYOAAgGTgAIBo4ACAbOAAgLadAgC1mQIAcOAAgLuJAgC6vQIAdOAAgHjgAIC/WQIAvlECAL1ZAgC8kQIAoykNAHzgAICA4ACAhOAAgIjgAICmXQ0ApVkNAIzgAICrSQ0Aqn0NAJDgAICY4ACAr5kNAK6RDQCtmQ0ArFENAIBRAACBWQAAgmEAALMtDwCc4ACAtS0PALbJDwCg4ACAhkADAIcIAwC6yQ8Au8UPALzBDwC9wQ8AvsEPAL/BDwAk4ACAlOAAgKTgAICo4ACArOAAgLDgAIC04ACAuOAAgKhFDgCpgQ8AqskPAKvJDwCsyQ8ArSUPAK4tDwCvJQ8AsGEPALFtDwCyeQ8As3kPALRpDwC1aQ8Ath0PALcVDwC4LQ8AuTUPALo1DwC7BQ8AvB0PAL3xAAC+8QAAv/EAAKNhDgC84ACAhMQBAMDgAIDE4ACApoUOAKVhDgDI4ACAq4kOAKqFDgDM4ACA0OAAgK+NDgCujQ4ArY0OAKyNDgDU4ACA2OAAgNzgAIDg4ACA5OAAgOjgAIDs4ACA8OAAgPTgAICCHQAAgR0AAIAdAAD44ACA/OAAgADhAIC+tAEAqK0BAKnVAQCq1QEAqwUBAKwdAQCtBQEArg0BAK8FAQCGgAEAhxgBAAjhAIAM4QCAEOEAgBThAIAY4QCAHOEAgLiFAAC5jQAAuoUAALudAAC8hQAAvY0AAL6FAAC/vQAAsH0BALHhAACy5QAAs/0AALTtAAC13QAAttUAALe9AACzXQIAIOEAgCThAIAo4QCALOEAgLaFAgC1lQIAMOEAgLslAwC6uQIANOEAgDjhAIC/GQMAvikDAL0pAwC8MQMAvswEAKMZAgA84QCAQOEAgKbBAgBE4QCASOEAgKXRAgCq/QIAq2EDAEzhAIBQ4QCArm0DAK9dAwCsdQMArW0DAKgpAwCpKQMAqjkDAKs5AwCsKQMArSkDAK6dAACvlQAAVOEAgFjhAIBc4QCAYOEAgGThAICCqQEAga0BAICtAQC4mQAAua0AALqlAAC7bQAAvHUAAL19AAC+dQAAv20AALDtAACx9QAAsvUAALPFAAC03QAAtb0AALa1AAC3qQAA4XgBAOEcDgDjEAAA4zwOAGjhAIBs4QCAvhQEAHDhAICErAIAeOEAgId4BQCGDAUAfOEAgIDhAIDvvAAA70gOALPxAgCE4QCAiOEAgIzhAICQ4QCAtukCALXhAgCU4QCAu3EBALppAQCY4QCAhKAEAL85AQC+WQEAvVEBALxhAQCc4QCAhIwEAKDhAICEADgApOEAgKjhAICs4QCAsOEAgKqJDgCriQ4AqLkOAKmxDgCu/Q4Ar+EOAKz5DgCt9Q4Asq0OALNlDgCwkQ4AsaUOALZ9DgC3ZQ4AtH0OALV1DgC6XQ4Au+UNALhdDgC5VQ4AvuENAL/pDQC8/Q0AvfUNAKOxBQB04QCAtOEAgLjhAIC84QCApqkFAKWhBQDA4QCAqzEGAKopBgDE4QCAyOEAgK95BgCuGQYArREGAKwhBgDM4QCA0OEAgNThAIDY4QCAgB0AAIEJAACCOQAA3OEAgODhAIDk4QCAhsgAAIcMAwDo4QCA7OEAgPDhAID04QCAqKUHAKm1BwCqvQcAq8kHAKzZBwCt2QcArskHAK/BBwC+oAAA+OEAgPzhAIAA4gCABOIAgAjiAIAM4gCAEOIAgLjNAAC51QAAutUAALvlAAC8/QAAvZUAAL6dAAC/lQAAsIkHALFlBwCyYQcAs30HALRlBwC1bQcAtmUHALf1AACzNQYAFOIAgBjiAIAc4gCAIOIAgLZZBgC1UQYAJOIAgLuhBgC6TQYAKOIAgCziAIC/qQYAvqEGAL2pBgC8tQYAMOIAgDTiAIDv8AUAOOIAgDziAIBA4gCAROIAgEjiAICAPQAAgQkAAIIdAABM4gCA4cgGAFDiAIDjSAQAVOIAgKO1BgBY4gCAhigAAIdAAQBc4gCAptkGAKXRBgBg4gCAqyEGAKrNBgBk4gCAaOIAgK8pBgCuIQYArSkGAKw1BgBs4gCAs70BAHDiAIB04gCAtnkBAHjiAIB84gCAtXkBALpVAQC7XQEAgOIAgITiAIC++QAAv/kAALxFAQC9+QAAqHECAKlxAgCqcQIAq3ECAKy1AgCtvQIArrUCAK+tAgC+rDwAiOIAgIziAICQ4gCAlOIAgJjiAICc4gCAoOIAgLhpAwC5aQMAugkDALsJAwC8HQMAvQUDAL4NAwC/BQMAsNUCALHdAgCy1QIAs2kDALR5AwC1eQMAtmkDALdhAwCk4gCAqOIAgKziAICj9QIAsOIAgKUxAgCmMQIAtOIAgLjiAIC84gCAqh0CAKsVAgCsDQIArbEDAK6xAwCvsQMA7xgCAIIVAACBbQAAgG0AAMDiAIDI4gCAhvg8AIcYAwDM4gCA0OIAgNTiAIDY4gCA42wHAAThAIDhaAEA3OIAgKiFAgCplQIAqpUCAKulAgCsvQIArdUCAK7RAgCv0QIA4OIAgOTiAIDo4gCA7OIAgPDiAID04gCA+OIAgPziAIC4dQEAuX0BALp1AQC7zQEAvNUBAL3dAQC+yQEAv8EBALC1AgCxvQIAsoECALOBAgC0VQEAtV0BALZVAQC3TQEA4bQGAADjAIDj9AYABOMAgIQYPQAI4wCADOMAgBDjAIAU4wCAGOMAgBzjAIAg4wCAJOMAgCjjAIDvWAYALOMAgIF9AACAcQAAMOMAgIIFAAA44wCAPOMAgO+AAQC+VDwA4ZABAEDjAIDjfAYAROMAgEjjAIBM4wCAhtg8AIf0PACjnT0AxOIAgDTjAIBQ4wCAVOMAgKbVPQCltT0AWOMAgKv5PQCq8T0AXOMAgGDjAICvGT4ArhE+AK3VPQCs1T0AZOMAgLOhPgBo4wCAbOMAgLatPgBw4wCAdOMAgLWxPgC6ST8Au0k/AHjjAIB84wCAvkk/AL9JPwC8ST8AvUk/AKhVPgCpZT4Aqm0+AKtlPgCsfT4ArWk+AK65PwCvuT8AgOMAgITjAICI4wCAjOMAgJDjAICU4wCAmOMAgJzjAIC4VT8AuV0/ALpVPwC7bT8AvHU/AL19PwC+dT8Av20/ALDJPwCxyT8A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rjUCAK1VAgCsVQIAPOcAgEDnAIBE5wCASOcAgEznAIBQ5wCAVOcAgO/4AQC+bAQA4YAOAFjnAIDjFAEAXOcAgGDnAIBk5wCAaOcAgGznAIBw5wCAdOcAgLPdAQB45wCAtf0BALb1AQB85wCAgOcAgITnAIC6sQEAu4UBALydAQC9NQEAvj0BAL81AQCpBQYAqLkFAKsVBgCqHQYArT0GAKw9BgCvTQYArl0GACTnAICCHQAAgR0AAIAdAACI5wCAjOcAgJDnAICU5wCAuUEHALidBgC7QQcAukkHAL1FBwC8WQcAv0UHAL5FBwCxCQYAsD0GALOpBgCyAQYAtbkGALSxBgC3rQYAtrEGAKORBgCEjAIAhigAAIfAAwCY5wCAprkGAKWxBgCc5wCAq8kGAKr9BgCg5wCApOcAgK95BgCucQYArXkGAKzRBgCo5wCAs5kHAKznAICw5wCAtlEHALTnAIC45wCAtbEHALptBwC7dQcAvOcAgMDnAIC+WQcAv0UHALxtBwC9ZQcAxOcAgMjnAIDM5wCA0OcAgNTnAIDY5wCA3OcAgO+oBQDg5wCA4TQFAOTnAIDjdAUA6OcAgOznAIDw5wCA9OcAgKMdBgCCLQAAgRUAAIAdAAD45wCAptUGAKU1BgD85wCAq/EGAKrpBgAA6ACAhCgBAK/BBgCu3QYAreEGAKzpBgCoxQYAqdUGAKrVBgCr5QYArP0GAK0VBgCuHQYArxUGAL7sAQAI6ACAhggAAIcgAAAM6ACAEOgAgBToAIAY6ACAuH0GALkFBgC6DQYAuwUGALwBBgC9CQYAvjkGAL85BgCwbQYAsXUGALJ9BgCzdQYAtFkGALVFBgC2TQYAt0UGAKiRAgCpmQIAqqECAKuhAgCs0QIArd0CAK7VAgCvyQIAHOgAgCDoAIAk6ACAvyweACjoAIAs6ACAMOgAgDToAIC4VQMAuV0DALppAwC7ZQMAvGEDAL1hAwC+YQMAv2EDALC5AgCxjQIAsoUCALNtAwC0dQMAtX0DALZ1AwC3bQMAOOgAgDzoAICzIQIAQOgAgLVRAgCEiAMAROgAgLZVAgC05gCAvigcALtBAgC6dQIAvbEDALxZAgC/sQMAvrkDAKNpAgBI6ACATOgAgFDoAIBU6ACAph0CAKUZAgBY6ACAqwkCAKo9AgBc6ACAYOgAgK/5AwCu8QMA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hLkHAIW5BwCG2QcAh9kHAIjpBwCJ6QcAivkHAIv5BwCM6QcAjekHAI7RBwCP0QcAkLEHAJGxBwCSSQEAk0kBAJRZAQCVWQEAlkkBAJdJAQCYeQEAmXkBAJpJAQCbSQEAnFkBAJ1ZAQCeSQEAn0kBAKC5AQChuQEAoskBAKPJAQCk2QEApdkBAKbJAQCnyQEAqPkBAKn5AQCqyQEAq8kBAKzZAQCt2QEArskBAK/JAQCwuQEAsbkBALJJAQCzSQEAtFkBALVZAQC2SQEAt0kBALh5AQC5eQEAukkBALtJAQC8WQEAvVkBAL5JAQC/SQEA0jEAgNYxAIDaMQCAkjIAgNoyAIDmMgCA6jIAgO4yAIDyMgCA+jIAgP4yAIASMwCALjMAgDYzAIB2MwCAejMAgIIzAICGMwCAjjMAgJIzAIC2MwCAujMAgNYzAIDaMwCA3jMAgOIzAID2MwCAGjQAgB40AIAiNACARjQAgIY0AICKNACAqjQAgLo0AIDCNACA4jQAgAY1AIBKNQCAUjUAgGY1AIByNQCAejUAgII1AICGNQCAijUAgKI1AICmNQCAwjUAgMo1AIDSNQCA1jUAgOI1AIDqNQCA7jUAgPI1AID6NQCA/jUAgJ42AICyNgCAnoUMAOY2AIDqNgCA8jYAgIC5AwCBuQMAgskDAIPJAwCE2QMAhdkDAIbJAwCHyQMAiPkDAIn5AwCKyQMAi8kDAIzZAwCN2QMAjs0DAI/FAwCQvQMAkQEMAJJJDgCTSQ4AlFkOAJVZDgCWSQ4Al0kOAJh5DgCZeQ4AmkkOAJtJDgCcWQ4AnVkOAJ5JDgCfSQ4AoLkOAKG5DgCiyQ4Ao8kOAKTZDgCl2Q4ApskOAKfJDgCo+Q4AqfkOAKrJDgCryQ4ArNkOAK3ZDgCuyQ4Ar8kOALC5DgCxuQ4AskkOALNJDgC0WQ4AtVkOALZJDgC3SQ4AuHkOALl5DgC6SQ4Au0kOALxZDgC9WQ4AvkkOAL9JDgC8eQQAvXkEAL6JBAC/nQQAuHUEALl9BAC6aQQAu2kEALRxBAC1cQQAtnEEALdxBACwcQQAsXEEALJxBACzcQQArGkEAK1pBACucQQAr3EEAKhBBACpQQQAqkEEAKtBBACknQUApWEEAKZhBACnYQQAoJ0FAKGFBQCijQUAo4UFAJxdBQCdZQUAnm0FAJ9lBQCYXQUA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NAYAgEsGAIBoBgCAfwYAgJYGAIDdAwCA9gMAgA8EAIASBwCAQQgAgD4IAIA/BwCAOSQAgHIkAICjJACAyCQAgLkmAIDEJgCAyCYAgMwmAIDQJgCALygAgG4oAICWKACAmigAgL8oAIDHKACA4ygAgPUoAID5KACA/SgAgLrp0wAVKQCAMCkAgEspAIA9JACASiQAgFckAIBkJACAdiQAgIMkAICVJACApyQAgLckAIDMJACA1iQAgOQkAIDuJACA+yQAgAwlAIAWJQCAbyUAgHYlAIAkJQCAgBkDAIEZAwCCKQMAgykDAIQ5AwCFOQMAhikDAIcpAwCIGQMAiRkDAIppAwCLaQMAjHkDAI15AwCOaQMAj2kDAJAZAwCRGQMAkgEEAJMtAwCUNQMAlVUGAJZdBgCXVQYAmG0GAJl1BgCafQYAm3UGAJxtBgCdNQYAnj0GAJ81BgCgzQYAodUGAKLdBgCj1QYApPkDAKX5AwCm6QMAp+kDAKjZAwCp+QYAqikGAKspBgCsOQYArTkGAK7FAwCvPQMAsEUDALFNAwCyRQMAs10DALRFAwC1TQMAtkUDALd9AwC4SQMAuUkDALpZAwC7fQYAvGUGAL1tBgC+ZQYAgCUAgKkVDwCoAQ8Aq00PAKpNDwCtRQ8ArEUPAK+hDQCuqQ0AoXULAKBhCwCj7QsAoqkLAKXlCwCk5QsApzkPAKZZCAC5oQ0AuJkNALuhDQC6qQ0AvaENALy5DQAxJQCAvqkNALGhDQCw2Q0As6ENALKpDQC1oQ0AtLkNALehDQC2qQ0AOCUAgEglAIBbJQCAsiUAgLwlAICRJQCAoSUAgNAlAICB7Q0AgO0NAIP9DQCC/Q0Ahe0NAITtDQCH2Q0AhiEYAJlNDQCYTQ0Am1ENAJpdDQCdeQ0AnHUNAJ9pDQCecQ0AkYkNAJCBDQCTmQ0AkoENAJWJDQCUgQ0Al30NAJaBDQDgJACAICUAgI0lAIDMJQCA3iUAgAgmAIAtJgCAQiYAgPAlAID6JQCADCYAgBkmAIAxJgCATiYAgFgmAIB2JgCASiYAgGYmAIBuJgCAgCYAgIwmAICUJgCAoyYAgN4mAICcJgCAsiYAgKcmAIC9JgCA1CYAgOImAIABJwCAEScAgBsnAIBPJwCAkicAgOcnAIBPKQCAXSkAgGEpAIBlKQCA8CYAgC4nAIA+JwCASCcAgCMnAIBTJwCAYycAgH4nAIBwJwCAlicAgMInAIDJJwCApicAgNMnAIDdJwCAtCcAgBgoAIAKKACA6ycAgCUoAIDyJwCA/CcAgDMoAIBAKACASigAgFQoAIBeKACAcigAgH8oAICGKACAnigAgKUoAICyKACAyygAgNUoAIDnKACAASkAgA4pAIAZKQCAIykAgDQpAIA7KQCAUykAgMMDAIDmBACAhQUAgNgFAIATBgCAOQYAgFAGAIBtBgCAhAYAgJsGAIDjAwCA/AMAgBUEAIAoBACAOwQAgE4EAIBhBACAdAQAgIcEAICaBACAAAUAgA8FAIAeBQCALQUAgDwFAIBjCACAJAgAgMEGAID8BwCAHQkAgOMoEwAzCQCAKggAgC0IAIAxCACAJAcAgNwuAIDKMACA2S0AgLswAIBFMQCAJwkAgO/sEwAGCQCA3A0AgM8IAICDCACAMQcAgEwHAID8BgCACggAgJQIAIAqCQCACQkAgOANAIDsDQCA2wgAgJkIAIAVBwCAhggAgFUHAID/BgCApgcAgJEkAIDwDQCA4ggAgCcIAICcCACAWAgAgBUJAID0DQCA5QgAgBQIAICfCACA6AgAgBcIAIDJCACAoggAgOwIAIAbCACAzAgAgKYIAID3CACA/QgAgIgHAICKCACAWQcAgAMHAIA9CQCAQQkAgEkJAIA2CQCAGAkAgPgNAID0CACALQkAgAwJAIDkDQCA0ggAgI4IAIBdBwCAMAkAgA8JAIDoDQCA1QgAgJEIAIBgBwCArQgAgGMHAIDjSBIA4xQSAOP4EwDjuBMA4+wSAOOgEgDjbBIA43gSAO/ADQDv2A0A73QSAO9QEgDvqBIA79wSAO8oEwDvIBMA6QcAgMwGAIAOCACAEQgAgNgGAIDUBgCAIQgAgAcHAIBnCACADAcAgHYIAIA0BwCANwcAgKoIAIC2CACAuQgAgOPYEADjoBAA46AQAON0EQDjNBAA4wgQAOPkEADj9BAA77wQAO/gEADvzBAA7zgQAO8QEADvcBAA73AQAO9MEADjhBMA4+gTAOMwEADjEBAA42ATAONAEwDjpBMA47QTAO/IEwDvtBMA75gTAO98EwDvXBMA70wTAO8UEwDv6BAAgO08AIH1PACC/TwAg/U8AITtPACFFT0Ahh09AIcVPQCILT0AiTU9AIo9PQCLNT0AjC09AI0VPQCOHT0AjxU9AJBtPQCRdT0Akn09AJN1PQCUbT0AlRU9AJYdPQCXFT0AmC09AJk1PQCaPT0AmzU9AJwtPQCdFT0Anh09AJ8VPQCg7T0AofU9AKL9PQCj9T0ApO09AKUVPQCmHT0ApxU9AKgtPQCpNT0Aqj09AKs1PQCsLT0ArRU9AK4dPQCvFT0AsG09ALF1PQCyfT0As3U9ALRtPQC1FT0AthE9ALcRPQC4MT0AuTE9ALoxPQC7MT0AvBE9AL0RPQC+ET0AvxE9AIDxPACB/TwAgvU8AIMNPwCEFT8AhR0/AIYVPwCHDT8AiDU/AIk9PwCKNT8Aiw0/AIwVPwCNHT8AjhU/AI8NPwCQdT8AkX0/AJJ1PwCTDT8AlBU/AJUZPwCWCT8Alwk/AJg5PwCZOT8Amgk/AJsJPwCcGT8AnRk/AJ4JPwCfCT8AoPk/AKH5PwCiCT8Aowk/AKQZPwClGT8Apgk/AKcJPwCoOT8AqTk/AKoJPwCrCT8ArBk/AK0ZPwCuCT8Arwk/ALB5PwCxeT8Asgk/ALMJPwC0GT8AtRk/ALYJPwC3CT8AuDk/ALk5PwC6CT8Auwk/ALwZPwC9GT8Avgk/AL8JPwCA+TwAgfk8AIJJPQCDST0AhFk9AIVZPQCGST0Ah0k9AIh5PQCJeT0Aikk9AItJPQCMWT0AjVk9AI5JPQCPST0AkDk9AJE5PQCSAQQAk00GAJRVBgCVXQYAllUGAJdNBgCYdQYAmX0GAJp1BgCbTQYAnFUGAJ1dBgCeVQYAn00GAKC1BgChvQYAorUGAKPNBgCk1QYApd0GAKbVBgCnzQYAqPUGAKn9BgCq9QYAq80GAKzVBgCt3QYArtUGAK/NBgCwtQYAsb0GALK1BgCzTQYAtFUGALVdBgC2VQYAt00GALh1BgC5fQYAunUGALtNBgC8VQYAvV0GAL5VBgC/TQYArH0/AK2lPwCurT8Ar6U/AKh9PwCpZT8Aqm0/AKtlPwCkHT8ApUU/AKZNPwCnRT8AoB0/AKEFPwCiDT8AowU/ALydPwC9pT8Avq0/AL+lPwC4nT8AuYU/ALqNPwC7hT8AtN0/ALWlPwC2rT8At6U/ALDdPwCxxT8Ass0/ALPFPwCMZToAjW06AI5lOgCPfToAiEU6AIlNOgCKRToAi306AIRlOgCFbToAhmU6AId9OgCABToA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ACDZjgAg2Y7ZkQAg2Y8AINmP2ZEAINmQACDZkNmRACDZkQAg2ZHZsAAg2ZIAIOOCmQAg44KaACEAISEAIT8AIgAjACQAJQAmACcAKAAoMSkAKDEwKQAoMTEpACgxMikAKDEzKQAoMTQpACgxNSkAKDE2KQAoMTcpACgxOCkAKDE5KQAoMikAKDIwKQAoMykAKDQpACg1KQAoNikAKDcpACg4KQAoOSkAKEEpAChCKQAoQykAKEQpAChFKQAoRikAKEcpAChIKQAoSSkAKEopAChLKQAoTCkAKE0pAChOKQAoTykAKFApAChRKQAoUikAKFMpAChUKQAoVSkAKFYpAChXKQAoWCkAKFkpAChaKQAoYSkAKGIpAChjKQAoZCkAKGUpAChmKQAoZykAKGgpAChpKQAoaikAKGspAChsKQAobSkAKG4pAChvKQAocCkAKHEpAChyKQAocykAKHQpACh1KQAodikAKHcpACh4KQAoeSkAKHopACjhhIApACjhhIIpACjhhIMpACjhhIUpACjhhIYpACjhhIcpACjhhIkpACjhhIspACjhhIwpACjhhI4pACjhhI8pACjhhJApACjhhJEpACjhhJIpACjkuIApACjkuIMpACjkuIkpACjkuZ0pACjkuowpACjkupQpACjku6MpACjkvIEpACjkvJEpACjlhaspACjlha0pACjlirQpACjljYEpACjljZQpACjlkI0pACjlkbwpACjlm5spACjlnJ8pACjlraYpACjml6UpACjmnIgpACjmnIkpACjmnKgpACjmoKopACjmsLQpACjngaspACjnibkpACjnm6MpACjnpL4pACjnpZ0pACjnpa0pACjoh6opACjoh7MpACjosqEpACjos4cpACjph5EpACjqsIApACjrgpgpACjri6QpACjrnbwpACjrp4gpACjrsJQpACjsgqwpACjslYQpACjsmKTsoIQpACjsmKTtm4QpACjsnpApACjso7wpACjssKgpACjsubQpACjtg4ApACjtjIwpACjtlZgpACkAKgArACwALQAuAC4uAC4uLgAvADAAMCwAMC4AMOKBhDMAMOeCuQAxADEsADEuADEwADEwLgAxMOaXpQAxMOaciAAxMOeCuQAxMQAxMS4AMTHml6UAMTHmnIgAMTHngrkAMTIAMTIuADEy5pelADEy5pyIADEy54K5ADEzADEzLgAxM+aXpQAxM+eCuQAxNAAxNC4AMTTml6UAMTTngrkAMTUAMTUuADE15pelADE154K5ADE2ADE2LgAxNuaXpQAxNueCuQAxNwAxNy4AMTfml6UAMTfngrkAMTgAMTguADE45pelADE454K5ADE5ADE5LgAxOeaXpQAxOeeCuQAx4oGEADHigYQxMAAx4oGEMgAx4oGEMwAx4oGENAAx4oGENQAx4oGENgAx4oGENwAx4oGEOAAx4oGEOQAx5pelADHmnIgAMeeCuQAyADIsADIuADIwADIwLgAyMOaXpQAyMOeCuQAyMQAyMeaXpQAyMeeCuQAyMgAyMuaXpQAyMueCuQAyMwAyM+aXpQAyM+eCuQAyNAAyNOaXpQAyNOeCuQAyNQAyNeaXpQAyNgAyNuaXpQAyNwAyN+aXpQAyOAAyOOaXpQAyOQAyOeaXpQAy4oGEMwAy4oGENQAy5pelADLmnIgAMueCuQAzADMsADMuADMwADMw5pelADMxADMx5pelADMyADMzADM0ADM1ADM2ADM3ADM4ADM5ADPigYQ0ADPigYQ1ADPigYQ4ADPml6UAM+aciAAz54K5ADQANCwANC4ANDAANDEANDIANDMANDQANDUANDYANDcANDgANDkANOKBhDUANOaXpQA05pyIADTngrkANQA1LAA1LgA1MAA14oGENgA14oGEOAA15pelADXmnIgANeeCuQA2ADYsADYuADbml6UANuaciAA254K5ADcANywANy4AN+KBhDgAN+aXpQA35pyIADfngrkAOAA4LAA4LgA45pelADjmnIgAOOeCuQA5ADksADkuADnml6UAOeaciAA554K5ADoAOjo9ADsAPAA9AD09AD09PQA+AD8APyEAPz8AQABBAEFVAEHiiJVtAEIAQnEAQwBDRABDby4AQ+KIlWtnAEQAREoARFoARHoARMW9AETFvgBFAEYARkFYAEcAR0IAR0h6AEdQYQBHeQBIAEhQAEhWAEhnAEh6AEkASUkASUlJAElKAElVAElWAElYAEoASwBLQgBLSwBLTQBMAExKAExURABMagBMwrcATQBNQgBNQwBNRABNSHoATVBhAE1WAE1XAE3OqQBOAE5KAE5qAE5vAE8AUABQSABQUE0AUFBWAFBSAFBURQBQYQBRAFIAUnMAUwBTRABTTQBTUwBTdgBUAFRFTABUSHoAVE0AVQBWAFZJAFZJSQBWSUlJAFbiiJVtAFcAV0MAV1oAV2IAWABYSQBYSUkAWQBaAFsAXABdAF4AXwBgAGEAYS5tLgBhL2MAYS9zAGHKvgBiAGJhcgBjAGMvbwBjL3UAY2FsAGNjAGNkAGNtAGNtMgBjbTMAZABkQgBkYQBkbABkbQBkbTIAZG0zAGR6AGTFvgBlAGVWAGVyZwBmAGZmAGZmaQBmZmwAZmkAZmwAZm0AZwBnYWwAaABoUGEAaGEAaQBpaQBpaWkAaWoAaW4AaXYAaXgAagBrAGtBAGtIegBrUGEAa1YAa1cAa2NhbABrZwBrbABrbQBrbTIAa20zAGt0AGvOqQBsAGxqAGxtAGxuAGxvZwBseABswrcAbQBtMgBtMwBtQQBtVgBtVwBtYgBtZwBtaWwAbWwAbW0AbW0yAG1tMwBtb2wAbXMAbeKIlXMAbeKIlXMyAG4AbkEAbkYAblYAblcAbmoAbm0AbnMAbwBvVgBwAHAubS4AcEEAcEYAcFYAcFcAcGMAcHMAcQByAHJhZAByYWTiiJVzAHJhZOKIlXMyAHMAc3IAc3QAdAB1AHYAdmkAdmlpAHZpaWkAdwB4AHhpAHhpaQB5AHoAewB8AH0AwqIAwqMAwqUAwqYAwqwAwrBDAMKwRgDCtwDDgADDgQDDggDDgwDDhADDhQDDhgDDhwDDiADDiQDDigDDiwDDjADDjQDDjgDDjwDDkQDDkgDDkwDDlADDlQDDlgDDmQDDmgDDmwDDnADDnQDDoADDoQDDogDDowDDpADDpQDDpwDDqADDqQDDqgDDqwDDrADDrQDDrgDDrwDDsADDsQDDsgDDswDDtADDtQDDtgDDuQDDugDDuwDDvADDvQDDvwDEgADEgQDEggDEgwDEhADEhQDEhgDEhwDEiADEiQDEigDEiwDEjADEjQDEjgDEjwDEkgDEkwDElADElQDElgDElwDEmADEmQDEmgDEmwDEnADEnQDEngDEnwDEoADEoQDEogDEowDEpADEpQDEpgDEpwDEqADEqQDEqgDEqwDErADErQDErgDErwDEsADEsQDEtADEtQDEtgDEtwDEuQDEugDEuwDEvADEvQDEvgDFgwDFhADFhQDFhgDFhwDFiADFiwDFjADFjQDFjgDFjwDFkADFkQDFkwDFlADFlQDFlgDFlwDFmADFmQDFmgDFmwDFnADFnQDFngDFnwDFoADFoQDFogDFowDFpADFpQDFqADFqQDFqgDFqwDFrADFrQDFrgDFrwDFsADFsQDFsgDFswDFtADFtQDFtgDFtwDFuADFuQDFugDFuwDFvADFvQDFvgDGjgDGkADGoADGoQDGqwDGrwDGsADHjQDHjgDHjwDHkADHkQDHkgDHkwDHlADHlQDHlgDHlwDHmADHmQDHmgDHmwDHnADHngDHnwDHoADHoQDHogDHowDHpgDHpwDHqADHqQDHqgDHqwDHrADHrQDHrgDHrwDHsADHtADHtQDHuADHuQDHugDHuwDHvADHvQDHvgDHvwDIgADIgQDIggDIgwDIhADIhQDIhgDIhwDIiADIiQDIigDIiwDIjADIjQDIjgDIjwDIkADIkQDIkgDIkwDIlADIlQDIlgDIlwDImADImQDImgDImwDIngDInwDIogDIpgDIpwDIqADIqQDIqgDIqwDIrADIrQDIrgDIrwDIsADIsQDIsgDIswDItwDJkADJkQDJkgDJlADJlQDJmQDJmwDJnADJnwDJoQDJowDJpQDJpgDJqADJqQDJqgDJqwDJrQDJrwDJsADJsQDJsgDJswDJtADJtQDJuADJuQDJuwDKgQDKggDKgwDKiQDKigDKiwDKjADKkADKkQDKkgDKlQDKnQDKnwDKuQDKvG4AzIAAzIEAzIjMgQDMkwDOhgDOiADOiQDOigDOjADOjgDOjwDOkADOkQDOkgDOkwDOlADOlQDOlgDOlwDOmADOmQDOmgDOmwDOnADOnQDOngDOnwDOoADOoQDOowDOpADOpQDOpgDOpwDOqADOqQDOqgDOqwDOrADOrQDOrgDOrwDOsADOsQDOsgDOswDOtADOtQDOtgDOtwDOuADOuQDOugDOuwDOvADOvEEAzrxGAM68VgDOvFcAzrxnAM68bADOvG0AzrxzAM69AM6+AM6/AM+AAM+BAM+CAM+DAM+EAM+FAM+GAM+HAM+IAM+JAM+KAM+LAM+MAM+NAM+OAM+cAM+dANCAANCBANCDANCHANCMANCNANCOANCZANC5ANC9ANGKANGMANGQANGRANGTANGXANGcANGdANGeANG2ANG3ANOBANOCANOQANORANOSANOTANOWANOXANOaANObANOcANOdANOeANOfANOiANOjANOkANOlANOmANOnANOqANOrANOsANOtANOuANOvANOwANOxANOyANOzANO0ANO1ANO4ANO5ANWl1oIA1bTVpQDVtNWrANW01a0A1bTVtgDVvtW2ANeQANeQ1rcA15DWuADXkNa8ANeQ15wA15EA15HWvADXkda/ANeSANeS1rwA15MA15PWvADXlADXlNa8ANeV1rkA15XWvADXlta8ANeY1rwA15nWtADXmda8ANea1rwA15sA15vWvADXm9a/ANecANec1rwA150A157WvADXoNa8ANeh1rwA16IA16PWvADXpNa8ANek1r8A16bWvADXp9a8ANeoANeo1rwA16nWvADXqda814EA16nWvNeCANep14EA16nXggDXqgDXqta8ANey1rcA2KEA2KIA2KMA2KQA2KUA2KYA2KbYpwDYptisANim2K0A2KbYrgDYptixANim2LIA2KbZhQDYptmGANim2YcA2KbZiADYptmJANim2YoA2KbbhgDYptuHANim24gA2KbbkADYptuVANinANin2YPYqNixANin2YTZhNmHANin2YsA2KfZtADYqADYqNisANio2K0A2KjYrdmKANio2K4A2KjYrtmKANio2LEA2KjYsgDYqNmFANio2YYA2KjZhwDYqNmJANio2YoA2KkA2KoA2KrYrADYqtis2YUA2KrYrNmJANiq2KzZigDYqtitANiq2K3YrADYqtit2YUA2KrYrgDYqtiu2YUA2KrYrtmJANiq2K7ZigDYqtixANiq2LIA2KrZhQDYqtmF2KwA2KrZhditANiq2YXYrgDYqtmF2YkA2KrZhdmKANiq2YYA2KrZhwDYqtmJANiq2YoA2KsA2KvYrADYq9ixANir2LIA2KvZhQDYq9mGANir2YcA2KvZiQDYq9mKANisANis2K0A2KzYrdmJANis2K3ZigDYrNmEINis2YTYp9mE2YcA2KzZhQDYrNmF2K0A2KzZhdmJANis2YXZigDYrNmJANis2YoA2K0A2K3YrADYrdis2YoA2K3ZhQDYrdmF2YkA2K3ZhdmKANit2YkA2K3ZigDYrgDYrtisANiu2K0A2K7ZhQDYrtmJANiu2YoA2K8A2LAA2LDZsADYsQDYsdiz2YjZhADYsdmwANix24zYp9mEANiyANizANiz2KwA2LPYrNitANiz2KzZ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AOGEjQDhhI4A4YSPAOGEkADhhJEA4YSSAOGElADhhJUA4YSaAOGEnADhhJ0A4YSeAOGEoADhhKEA4YSiAOGEowDhhKcA4YSpAOGEqwDhhKwA4YStAOGErgDhhK8A4YSyAOGEtgDhhYAA4YWHAOGFjADhhZcA4YWYAOGFmQDhhaAA4YWhAOGFogDhhaMA4YWkAOGFpQDhhaYA4YWnAOGFqADhhakA4YWqAOGFqwDhhawA4YWtAOGFrgDhha8A4YWwAOGFsQDhhbIA4YWzAOGFtADhhbUA4YaEAOGGhQDhhogA4YaRAOGGkgDhhpQA4YaeAOGGoQDhhqoA4YasAOGGrQDhhrAA4YaxAOGGsgDhhrMA4Ya0AOGGtQDhh4cA4YeIAOGHjADhh44A4YeTAOGHlwDhh5kA4YedAOGHnwDhh7EA4YeyAOGshgDhrIgA4ayKAOGsjADhrI4A4aySAOGsuwDhrL0A4a2AAOGtgQDhrYMA4bSCAOG0lgDhtJcA4bScAOG0nQDhtKUA4bW7AOG2hQDhuIAA4biBAOG4ggDhuIMA4biEAOG4hQDhuIYA4biHAOG4iADhuIkA4biKAOG4iwDhuIwA4biNAOG4jgDhuI8A4biQAOG4kQDhuJIA4biTAOG4lADhuJUA4biWAOG4lwDhuJgA4biZAOG4mgDhuJsA4bicAOG4nQDhuJ4A4bifAOG4oADhuKEA4biiAOG4owDhuKQA4bilAOG4pgDhuKcA4bioAOG4qQDhuKoA4birAOG4rADhuK0A4biuAOG4rwDhuLAA4bixAOG4sgDhuLMA4bi0AOG4tQDhuLYA4bi3AOG4uADhuLkA4bi6AOG4uwDhuLwA4bi9AOG4vgDhuL8A4bmAAOG5gQDhuYIA4bmDAOG5hADhuYUA4bmGAOG5hwDhuYgA4bmJAOG5igDhuYsA4bmMAOG5jQDhuY4A4bmPAOG5kADhuZEA4bmSAOG5kwDhuZQA4bmVAOG5lgDhuZcA4bmYAOG5mQDhuZoA4bmbAOG5nADhuZ0A4bmeAOG5nwDhuaAA4bmhAOG5ogDhuaMA4bmkAOG5pQDhuaYA4bmnAOG5qADhuakA4bmqAOG5qwDhuawA4bmtAOG5rgDhua8A4bmwAOG5sQDhubIA4bmzAOG5tADhubUA4bm2AOG5twDhubgA4bm5AOG5ugDhubsA4bm8AOG5vQDhub4A4bm/AOG6gADhuoEA4bqCAOG6gwDhuoQA4bqFAOG6hgDhuocA4bqIAOG6iQDhuooA4bqLAOG6jADhuo0A4bqOAOG6jwDhupAA4bqRAOG6kgDhupMA4bqUAOG6lQDhupYA4bqXAOG6mADhupkA4bqgAOG6oQDhuqIA4bqjAOG6pADhuqUA4bqmAOG6pwDhuqgA4bqpAOG6qgDhuqsA4bqsAOG6rQDhuq4A4bqvAOG6sADhurEA4bqyAOG6swDhurQA4bq1AOG6tgDhurcA4bq4AOG6uQDhuroA4bq7AOG6vADhur0A4bq+AOG6vwDhu4AA4buBAOG7ggDhu4MA4buEAOG7hQDhu4YA4buHAOG7iADhu4kA4buKAOG7iwDhu4wA4buNAOG7jgDhu48A4buQAOG7kQDhu5IA4buTAOG7lADhu5UA4buWAOG7lwDhu5gA4buZAOG7mgDhu5sA4bucAOG7nQDhu54A4bufAOG7oADhu6EA4buiAOG7owDhu6QA4bulAOG7pgDhu6cA4buoAOG7qQDhu6oA4burAOG7rADhu60A4buuAOG7rwDhu7AA4buxAOG7sgDhu7MA4bu0AOG7tQDhu7YA4bu3AOG7uADhu7kA4byAAOG8gQDhvIIA4byDAOG8hADhvIUA4byGAOG8hwDhvIgA4byJAOG8igDhvIsA4byMAOG8jQDhvI4A4byPAOG8kADhvJEA4bySAOG8kwDhvJQA4byVAOG8mADhvJkA4byaAOG8mwDhvJwA4bydAOG8oADhvKEA4byiAOG8owDhvKQA4bylAOG8pgDhvKcA4byoAOG8qQDhvKoA4byrAOG8rADhvK0A4byuAOG8rwDhvLAA4byxAOG8sgDhvLMA4by0AOG8tQDhvLYA4by3AOG8uADhvLkA4by6AOG8uwDhvLwA4by9AOG8vgDhvL8A4b2AAOG9gQDhvYIA4b2DAOG9hADhvYUA4b2IAOG9iQDhvYoA4b2LAOG9jADhvY0A4b2QAOG9kQDhvZIA4b2TAOG9lADhvZUA4b2WAOG9lwDhvZkA4b2bAOG9nQDhvZ8A4b2gAOG9oQDhvaIA4b2jAOG9pADhvaUA4b2mAOG9pwDhvagA4b2pAOG9qgDhvasA4b2sAOG9rQDhva4A4b2vAOG9sADhvbIA4b20AOG9tgDhvbgA4b26AOG9vADhvoAA4b6BAOG+ggDhvoMA4b6EAOG+hQDhvoYA4b6HAOG+iADhvokA4b6KAOG+iwDhvowA4b6NAOG+jgDhvo8A4b6QAOG+kQDhvpIA4b6TAOG+lADhvpUA4b6WAOG+lwDhvpgA4b6ZAOG+mgDhvpsA4b6cAOG+nQDhvp4A4b6fAOG+oADhvqEA4b6iAOG+owDhvqQA4b6lAOG+pgDhvqcA4b6oAOG+qQDhvqoA4b6rAOG+rADhvq0A4b6uAOG+rwDhvrAA4b6xAOG+sgDhvrMA4b60AOG+tgDhvrcA4b64AOG+uQDhvroA4b68AOG/ggDhv4MA4b+EAOG/hgDhv4cA4b+IAOG/igDhv4wA4b+QAOG/kQDhv5IA4b+WAOG/lwDhv5gA4b+ZAOG/mgDhv6AA4b+hAOG/ogDhv6QA4b+lAOG/pgDhv6cA4b+oAOG/qQDhv6oA4b+sAOG/sgDhv7MA4b+0AOG/tgDhv7cA4b+4AOG/ugDhv7wA4oCQAOKAkwDigJQA4oCy4oCyAOKAsuKAsuKAsgDigLLigLLigLLigLIA4oC14oC1AOKAteKAteKAtQDigqkA4oaQAOKGkQDihpIA4oaTAOKGmgDihpsA4oauAOKHjQDih44A4oePAOKIggDiiIQA4oiHAOKIiQDiiIwA4oiRAOKIkgDiiKQA4oimAOKIq+KIqwDiiKviiKviiKsA4oir4oir4oir4oirAOKIruKIrgDiiK7iiK7iiK4A4omBAOKJhADiiYcA4omJAOKJoADiiaIA4omtAOKJrgDiia8A4omwAOKJsQDiibQA4om1AOKJuADiibkA4oqAAOKKgQDiioQA4oqFAOKKiADiiokA4oqsAOKKrQDiiq4A4oqvAOKLoADii6EA4ouiAOKLowDii6oA4ourAOKLrADii60A4pSCAOKWoADil4sA4qaFAOKmhgDiq53MuADitaEA44CBAOOAggDjgIgA44CJAOOAigDjgIsA44CMAOOAjQDjgI4A44CPAOOAkADjgJEA44CSAOOAlADjgJRT44CVAOOAlOS4ieOAlQDjgJTkuozjgJUA44CU5Yud44CVAOOAlOWuieOAlQDjgJTmiZPjgJUA44CU5pWX44CVAOOAlOacrOOAlQDjgJTngrnjgJUA44CU55uX44CVAOOAlQDjgJYA44CXAOOBjADjgY4A44GQAOOBkgDjgZQA44GWAOOBmADjgZoA44GcAOOBngDjgaAA44GiAOOBpQDjgacA44GpAOOBsADjgbEA44GzAOOBtADjgbYA44G3AOOBuQDjgboA44G744GLAOOBvADjgb0A44KI44KKAOOClADjgpkA44KaAOOCngDjgqEA44KiAOOCouODkeODvOODiADjgqLjg6vjg5XjgqEA44Ki44Oz44Oa44KiAOOCouODvOODqwDjgqMA44KkAOOCpOODi+ODs+OCsADjgqTjg7Pjg4EA44KlAOOCpgDjgqbjgqnjg7MA44KnAOOCqADjgqjjgrnjgq/jg7zjg4kA44Ko44O844Kr44O8AOOCqQDjgqoA44Kq44Oz44K5AOOCquODvOODoADjgqsA44Kr44Kk44OqAOOCq+ODqeODg+ODiADjgqvjg63jg6rjg7wA44KsAOOCrOODreODswDjgqzjg7Pjg54A44KtAOOCreODpeODquODvADjgq3jg60A44Kt44Ot44Kw44Op44OgAOOCreODreODoeODvOODiOODqwDjgq3jg63jg6/jg4Pjg4gA44KuAOOCruOCrADjgq7jg4vjg7wA44Ku44Or44OA44O8AOOCrwDjgq/jg6vjgrzjgqTjg60A44Kv44Ot44O844ONAOOCsADjgrDjg6njg6AA44Kw44Op44Og44OI44OzAOOCsQDjgrHjg7zjgrkA44KyAOOCswDjgrPjgrMA44Kz44OIAOOCs+ODq+ODigDjgrPjg7zjg50A44K0AOOCtQDjgrXjgqTjgq/jg6sA44K144Oz44OB44O844OgAOOCtgDjgrcA44K344Oq44Oz44KwAOOCuADjgrkA44K6AOOCuwDjgrvjg7Pjg4EA44K744Oz44OIAOOCvADjgr0A44K+AOOCvwDjg4AA44OA44O844K5AOODgQDjg4IA44ODAOODhADjg4UA44OGAOODhwDjg4fjgrcA44OIAOODiOODswDjg4kA44OJ44OrAOODigDjg4rjg44A44OLAOODjADjg40A44OOAOODjuODg+ODiADjg48A44OP44Kk44OEAOODkADjg5Djg7zjg6zjg6sA44ORAOODkeODvOOCu+ODs+ODiADjg5Hjg7zjg4QA44OSAOODkwDjg5Pjg6sA44OUAOODlOOCouOCueODiOODqwDjg5Tjgq/jg6sA44OU44KzAOODlQDjg5XjgqHjg6njg4Pjg4kA44OV44Kj44O844OIAOODleODqeODswDjg5YA44OW44OD44K344Kn44OrAOODlwDjg5gA44OY44Kv44K/44O844OrAOODmOODq+ODhADjg5kA44OZ44O844K/AOODmgDjg5rjgr0A44Oa44OL44OSAOODmuODs+OCuQDjg5rjg7zjgrgA44ObAOODm+ODswDjg5vjg7zjg6sA44Ob44O844OzAOODnADjg5zjg6vjg4gA44OdAOODneOCpOODs+ODiADjg53jg7Pjg4kA44OeAOODnuOCpOOCr+ODrQDjg57jgqTjg6sA44Oe44OD44OPAOODnuODq+OCrwDjg57jg7Pjgrfjg6fjg7MA44OfAOODn+OCr+ODreODswDjg5/jg6oA44Of44Oq44OQ44O844OrAOODoADjg6EA44Oh44KsAOODoeOCrOODiOODswDjg6Hjg7zjg4jjg6sA44OiAOODowDjg6QA44Ok44O844OJAOODpOODvOODqwDjg6UA44OmAOODpuOCouODswDjg6cA44OoAOODqQDjg6oA44Oq44OD44OI44OrAOODquODqQDjg6sA44Or44OU44O8AOODq+ODvOODluODqwDjg6wA44Os44OgAOODrOODs+ODiOOCsuODswDjg60A44OvAOODr+ODg+ODiADjg7AA44OxAOODsgDjg7MA44O0AOODtwDjg7gA44O5AOODugDjg7sA44O8AOODvgDjkp4A45K5AOOSuwDjk58A45SVAOObrgDjm7wA456BAOOgrwDjoaIA46G8AOOjhwDjo6MA46ScAOOkugDjqK4A46msAOOrpADjrIgA46yZAOOtiQDjrp0A47CYAOOxjgDjtLMA47aWAOO6rADjurgA47ybAOO/vADkgIgA5ICYAOSAuQDkgYYA5IKWAOSDowDkhK8A5IiCAOSIpwDkiqAA5IyBAOSMtADkjZkA5I+VAOSPmQDkkIsA5JGrAOSUqwDklZ0A5JWhAOSVqwDkl5cA5Je5AOSYtQDkmr4A5JuHAOSmlQDkp6YA5KmuAOSptgDkqrIA5KyzAOSvjgDks44A5LOtAOSzuADktZYA5LiAAOS4gQDkuIMA5LiJAOS4igDkuIsA5LiNAOS4mQDkuKYA5Lio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jQDmr5QA5q+bAOawjwDmsJQA5rC0AOaxjgDmsacA5rKIAOayvwDms4wA5rONAOazpQDms6gA5rSWAOa0mwDmtJ4A5rS0AOa0vgDmtYEA5rWpAOa1qgDmtbcA5rW4AOa2hQDmt4sA5reaAOa3qgDmt7kA5riaAOa4rwDmua4A5rqAAOa6nADmuroA5ruHAOa7iwDmu5EA5rubAOa8jwDmvJQA5ryiAOa8owDmva4A5r+GAOa/qwDmv74A54CbAOeAngDngLkA54GKAOeBqwDngbAA54G3AOeBvQDngpkA54KtAOeDiADng5kA54ShAOeFhQDnhYkA54WuAOeGnADnh44A54eQAOeIkADniJsA54ioAOeIqgDniKsA54i1AOeItgDniLsA54i/AOeJhwDniZAA54mZAOeJmwDniaIA54m5AOeKgADnipUA54qsAOeKrwDni4AA54u8AOeMqgDnjbUA5426AOeOhADnjocA546JAOeOiwDnjqUA546yAOePngDnkIYA55CJAOeQogDnkYcA55GcAOeRqQDnkbEA55KFAOeSiQDnkpgA55OKAOeTnADnk6YA55SGAOeUmADnlJ8A55SkAOeUqADnlLAA55SyAOeUswDnlLcA55S7AOeUvgDnlZkA55WlAOeVsADnlosA55aSAOeXogDnmJAA55idAOeYnwDnmYIA55mpAOeZtgDnmb0A55quAOeavwDnm4oA55ubAOebowDnm6cA55uuAOebtADnnIEA55yeAOecnwDnnYAA552KAOeeiwDnnqcA55+bAOefogDnn7MA56GOAOehqwDnoowA56KRAOejigDno4wA56O7AOekqgDnpLoA56S8AOekvgDnpYgA56WJAOelkADnpZYA56WdAOelngDnpaUA56W/AOemgQDnpo0A56aOAOemjwDnpq4A56a4AOemvgDnp4oA56eYAOenqwDnqJwA56mAAOepigDnqY8A56m0AOepugDnqoEA56qxAOeriwDnq64A56u5AOesoADnro8A56+AAOevhgDnr4kA57C+AOexoADnsbMA57G7AOeykgDnsr4A57OSAOezlgDns6MA57OnAOezqADns7gA57SAAOe0kADntKIA57SvAOe1ggDntZsA57WjAOe2oADntr4A57eHAOe3tADnuIIA57iJAOe4twDnuYEA57mFAOe8tgDnvL4A572RAOe9sgDnvbkA5726AOe+hQDnvooA576VAOe+mgDnvr0A57+6AOiAgQDogIUA6ICMAOiAkgDogLMA6IGGAOiBoADoga8A6IGwAOiBvgDogb8A6IKJAOiCiwDogq0A6IKyAOiEgwDohL4A6IeYAOiHowDoh6gA6IeqAOiHrQDoh7MA6Ie8AOiIgQDoiIQA6IiMAOiImADoiJsA6IifAOiJrgDoia8A6ImyAOiJuADoibkA6IqLAOiKkQDoip0A6IqxAOiKswDoir0A6IulAOiLpgDojJ0A6IyjAOiMtgDojZIA6I2TAOiNowDojq0A6I69AOiPiQDoj4oA6I+MAOiPnADoj6cA6I+vAOiPsQDokL0A6JGJAOiRlwDok64A6JOxAOiTswDok7wA6JSWAOiVpADol40A6Je6AOiYhgDomJIA6JitAOiYvwDomY0A6JmQAOiZnADomacA6JmpAOiZqwDomogA6JqpAOibogDonI4A6JyoAOidqwDonbkA6J6GAOieugDon6EA6KCBAOignwDooYAA6KGMAOihoADooaMA6KOCAOijjwDoo5cA6KOeAOijoQDoo7gA6KO6AOikkADopYEA6KWkAOilvgDopoYA6KaLAOimlgDop5IA6KejAOiogADoqqAA6KqqAOiqvwDoq4sA6KuSAOirlgDoq60A6Ku4AOirvgDorIEA6Ky5AOitmADoroAA6K6KAOiwtwDosYYA6LGIAOixlQDosbgA6LKdAOiyoQDosqkA6LKrAOizgQDos4IA6LOHAOiziADos5MA6LSIAOi0mwDotaQA6LWwAOi1twDotrMA6La8AOi3iwDot68A6LewAOi6qwDou4oA6LuUAOi8pgDovKoA6Ly4AOi8uwDovaIA6L6bAOi+ngDovrAA6L61AOi+tgDpgKMA6YC4AOmBigDpgakA6YGyAOmBvADpgo8A6YKRAOmClADpg44A6YOeAOmDsQDpg70A6YSRAOmEmwDphYkA6YWqAOmGmQDphrQA6YeGAOmHjADph48A6YeRAOmItADpiLgA6Ym2AOmJvADpi5cA6YuYAOmMhADpjYoA6Y+5AOmQlQDplbcA6ZaAAOmWiwDplq0A6Za3AOmYnADpmK4A6ZmLAOmZjQDpmbUA6Zm4AOmZvADpmoYA6ZqjAOmatgDpmrcA6Zq4AOmauQDpm4MA6ZuiAOmbowDpm6gA6Zu2AOmbtwDpnKMA6ZyyAOmdiADpnZEA6Z2WAOmdngDpnaIA6Z2pAOmfiwDpn5sA6Z+gAOmfrQDpn7MA6Z+/AOmggQDpoIUA6aCLAOmgmADpoKkA6aC7AOmhngDpoqgA6aObAOmjnwDpo6IA6aOvAOmjvADppKgA6aSpAOmmlgDpppkA6aanAOmmrADpp4IA6aexAOmnvgDpqaoA6aqoAOmrmADpq58A6aySAOmspQDprK8A6ayyAOmsvADprZoA6a2vAOmxgADpsZcA6bOlAOmzvQDptacA6ba0AOm3ugDpuJ4A6bm1AOm5vwDpupcA6bqfAOm6pQDpursA6buDAOm7jQDpu44A6buRAOm7uQDpu70A6bu+AOm8hQDpvI4A6byPAOm8kwDpvJYA6bygAOm8uwDpvYMA6b2KAOm9kgDpvo0A6b6OAOm+nADpvp8A6b6gAOqcpwDqna8A6qy3AOqtkgDqsIAA6rCBAOqwggDqsIMA6rCEAOqwhQDqsIYA6rCHAOqwiADqsIkA6rCKAOqwiwDqsIwA6rCNAOqwjgDqsI8A6rCQAOqwkQDqsJIA6rCTAOqwlADqsJUA6rCWAOqwlwDqsJgA6rCZAOqwmgDqsJsA6rCcAOqwnQDqsJ4A6rCfAOqwoADqsKEA6rCiAOqwowDqsKQA6rClAOqwpgDqsKcA6rCoAOqwqQDqsKoA6rCrAOqwrADqsK0A6rCuAOqwrwDqsLAA6rCxAOqwsgDqsLMA6rC0AOqwtQDqsLYA6rC3AOqwuADqsLkA6rC6AOqwuwDqsLwA6rC9AOqwvgDqsL8A6rGAAOqxgQDqsYIA6rGDAOqxhADqsYUA6rGGAOqxhwDqsYgA6rGJAOqxigDqsYsA6rGMAOqxjQDqsY4A6rGPAOqxkADqsZEA6rGSAOqxkwDqsZQA6rGVAOqxlgDqsZcA6rGYAOqxmQDqsZoA6rGbAOqxnADqsZ0A6rGeAOqxnwDqsaAA6rGhAOqxogDqsaMA6rGkAOqxpQDqsaYA6rGnAOqxqADqsakA6rGqAOqxqwDqsawA6rGtAOqxrgDqsa8A6rGwAOqxsQDqsbIA6rGzAOqxtADqsbUA6rG2AOqxtwDqsbgA6rG5AOqxugDqsbsA6rG8AOqxvQDqsb4A6rG/AOqygADqsoEA6rKCAOqygwDqsoQA6rKFAOqyhgDqsocA6rKIAOqyiQDqsooA6rKLAOqyjADqso0A6rKOAOqyjwDqspAA6rKRAOqykgDqspMA6rKUAOqylQDqspYA6rKXAOqymADqspkA6rKaAOqymwDqspwA6rKdAOqyngDqsp8A6rKgAOqyoQDqsqIA6rKjAOqypADqsqUA6rKmAOqypwDqsqgA6rKpAOqyqgDqsqsA6rKsAOqyrQDqsq4A6rKvAOqysADqsrEA6rKyAOqyswDqsrQA6rK1AOqytgDqsrcA6rK4AOqyuQDqsroA6rK7AOqyvADqsr0A6rK+AOqyvwDqs4AA6rOBAOqzggDqs4MA6rOEAOqzhQDqs4YA6rOHAOqziADqs4kA6rOKAOqziwDqs4wA6rONAOqzjgDqs48A6rOQAOqzkQDqs5IA6rOTAOqzlADqs5UA6rOWAOqzlwDqs5gA6rOZAOqzmgDqs5sA6rOcAOqznQDqs54A6rOfAOqzoADqs6EA6rOiAOqzowDqs6QA6rOlAOqzpgDqs6cA6rOoAOqzqQDqs6oA6rOrAOqzrADqs60A6rOuAOqzrwDqs7AA6rOxAOqzsgDqs7MA6rO0AOqztQDqs7YA6rO3AOqzuADqs7kA6rO6AOqzuwDqs7wA6rO9AOqzvgDqs78A6rSAAOq0gQDqtIIA6rSDAOq0hADqtIUA6rSGAOq0hwDqtIgA6rSJAOq0igDqtIsA6rSMAOq0jQDqtI4A6rSPAOq0kADqtJEA6rSSAOq0kwDqtJQA6rSVAOq0lgDqtJcA6rSYAOq0mQDqtJoA6rSbAOq0nADqtJ0A6rSeAOq0nwDqtKAA6rShAOq0ogDqtKMA6rSkAOq0pQDqtKYA6rSnAOq0qADqtKkA6rSqAOq0qwDqtKwA6rStAOq0rgDqtK8A6rSwAOq0sQDqtLIA6rSzAOq0tADqtLUA6rS2AOq0twDqtLgA6rS5AOq0ugDqtLsA6rS8AOq0vQDqtL4A6rS/AOq1gADqtYEA6rWCAOq1gwDqtYQA6rWFAOq1hgDqtYcA6rWIAOq1iQDqtYoA6rWLAOq1jADqtY0A6rWOAOq1jwDqtZAA6rWRAOq1kgDqtZMA6rWUAOq1lQDqtZYA6rWXAOq1mADqtZkA6rWaAOq1mwDqtZwA6rWdAOq1ngDqtZ8A6rWgAOq1oQDqtaIA6rWjAOq1pADqtaUA6rWmAOq1pwDqtagA6rWpAOq1qgDqtasA6rWsAOq1rQDqta4A6rWvAOq1sADqtbEA6rWyAOq1swDqtbQA6rW1AOq1tgDqtbcA6rW4AOq1uQDqtboA6rW7AOq1vADqtb0A6rW+AOq1vwDqtoAA6raBAOq2ggDqtoMA6raEAOq2hQDqtoYA6raHAOq2iADqtokA6raKAOq2iwDqtowA6raNAOq2jgDqto8A6raQAOq2kQDqtpIA6raTAOq2lADqtpUA6raWAOq2lwDqtpgA6raZAOq2mgDqtpsA6racAOq2nQDqtp4A6rafAOq2oADqtqEA6raiAOq2owDqtqQA6ralAOq2pgDqtqcA6raoAOq2qQDqtqoA6rarAOq2rADqtq0A6rauAOq2rwDqtrAA6raxAOq2sgDqtrMA6ra0AOq2tQDqtrYA6ra3AOq2uADqtrkA6ra6AOq2uwDqtrwA6ra9AOq2vgDqtr8A6reAAOq3gQDqt4IA6reDAOq3hADqt4UA6reGAOq3hwDqt4gA6reJAOq3igDqt4sA6reMAOq3jQDqt44A6rePAOq3kADqt5EA6reSAOq3kwDqt5QA6reVAOq3lgDqt5cA6reYAOq3mQDqt5oA6rebAOq3nADqt50A6reeAOq3nwDqt6AA6rehAOq3ogDqt6MA6rekAOq3pQDqt6YA6renAOq3qADqt6kA6reqAOq3qwDqt6wA6retAOq3rgDqt68A6rewAOq3sQDqt7IA6rezAOq3tADqt7UA6re2AOq3twDqt7gA6re5AOq3ugDqt7sA6re8AOq3vQDqt74A6re/AOq4gADquIEA6riCAOq4gwDquIQA6riFAOq4hgDquIcA6riIAOq4iQDquIoA6riLAOq4jADquI0A6riOAOq4jwDquJAA6riRAOq4kgDquJMA6riUAOq4lQDquJYA6riXAOq4mADquJkA6riaAOq4mwDquJwA6ridAOq4ngDquJ8A6rigAOq4oQDquKIA6rijAOq4pADquKUA6rimAOq4pwDquKgA6ripAOq4qgDquKsA6risAOq4rQDquK4A6rivAOq4sADquLEA6riyAOq4swDquLQA6ri1AOq4tgDquLcA6ri4AOq4uQDquLoA6ri7AOq4vADquL0A6ri+AOq4vwDquYAA6rmBAOq5ggDquYMA6rmEAOq5hQDquYYA6rmHAOq5iADquYkA6rmKAOq5iwDquYwA6rmNAOq5jgDquY8A6rmQAOq5kQDquZIA6rmTAOq5lADquZUA6rmWAOq5lwDquZgA6rmZAOq5mgDquZsA6rmcAOq5nQDquZ4A6rmfAOq5oADquaEA6rmiAOq5owDquaQA6rmlAOq5pgDquacA6rmoAOq5qQDquaoA6rmrAOq5rADqua0A6rmuAOq5rwDqubAA6rmxAOq5sgDqubMA6rm0AOq5tQDqubYA6rm3AOq5uADqubkA6rm6AOq5uwDqubwA6rm9AOq5vgDqub8A6rqAAOq6gQDquoIA6rqDAOq6hADquoUA6rqGAOq6hwDquogA6rqJAOq6igDquosA6rqMAOq6jQDquo4A6rqPAOq6kADqupEA6rqSAOq6kwDqupQA6rqVAOq6lgDqupcA6rqYAOq6mQDqupoA6rqbAOq6nADqup0A6rqeAOq6nwDquqAA6rqhAOq6ogDquqMA6rqkAOq6pQDquqYA6rqnAOq6qADquqkA6rqqAOq6qwDquqwA6rqtAOq6rgDquq8A6rqwAOq6sQDqurIA6rqzAOq6tADqurUA6rq2AOq6twDqurgA6rq5AOq6ugDqursA6rq8AOq6vQDqur4A6rq/AOq7gADqu4EA6ruCAOq7gwDqu4QA6ruFAOq7hgDqu4cA6ruIAOq7iQDqu4oA6ruLAOq7jADqu40A6ruOAOq7jwDqu5AA6ruRAOq7kgDqu5MA6ruUAOq7lQDqu5YA6ruXAOq7mADqu5kA6ruaAOq7mwDqu5wA6rudAOq7ngDqu58A6rugAOq7oQDqu6IA6rujAOq7pADqu6UA6rumAOq7pwDqu6gA6rupAOq7qgDqu6sA6rusAOq7rQDqu64A6ruvAOq7sADqu7EA6ruyAOq7swDqu7QA6ru1AOq7tgDqu7cA6ru4AOq7uQDqu7oA6ru7AOq7vADqu70A6ru+AOq7vwDqvIAA6ryBAOq8ggDqvIMA6ryEAOq8hQDqvIYA6ryHAOq8iADqvIkA6ryKAOq8iwDqvIwA6ryNAOq8jgDqvI8A6ryQAOq8kQDqvJIA6ryTAOq8lADqvJUA6ryWAOq8lwDqvJgA6ryZAOq8mgDqvJsA6rycAOq8nQDqvJ4A6ryfAOq8oADqvKEA6ryiAOq8owDqvKQA6rylAOq8pgDqvKcA6ryoAOq8qQDqvKoA6ryrAOq8rADqvK0A6ryuAOq8rwDqvLAA6ryxAOq8sgDqvLMA6ry0AOq8tQDqvLYA6ry3AOq8uADqvLkA6ry6AOq8uwDqvLwA6ry9AOq8vgDqvL8A6r2AAOq9gQDqvYIA6r2DAOq9hADqvYUA6r2GAOq9hwDqvYgA6r2JAOq9igDqvYsA6r2MAOq9jQDqvY4A6r2PAOq9kADqvZEA6r2SAOq9kwDqvZQA6r2VAOq9lgDqvZcA6r2YAOq9mQDqvZoA6r2bAOq9nADqvZ0A6r2eAOq9nwDqvaAA6r2hAOq9ogDqvaMA6r2kAOq9pQDqvaYA6r2nAOq9qADqvakA6r2qAOq9qwDqvawA6r2tAOq9rgDqva8A6r2wAOq9sQDqvbIA6r2zAOq9tADqvbUA6r22AOq9twDqvbgA6r25AOq9ugDqvbsA6r28AOq9vQDqvb4A6r2/AOq+gADqvoEA6r6CAOq+gwDqvoQA6r6FAOq+hgDqvocA6r6IAOq+iQDqvooA6r6LAOq+jADqvo0A6r6OAOq+jwDqvpAA6r6RAOq+kgDqvpMA6r6UAOq+lQDqvpYA6r6XAOq+mADqvpkA6r6aAOq+mwDqvpwA6r6dAOq+ngDqvp8A6r6gAOq+oQDqvqIA6r6jAOq+pADqvqUA6r6mAOq+pwDqvqgA6r6pAOq+qgDqvqsA6r6sAOq+rQDqvq4A6r6vAOq+sADqvrEA6r6yAOq+swDqvrQA6r61AOq+tgDqvrcA6r64AOq+uQDqvroA6r67AOq+vADqvr0A6r6+AOq+vwDqv4AA6r+BAOq/ggDqv4MA6r+EAOq/hQDqv4YA6r+HAOq/iADqv4kA6r+KAOq/iwDqv4wA6r+NAOq/jgDqv48A6r+QAOq/kQDqv5IA6r+TAOq/lADqv5UA6r+WAOq/lwDqv5gA6r+ZAOq/mgDqv5sA6r+cAOq/nQDqv54A6r+fAOq/oADqv6EA6r+iAOq/owDqv6QA6r+lAOq/pgDqv6cA6r+oAOq/qQDqv6oA6r+rAOq/rADqv60A6r+uAOq/rwDqv7AA6r+xAOq/sgDqv7MA6r+0AOq/tQDqv7YA6r+3AOq/uADqv7kA6r+6AOq/uwDqv7wA6r+9AOq/vgDqv78A64CAAOuAgQDrgIIA64CDAOuAhADrgIUA64CGAOuAhwDrgIgA64CJAOuAigDrgIsA64CMAOuAjQDrgI4A64CPAOuAkADrgJEA64CSAOuAkwDrgJQA64CVAOuAlgDrgJcA64CYAOuAmQDrgJoA64CbAOuAnADrgJ0A64CeAOuAnwDrgKAA64ChAOuAogDrgKMA64CkAOuApQDrgKYA64CnAOuAqADrgKkA64CqAOuAqwDrgKwA64CtAOuArgDrgK8A64CwAOuAsQDrgLIA64CzAOuAtADrgLUA64C2AOuAtwDrgLgA64C5AOuAugDrgLsA64C8AOuAvQDrgL4A64C/AOuBgADrgYEA64GCAOuBgwDrgYQA64GFAOuBhgDrgYcA64GIAOuBiQDrgYoA64GLAOuBjADrgY0A64GOAOuBjwDrgZAA64GRAOuBkgDrgZMA64GUAOuBlQDrgZYA64GXAOuBmADrgZkA64GaAOuBmwDrgZwA64GdAOuBngDrgZ8A64GgAOuBoQDrgaIA64GjAOuBpADrgaUA64GmAOuBpwDrgagA64GpAOuBqgDrgasA64GsAOuBrQDrga4A64GvAOuBsADrgbEA64GyAOuBswDrgbQA64G1AOuBtgDrgbcA64G4AOuBuQDrgboA64G7AOuBvADrgb0A64G+AOuBvwDrgoAA64KBAOuCggDrgoMA64KEAOuChQDrgoYA64KHAOuCiADrgokA64KKAOuCiwDrgowA64KNAOuCjgDrgo8A64KQAOuCkQDrgpIA64KTAOuClADrgpUA64KWAOuClwDrgpgA64KZAOuCmgDrgpsA64KcAOuCnQDrgp4A64KfAOuCoADrgqEA64KiAOuCowDrgqQA64KlAOuCpgDrgqcA64KoAOuCqQDrgqoA64KrAOuCrADrgq0A64KuAOuCrwDrgrAA64KxAOuCsgDrgrMA64K0AOuCtQDrgrYA64K3AOuCuADrgrkA64K6AOuCuwDrgrwA64K9AOuCvgDrgr8A64OAAOuDgQDrg4IA64ODAOuDhADrg4UA64OGAOuDhwDrg4gA64OJAOuDigDrg4sA64OMAOuDjQDrg44A64OPAOuDkADrg5EA64OSAOuDkwDrg5QA64OVAOuDlgDrg5cA64OYAOuDmQDrg5oA64ObAOuDnADrg50A64OeAOuDnwDrg6AA64OhAOuDogDrg6MA64OkAOuDpQDrg6YA64OnAOuDqADrg6kA64OqAOuDqwDrg6wA64OtAOuDrgDrg68A64OwAOuDsQDrg7IA64OzAOuDtADrg7UA64O2AOuDtwDrg7gA64O5AOuDugDrg7sA64O8AOuDvQDrg74A64O/AOuEgADrhIEA64SCAOuEgwDrhIQA64SFAOuEhgDrhIcA64SIAOuEiQDrhIoA64SLAOuEjADrhI0A64SOAOuEjwDrhJAA64SRAOuEkgDrhJMA64SUAOuElQDrhJYA64SXAOuEmADrhJkA64SaAOuEmwDrhJwA64SdAOuEngDrhJ8A64SgAOuEoQDrhKIA64SjAOuEpADrhKUA64SmAOuEpwDrhKgA64SpAOuEqgDrhKsA64SsAOuErQDrhK4A64SvAOuEsADrhLEA64SyAOuEswDrhLQA64S1AOuEtgDrhLcA64S4AOuEuQDrhLoA64S7AOuEvADrhL0A64S+AOuEvwDrhYAA64WBAOuFggDrhYMA64WEAOuFhQDrhYYA64WHAOuFiADrhYkA64WKAOuFiwDrhYwA64WNAOuFjgDrhY8A64WQAOuFkQDrhZIA64WTAOuFlADrhZUA64WWAOuFlwDrhZgA64WZAOuFmgDrhZsA64WcAOuFnQDrhZ4A64WfAOuFoADrhaEA64WiAOuFowDrhaQA64WlAOuFpgDrhacA64WoAOuFqQDrhaoA64WrAOuFrADrha0A64WuAOuFrwDrhbAA64WxAOuFsgDrhbMA64W0AOuFtQDrhbYA64W3AOuFuADrhbkA64W6AOuFuwDrhbwA64W9AOuFvgDrhb8A64aAAOuGgQDrhoIA64aDAOuGhADrhoUA64aGAOuGhwDrhogA64aJAOuGigDrhosA64aMAOuGjQDrho4A64aPAOuGkADrhpEA64aSAOuGkwDrhpQA64aVAOuGlgDrhpcA64aYAOuGmQDrhpoA64abAOuGnADrhp0A64aeAOuGnwDrhqAA64ahAOuGogDrhqMA64akAOuGpQDrhqYA64anAOuGqADrhqkA64aqAOuGqwDrhqwA64atAOuGrgDrhq8A64awAOuGsQDrhrIA64azAOuGtADrhrUA64a2AOuGtwDrhrgA64a5AOuGugDrhrsA64a8AOuGvQDrhr4A64a/AOuHgADrh4EA64eCAOuHgwDrh4QA64eFAOuHhgDrh4cA64eIAOuHiQDrh4oA64eLAOuHjADrh40A64eOAOuHjwDrh5AA64eRAOuHkgDrh5MA64eUAOuHlQDrh5YA64eXAOuHmADrh5kA64eaAOuHmwDrh5wA64edAOuHngDrh58A64egAOuHoQDrh6IA64ejAOuHpADrh6UA64emAOuHpwDrh6gA64epAOuHqgDrh6sA64esAOuHrQDrh64A64evAOuHsADrh7EA64eyAOuHswDrh7QA64e1AOuHtgDrh7cA64e4AOuHuQDrh7oA64e7AOuHvADrh70A64e+AOuHvwDriIAA64iBAOuIggDriIMA64iEAOuIhQDriIYA64iHAOuIiADriIkA64iKAOuIiwDriIwA64iNAOuIjgDriI8A64iQAOuIkQDriJIA64iTAOuIlADriJUA64iWAOuIlwDriJgA64iZAOuImgDriJsA64icAOuInQDriJ4A64ifAOuIoADriKEA64iiAOuIowDriKQA64ilAOuIpgDriKcA64ioAOuIqQDriKoA64irAOuIrADriK0A64iuAOuIrwDriLAA64ixAOuIsgDriLMA64i0AOuItQDriLYA64i3AOuIuADriLkA64i6AOuIuwDriLwA64i9AOuIvgDriL8A64mAAOuJgQDriYIA64mDAOuJhADriYUA64mGAOuJhwDriYgA64mJAOuJigDriYsA64mMAOuJjQDriY4A64mPAOuJkADriZEA64mSAOuJkwDriZQA64mVAOuJlgDriZcA64mYAOuJmQDriZoA64mbAOuJnADriZ0A64meAOuJnwDriaAA64mhAOuJogDriaMA64mkAOuJpQDriaYA64mnAOuJqADriakA64mqAOuJqwDriawA64mtAOuJrgDria8A64mwAOuJsQDribIA64mzAOuJtADribUA64m2AOuJtwDribgA64m5AOuJugDribsA64m8AOuJvQDrib4A64m/AOuKgADrioEA64qCAOuKgwDrioQA64qFAOuKhgDriocA64qIAOuKiQDriooA64qLAOuKjADrio0A64qOAOuKjwDripAA64qRAOuKkgDripMA64qUAOuKlQDripYA64qXAOuKmADripkA64qaAOuKmwDripwA64qdAOuKngDrip8A64qgAOuKoQDriqIA64qjAOuKpADriqUA64qmAOuKpwDriqgA64qpAOuKqgDriqsA64qsAOuKrQDriq4A64qvAOuKsADrirEA64qyAOuKswDrirQA64q1AOuKtgDrircA64q4AOuKuQDriroA64q7AOuKvADrir0A64q+AOuKvwDri4AA64uBAOuLggDri4MA64uEAOuLhQDri4YA64uHAOuLiADri4kA64uKAOuLiwDri4wA64uNAOuLjgDri48A64uQAOuLkQDri5IA64uTAOuLlADri5UA64uWAOuLlwDri5gA64uZAOuLmgDri5sA64ucAOuLnQDri54A64ufAOuLoADri6EA64uiAOuLowDri6QA64ulAOuLpgDri6cA64uoAOuLqQDri6oA64urAOuLrADri60A64uuAOuLrwDri7AA64uxAOuLsgDri7MA64u0AOuLtQDri7YA64u3AOuLuADri7kA64u6AOuLuwDri7wA64u9AOuLvgDri78A64yAAOuMgQDrjIIA64yDAOuMhADrjIUA64yGAOuMhwDrjIgA64yJAOuMigDrjIsA64yMAOuMjQDrjI4A64yPAOuMkADrjJEA64ySAOuMkwDrjJQA64yVAOuMlgDrjJcA64yYAOuMmQDrjJoA64ybAOuMnADrjJ0A64yeAOuMnwDrjKAA64yhAOuMogDrjKMA64ykAOuMpQDrjKYA64ynAOuMqADrjKkA64yqAOuMqwDrjKwA64ytAOuMrgDrjK8A64ywAOuMsQDrjLIA64yzAOuMtADrjLUA64y2AOuMtwDrjLgA64y5AOuMugDrjLsA64y8AOuMvQDrjL4A64y/AOuNgADrjYEA642CAOuNgwDrjYQA642FAOuNhgDrjYcA642IAOuNiQDrjYoA642LAOuNjADrjY0A642OAOuNjwDrjZAA642RAOuNkgDrjZMA642UAOuNlQDrjZYA642XAOuNmADrjZkA642aAOuNmwDrjZwA642dAOuNngDrjZ8A642gAOuNoQDrjaIA642jAOuNpADrjaUA642mAOuNpwDrjagA642pAOuNqgDrjasA642sAOuNrQDrja4A642vAOuNsADrjbEA642yAOuNswDrjbQA6421AOuNtgDrjbcA6424AOuNuQDrjboA6427AOuNvADrjb0A642+AOuNvwDrjoAA646BAOuOggDrjoMA646EAOuOhQDrjoYA646HAOuOiADrjokA646KAOuOiwDrjowA646NAOuOjgDrjo8A646QAOuOkQDrjpIA646TAOuOlADrjpUA646WAOuOlwDrjpgA646ZAOuOmgDrjpsA646cAOuOnQDrjp4A646fAOuOoADrjqEA646iAOuOowDrjqQA646lAOuOpgDrjqcA646oAOuOqQDrjqoA646rAOuOrADrjq0A646uAOuOrwDrjrAA646xAOuOsgDrjrMA6460AOuOtQDrjrYA6463AOuOuADrjrkA6466AOuOuwDrjrwA6469AOuOvgDrjr8A64+AAOuPgQDrj4IA64+DAOuPhADrj4UA64+GAOuPhwDrj4gA64+JAOuPigDrj4sA64+MAOuPjQDrj44A64+PAOuPkADrj5EA64+SAOuPkwDrj5QA64+VAOuPlgDrj5cA64+YAOuPmQDrj5oA64+bAOuPnADrj50A64+eAOuPnwDrj6AA64+hAOuPogDrj6MA64+kAOuPpQDrj6YA64+nAOuPqADrj6kA64+qAOuPqwDrj6wA64+tAOuPrgDrj68A64+wAOuPsQDrj7IA64+zAOuPtADrj7UA64+2AOuPtwDrj7gA64+5AOuPugDrj7sA64+8AOuPvQDrj74A64+/AOuQgADrkIEA65CCAOuQgwDrkIQA65CFAOuQhgDrkIcA65CIAOuQiQDrkIoA65CLAOuQjADrkI0A65COAOuQjwDrkJAA65CRAOuQkgDrkJMA65CUAOuQlQDrkJYA65CXAOuQmADrkJkA65CaAOuQmwDrkJwA65CdAOuQngDrkJ8A65CgAOuQoQDrkKIA65CjAOuQpADrkKUA65CmAOuQpwDrkKgA65CpAOuQqgDrkKsA65CsAOuQrQDrkK4A65CvAOuQsADrkLEA65CyAOuQswDrkLQA65C1AOuQtgDrkLcA65C4AOuQuQDrkLoA65C7AOuQvADrkL0A65C+AOuQvwDrkYAA65GBAOuRggDrkYMA65GEAOuRhQDrkYYA65GHAOuRiADrkYkA65GKAOuRiwDrkYwA65GNAOuRjgDrkY8A65GQAOuRkQDrkZIA65GTAOuRlADrkZUA65GWAOuRlwDrkZgA65GZAOuRmgDrkZsA65GcAOuRnQDrkZ4A65GfAOuRoADrkaEA65GiAOuRowDrkaQA65GlAOuRpgDrkacA65GoAOuRqQDrkaoA65GrAOuRrADrka0A65GuAOuRrwDrkbAA65GxAOuRsgDrkbMA65G0AOuRtQDrkbYA65G3AOuRuADrkbkA65G6AOuRuwDrkbwA65G9AOuRvgDrkb8A65KAAOuSgQDrkoIA65KDAOuShADrkoUA65KGAOuShwDrkogA65KJAOuSigDrkosA65KMAOuSjQDrko4A65KPAOuSkADrkpEA65KSAOuSkwDrkpQA65KVAOuSlgDrkpcA65KYAOuSmQDrkpoA65KbAOuSnADrkp0A65KeAOuSnwDrkqAA65KhAOuSogDrkqMA65KkAOuSpQDrkqYA65KnAOuSqADrkqkA65KqAOuSqwDrkqwA65KtAOuSrgDrkq8A65KwAOuSsQDrkrIA65KzAOuStADrkrUA65K2AOuStwDrkrgA65K5AOuSugDrkrsA65K8AOuSvQDrkr4A65K/AOuTgADrk4EA65OCAOuTgwDrk4QA65OFAOuThgDrk4cA65OIAOuTiQDrk4oA65OLAOuTjADrk40A65OOAOuTjwDrk5AA65ORAOuTkgDrk5MA65OUAOuTlQDrk5YA65OXAOuTmADrk5kA65OaAOuTmwDrk5wA65OdAOuTngDrk58A65OgAOuToQDrk6IA65OjAOuTpADrk6UA65OmAOuTpwDrk6gA65OpAOuTqgDrk6sA65OsAOuTrQDrk64A65OvAOuTsADrk7EA65OyAOuTswDrk7QA65O1AOuTtgDrk7cA65O4AOuTuQDrk7oA65O7AOuTvADrk70A65O+AOuTvwDrlIAA65SBAOuUggDrlIMA65SEAOuUhQDrlIYA65SHAOuUiADrlIkA65SKAOuUiwDrlIwA65SNAOuUjgDrlI8A65SQAOuUkQDrlJIA65STAOuUlADrlJUA65SWAOuUlwDrlJgA65SZAOuUmgDrlJsA65ScAOuUnQDrlJ4A65SfAOuUoADrlKEA65SiAOuUowDrlKQA65SlAOuUpgDrlKcA65SoAOuUqQDrlKoA65SrAOuUrADrlK0A65SuAOuUrwDrlLAA65SxAOuUsgDrlLMA65S0AOuUtQDrlLYA65S3AOuUuADrlLkA65S6AOuUuwDrlLwA65S9AOuUvgDrlL8A65WAAOuVgQDrlYIA65WDAOuVhADrlYUA65WGAOuVhwDrlYgA65WJAOuVigDrlYsA65WMAOuVjQDrlY4A65WPAOuVkADrlZEA65WSAOuVkwDrlZQA65WVAOuVlgDrlZcA65WYAOuVmQDrlZoA65WbAOuVnADrlZ0A65WeAOuVnwDrlaAA65WhAOuVogDrlaMA65WkAOuVpQDrlaYA65WnAOuVqADrlakA65WqAOuVqwDrlawA65WtAOuVrgDrla8A65WwAOuVsQDrlbIA65WzAOuVtADrlbUA65W2AOuVtwDrlbgA65W5AOuVugDrlbsA65W8AOuVvQDrlb4A65W/AOuWgADrloEA65aCAOuWgwDrloQA65aFAOuWhgDrlocA65aIAOuWiQDrlooA65aLAOuWjADrlo0A65aOAOuWjwDrlpAA65aRAOuWkgDrlpMA65aUAOuWlQDrlpYA65aXAOuWmADrlpkA65aaAOuWmwDrlpwA65adAOuWngDrlp8A65agAOuWoQDrlqIA65ajAOuWpADrlqUA65amAOuWpwDrlqgA65apAOuWqgDrlqsA65asAOuWrQDrlq4A65avAOuWsADrlrEA65ayAOuWswDrlrQA65a1AOuWtgDrlrcA65a4AOuWuQDrlroA65a7AOuWvADrlr0A65a+AOuWvwDrl4AA65eBAOuXggDrl4MA65eEAOuXhQDrl4YA65eHAOuXiADrl4kA65eKAOuXiwDrl4wA65eNAOuXjgDrl48A65eQAOuXkQDrl5IA65eTAOuXlADrl5UA65eWAOuXlwDrl5gA65eZAOuXmgDrl5sA65ecAOuXnQDrl54A65efAOuXoADrl6EA65eiAOuXowDrl6QA65elAOuXpgDrl6cA65eoAOuXqQDrl6oA65erAOuXrADrl60A65euAOuXrwDrl7AA65exAOuXsgDrl7MA65e0AOuXtQDrl7YA65e3AOuXuADrl7kA65e6AOuXuwDrl7wA65e9AOuXvgDrl78A65iAAOuYgQDrmIIA65iDAOuYhADrmIUA65iGAOuYhwDrmIgA65iJAOuYigDrmIsA65iMAOuYjQDrmI4A65iPAOuYkADrmJEA65iSAOuYkwDrmJQA65iVAOuYlgDrmJcA65iYAOuYmQDrmJoA65ibAOuYnADrmJ0A65ieAOuYnwDrmKAA65ihAOuYogDrmKMA65ikAOuYpQDrmKYA65inAOuYqADrmKkA65iqAOuYqwDrmKwA65itAOuYrgDrmK8A65iwAOuYsQDrmLIA65izAOuYtADrmLUA65i2AOuYtwDrmLgA65i5AOuYugDrmLsA65i8AOuYvQDrmL4A65i/AOuZgADrmYEA65mCAOuZgwDrmYQA65mFAOuZhgDrmYcA65mIAOuZiQDrmYoA65mLAOuZjADrmY0A65mOAOuZjwDrmZAA65mRAOuZkgDrmZMA65mUAOuZlQDrmZYA65mXAOuZmADrmZkA65maAOuZmwDrmZwA65mdAOuZngDrmZ8A65mgAOuZoQDrmaIA65mjAOuZpADrmaUA65mmAOuZpwDrmagA65mpAOuZqgDrmasA65msAOuZrQDrma4A65mvAOuZsADrmbEA65myAOuZswDrmbQA65m1AOuZtgDrmbcA65m4AOuZuQDrmboA65m7AOuZvADrmb0A65m+AOuZvwDrmoAA65qBAOuaggDrmoMA65qEAOuahQDrmoYA65qHAOuaiADrmokA65qKAOuaiwDrmowA65qNAOuajgDrmo8A65qQAOuakQDrmpIA65qTAOualADrmpUA65qWAOualwDrmpgA65qZAOuamgDrmpsA65qcAOuanQDrmp4A65qfAOuaoADrmqEA65qiAOuaowDrmqQA65qlAOuapgDrmqcA65qoAOuaqQDrmqoA65qrAOuarADrmq0A65quAOuarwDrmrAA65qxAOuasgDrmrMA65q0AOuatQDrmrYA65q3AOuauADrmrkA65q6AOuauwDrmrwA65q9AOuavgDrmr8A65uAAOubgQDrm4IA65uDAOubhADrm4UA65uGAOubhwDrm4gA65uJAOubigDrm4sA65uMAOubjQDrm44A65uPAOubkADrm5EA65uSAOubkwDrm5QA65uVAOublgDrm5cA65uYAOubmQDrm5oA65ubAOubnADrm50A65ueAOubnwDrm6AA65uhAOubogDrm6MA65ukAOubpQDrm6YA65unAOubqADrm6kA65uqAOubqwDrm6wA65utAOubrgDrm68A65uwAOubsQDrm7IA65uzAOubtADrm7UA65u2AOubtwDrm7gA65u5AOubugDrm7sA65u8AOubvQDrm74A65u/AOucgADrnIEA65yCAOucgwDrnIQA65yFAOuchgDrnIcA65yIAOuciQDrnIoA65yLAOucjADrnI0A65yOAOucjwDrnJAA65yRAOuckgDrnJMA65yUAOuclQDrnJYA65yXAOucmADrnJkA65yaAOucmwDrnJwA65ydAOucngDrnJ8A65ygAOucoQDrnKIA65yjAOucpADrnKUA65ymAOucpwDrnKgA65ypAOucqgDrnKsA65ysAOucrQDrnK4A65yvAOucsADrnLEA65yyAOucswDrnLQA65y1AOuctgDrnLcA65y4AOucuQDrnLoA65y7AOucvADrnL0A65y+AOucvwDrnYAA652BAOudggDrnYMA652EAOudhQDrnYYA652HAOudiADrnYkA652KAOudiwDrnYwA652NAOudjgDrnY8A652QAOudkQDrnZIA652TAOudlADrnZUA652WAOudlwDrnZgA652ZAOudmgDrnZsA652cAOudnQDrnZ4A652fAOudoADrnaEA652iAOudowDrnaQA652lAOudpgDrnacA652oAOudqQDrnaoA652rAOudrADrna0A652uAOudrwDrnbAA652xAOudsgDrnbMA6520AOudtQDrnbYA6523AOuduADrnbkA6526AOuduwDrnbwA6529AOudvgDrnb8A656AAOuegQDrnoIA656DAOuehADrnoUA656GAOuehwDrnogA656JAOueigDrnosA656MAOuejQDrno4A656PAOuekADrnpEA656SAOuekwDrnpQA656VAOuelgDrnpcA656YAOuemQDrnpoA656bAOuenADrnp0A656eAOuenwDrnqAA656hAOueogDrnqMA656kAOuepQDrnqYA656nAOueqADrnqkA656qAOueqwDrnqwA656tAOuergDrnq8A656wAOuesQDrnrIA656zAOuetADrnrUA6562AOuetwDrnrgA6565AOueugDrnrsA6568AOuevQDrnr4A656/AOufgADrn4EA65+CAOufgwDrn4QA65+FAOufhgDrn4cA65+IAOufiQDrn4oA65+LAOufjADrn40A65+OAOufjwDrn5AA65+RAOufkgDrn5MA65+UAOuflQDrn5YA65+XAOufmADrn5kA65+aAOufmwDrn5wA65+dAOufngDrn58A65+gAOufoQDrn6IA65+jAOufpADrn6UA65+mAOufpwDrn6gA65+pAOufqgDrn6sA65+sAOufrQDrn64A65+vAOufsADrn7EA65+yAOufswDrn7QA65+1AOuftgDrn7cA65+4AOufuQDrn7oA65+7AOufvADrn70A65++AOufvwDroIAA66CBAOugggDroIMA66CEAOughQDroIYA66CHAOugiADroIkA66CKAOugiwDroIwA66CNAOugjgDroI8A66CQAOugkQDroJIA66CTAOuglADroJUA66CWAOuglwDroJgA66CZAOugmgDroJsA66CcAOugnQDroJ4A66CfAOugoADroKEA66CiAOugowDroKQA66ClAOugpgDroKcA66CoAOugqQDroKoA66CrAOugrADroK0A66CuAOugrwDroLAA66CxAOugsgDroLMA66C0AOugtQDroLYA66C3AOuguADroLkA66C6AOuguwDroLwA66C9AOugvgDroL8A66GAAOuhgQDroYIA66GDAOuhhADroYUA66GGAOuhhwDroYgA66GJAOuhigDroYsA66GMAOuhjQDroY4A66GPAOuhkADroZEA66GSAOuhkwDroZQA66GVAOuhlgDroZcA66GYAOuhmQDroZoA66GbAOuhnADroZ0A66GeAOuhnwDroaAA66GhAOuhogDroaMA66GkAOuhpQDroaYA66GnAOuhqADroakA66GqAOuhqwDroawA66GtAOuhrgDroa8A66GwAOuhsQDrobIA66GzAOuhtADrobUA66G2AOuhtwDrobgA66G5AOuhugDrobsA66G8AOuhvQDrob4A66G/AOuigADrooEA66KCAOuigwDrooQA66KFAOuihgDroocA66KIAOuiiQDroooA66KLAOuijADroo0A66KOAOuijwDropAA66KRAOuikgDropMA66KUAOuilQDropYA66KXAOuimADropkA66KaAOuimwDropwA66KdAOuingDrop8A66KgAOuioQDroqIA66KjAOuipADroqUA66KmAOuipwDroqgA66KpAOuiqgDroqsA66KsAOuirQDroq4A66KvAOuisADrorEA66KyAOuiswDrorQA66K1AOuitgDrorcA66K4AOuiuQDroroA66K7AOuivADror0A66K+AOuivwDro4AA66OBAOujggDro4MA66OEAOujhQDro4YA66OHAOujiADro4kA66OKAOujiwDro4wA66ONAOujjgDro48A66OQAOujkQDro5IA66OTAOujlADro5UA66OWAOujlwDro5gA66OZAOujmgDro5sA66OcAOujnQDro54A66OfAOujoADro6EA66OiAOujowDro6QA66OlAOujpgDro6cA66OoAOujqQDro6oA66OrAOujrADro60A66OuAOujrwDro7AA66OxAOujsgDro7MA66O0AOujtQDro7YA66O3AOujuADro7kA66O6AOujuwDro7wA66O9AOujvgDro78A66SAAOukgQDrpIIA66SDAOukhADrpIUA66SGAOukhwDrpIgA66SJAOukigDrpIsA66SMAOukjQDrpI4A66SPAOukkADrpJEA66SSAOukkwDrpJQA66SVAOuklgDrpJcA66SYAOukmQDrpJoA66SbAOuknADrpJ0A66SeAOuknwDrpKAA66ShAOukogDrpKMA66SkAOukpQDrpKYA66SnAOukqADrpKkA66SqAOukqwDrpKwA66StAOukrgDrpK8A66SwAOuksQDrpLIA66SzAOuktADrpLUA66S2AOuktwDrpLgA66S5AOukugDrpLsA66S8AOukvQDrpL4A66S/AOulgADrpYEA66WCAOulgwDrpYQA66WFAOulhgDrpYcA66WIAOuliQDrpYoA66WLAOuljADrpY0A66WOAOuljwDrpZAA66WRAOulkgDrpZMA66WUAOullQDrpZYA66WXAOulmADrpZkA66WaAOulmwDrpZwA66WdAOulngDrpZ8A66WgAOuloQDrpaIA66WjAOulpADrpaUA66WmAOulpwDrpagA66WpAOulqgDrpasA66WsAOulrQDrpa4A66WvAOulsADrpbEA66WyAOulswDrpbQA66W1AOultgDrpbcA66W4AOuluQDrpboA66W7AOulvADrpb0A66W+AOulvwDrpoAA66aBAOumggDrpoMA66aEAOumhQDrpoYA66aHAOumiADrpokA66aKAOumiwDrpowA66aNAOumjgDrpo8A66aQAOumkQDrppIA66aTAOumlADrppUA66aWAOumlwDrppgA66aZAOummgDrppsA66acAOumnQDrpp4A66afAOumoADrpqEA66aiAOumowDrpqQA66alAOumpgDrpqcA66aoAOumqQDrpqoA66arAOumrADrpq0A66auAOumrwDrprAA66axAOumsgDrprMA66a0AOumtQDrprYA66a3AOumuADrprkA66a6AOumuwDrprwA66a9AOumvgDrpr8A66eAAOungQDrp4IA66eDAOunhADrp4UA66eGAOunhwDrp4gA66eJAOunigDrp4sA66eMAOunjQDrp44A66ePAOunkADrp5EA66eSAOunkwDrp5QA66eVAOunlgDrp5cA66eYAOunmQDrp5oA66ebAOunnADrp50A66eeAOunnwDrp6AA66ehAOunogDrp6MA66ekAOunpQDrp6YA66enAOunqADrp6kA66eqAOunqwDrp6wA66etAOunrgDrp68A66ewAOunsQDrp7IA66ezAOuntADrp7UA66e2AOuntwDrp7gA66e5AOunugDrp7sA66e8AOunvQDrp74A66e/AOuogADrqIEA66iCAOuogwDrqIQA66iFAOuohgDrqIcA66iIAOuoiQDrqIoA66iLAOuojADrqI0A66iOAOuojwDrqJAA66iRAOuokgDrqJMA66iUAOuolQDrqJYA66iXAOuomADrqJkA66iaAOuomwDrqJwA66idAOuongDrqJ8A66igAOuooQDrqKIA66ijAOuopADrqKUA66imAOuopwDrqKgA66ipAOuoqgDrqKsA66isAOuorQDrqK4A66ivAOuosADrqLEA66iyAOuoswDrqLQA66i1AOuotgDrqLcA66i4AOuouQDrqLoA66i7AOuovADrqL0A66i+AOuovwDrqYAA66mBAOupggDrqYMA66mEAOuphQDrqYYA66mHAOupiADrqYkA66mKAOupiwDrqYwA66mNAOupjgDrqY8A66mQAOupkQDrqZIA66mTAOuplADrqZUA66mWAOuplwDrqZgA66mZAOupmgDrqZsA66mcAOupnQDrqZ4A66mfAOupoADrqaEA66miAOupowDrqaQA66mlAOuppgDrqacA66moAOupqQDrqaoA66mrAOuprADrqa0A66muAOuprwDrqbAA66mxAOupsgDrqbMA66m0AOuptQDrqbYA66m3AOupuADrqbkA66m6AOupuwDrqbwA66m9AOupvgDrqb8A66qAAOuqgQDrqoIA66qDAOuqhADrqoUA66qGAOuqhwDrqogA66qJAOuqigDrqosA66qMAOuqjQDrqo4A66qPAOuqkADrqpEA66qSAOuqkwDrqpQA66qVAOuqlgDrqpcA66qYAOuqmQDrqpoA66qbAOuqnADrqp0A66qeAOuqnwDrqqAA66qhAOuqogDrqqMA66qkAOuqpQDrqqYA66qnAOuqqADrqqkA66qqAOuqqwDrqqwA66qtAOuqrgDrqq8A66qwAOuqsQDrqrIA66qzAOuqtADrqrUA66q2AOuqtwDrqrgA66q5AOuqugDrqrsA66q8AOuqvQDrqr4A66q/AOurgADrq4EA66uCAOurgwDrq4QA66uFAOurhgDrq4cA66uIAOuriQDrq4oA66uLAOurjADrq40A66uOAOurjwDrq5AA66uRAOurkgDrq5MA66uUAOurlQDrq5YA66uXAOurmADrq5kA66uaAOurmwDrq5wA66udAOurngDrq58A66ugAOuroQDrq6IA66ujAOurpADrq6UA66umAOurpwDrq6gA66upAOurqgDrq6sA66usAOurrQDrq64A66uvAOursADrq7EA66uyAOurswDrq7QA66u1AOurtgDrq7cA66u4AOuruQDrq7oA66u7AOurvADrq70A66u+AOurvwDrrIAA66yBAOusggDrrIMA66yEAOushQDrrIYA66yHAOusiADrrIkA66yKAOusiwDrrIwA66yNAOusjgDrrI8A66yQAOuskQDrrJIA66yTAOuslADrrJUA66yWAOuslwDrrJgA66yZAOusmgDrrJsA66ycAOusnQDrrJ4A66yfAOusoADrrKEA66yiAOusowDrrKQA66ylAOuspgDrrKcA66yoAOusqQDrrKoA66yrAOusrADrrK0A66yuAOusrwDrrLAA66yxAOussgDrrLMA66y0AOustQDrrLYA66y3AOusuADrrLkA66y6AOusuwDrrLwA66y9AOusvgDrrL8A662AAOutgQDrrYIA662DAOuthADrrYUA662GAOuthwDrrYgA662JAOutigDrrYsA662MAOutjQDrrY4A662PAOutkADrrZEA662SAOutkwDrrZQA662VAOutlgDrrZcA662YAOutmQDrrZoA662bAOutnADrrZ0A662eAOutnwDrraAA662hAOutogDrraMA662kAOutpQDrraYA662nAOutqADrrakA662qAOutqwDrrawA662tAOutrgDrra8A662wAOutsQDrrbIA662zAOuttADrrbUA6622AOuttwDrrbgA6625AOutugDrrbsA6628AOutvQDrrb4A662/AOuugADrroEA666CAOuugwDrroQA666FAOuuhgDrrocA666IAOuuiQDrrooA666LAOuujADrro0A666OAOuujwDrrpAA666RAOuukgDrrpMA666UAOuulQDrrpYA666XAOuumADrrpkA666aAOuumwDrrpwA666dAOuungDrrp8A666gAOuuoQDrrqIA666jAOuupADrrqUA666mAOuupwDrrqgA666pAOuuqgDrrqsA666sAOuurQDrrq4A666vAOuusADrrrEA666yAOuuswDrrrQA6661AOuutgDrrrcA6664AOuuuQDrrroA6667AOuuvADrrr0A666+AOuuvwDrr4AA66+BAOuvggDrr4MA66+EAOuvhQDrr4YA66+HAOuviADrr4kA66+KAOuviwDrr4wA66+NAOuvjgDrr48A66+QAOuvkQDrr5IA66+TAOuvlADrr5UA66+WAOuvlwDrr5gA66+ZAOuvmgDrr5sA66+cAOuvnQDrr54A66+fAOuvoADrr6EA66+iAOuvowDrr6QA66+lAOuvpgDrr6cA66+oAOuvqQDrr6oA66+rAOuvrADrr60A66+uAOuvrwDrr7AA66+xAOuvsgDrr7MA66+0AOuvtQDrr7YA66+3AOuvuADrr7kA66+6AOuvuwDrr7wA66+9AOuvvgDrr78A67CAAOuwgQDrsIIA67CDAOuwhADrsIUA67CGAOuwhwDrsIgA67CJAOuwigDrsIsA67CMAOuwjQDrsI4A67CPAOuwkADrsJEA67CSAOuwkwDrsJQA67CVAOuwlgDrsJcA67CYAOuwmQDrsJoA67CbAOuwnADrsJ0A67CeAOuwnwDrsKAA67ChAOuwogDrsKMA67CkAOuwpQDrsKYA67CnAOuwqADrsKkA67CqAOuwqwDrsKwA67CtAOuwrgDrsK8A67CwAOuwsQDrsLIA67CzAOuwtADrsLUA67C2AOuwtwDrsLgA67C5AOuwugDrsLsA67C8AOuwvQDrsL4A67C/AOuxgADrsYEA67GCAOuxgwDrsYQA67GFAOuxhgDrsYcA67GIAOuxiQDrsYoA67GLAOuxjADrsY0A67GOAOuxjwDrsZAA67GRAOuxkgDrsZMA67GUAOuxlQDrsZYA67GXAOuxmADrsZkA67GaAOuxmwDrsZwA67GdAOuxngDrsZ8A67GgAOuxoQDrsaIA67GjAOuxpADrsaUA67GmAOuxpwDrsagA67GpAOuxqgDrsasA67GsAOuxrQDrsa4A67GvAOuxsADrsbEA67GyAOuxswDrsbQA67G1AOuxtgDrsbcA67G4AOuxuQDrsboA67G7AOuxvADrsb0A67G+AOuxvwDrsoAA67KBAOuyggDrsoMA67KEAOuyhQDrsoYA67KHAOuyiADrsokA67KKAOuyiwDrsowA67KNAOuyjgDrso8A67KQAOuykQDrspIA67KTAOuylADrspUA67KWAOuylwDrspgA67KZAOuymgDrspsA67KcAOuynQDrsp4A67KfAOuyoADrsqEA67KiAOuyowDrsqQA67KlAOuypgDrsqcA67KoAOuyqQDrsqoA67KrAOuyrADrsq0A67KuAOuyrwDrsrAA67KxAOuysgDrsrMA67K0AOuytQDrsrYA67K3AOuyuADrsrkA67K6AOuyuwDrsrwA67K9AOuyvgDrsr8A67OAAOuzgQDrs4IA67ODAOuzhADrs4UA67OGAOuzhwDrs4gA67OJAOuzigDrs4sA67OMAOuzjQDrs44A67OPAOuzkADrs5EA67OSAOuzkwDrs5QA67OVAOuzlgDrs5cA67OYAOuzmQDrs5oA67ObAOuznADrs50A67OeAOuznwDrs6AA67OhAOuzogDrs6MA67OkAOuzpQDrs6YA67OnAOuzqADrs6kA67OqAOuzqwDrs6wA67OtAOuzrgDrs68A67OwAOuzsQDrs7IA67OzAOuztADrs7UA67O2AOuztwDrs7gA67O5AOuzugDrs7sA67O8AOuzvQDrs74A67O/AOu0gADrtIEA67SCAOu0gwDrtIQA67SFAOu0hgDrtIcA67SIAOu0iQDrtIoA67SLAOu0jADrtI0A67SOAOu0jwDrtJAA67SRAOu0kgDrtJMA67SUAOu0lQDrtJYA67SXAOu0mADrtJkA67SaAOu0mwDrtJwA67SdAOu0ngDrtJ8A67SgAOu0oQDrtKIA67SjAOu0pADrtKUA67SmAOu0pwDrtKgA67SpAOu0qgDrtKsA67SsAOu0rQDrtK4A67SvAOu0sADrtLEA67SyAOu0swDrtLQA67S1AOu0tgDrtLcA67S4AOu0uQDrtLoA67S7AOu0vADrtL0A67S+AOu0vwDrtYAA67WBAOu1ggDrtYMA67WEAOu1hQDrtYYA67WHAOu1iADrtYkA67WKAOu1iwDrtYwA67WNAOu1jgDrtY8A67WQAOu1kQDrtZIA67WTAOu1lADrtZUA67WWAOu1lwDrtZgA67WZAOu1mgDrtZsA67WcAOu1nQDrtZ4A67WfAOu1oADrtaEA67WiAOu1owDrtaQA67WlAOu1pgDrtacA67WoAOu1qQDrtaoA67WrAOu1rADrta0A67WuAOu1rwDrtbAA67WxAOu1sgDrtbMA67W0AOu1tQDrtbYA67W3AOu1uADrtbkA67W6AOu1uwDrtbwA67W9AOu1vgDrtb8A67aAAOu2gQDrtoIA67aDAOu2hADrtoUA67aGAOu2hwDrtogA67aJAOu2igDrtosA67aMAOu2jQDrto4A67aPAOu2kADrtpEA67aSAOu2kwDrtpQA67aVAOu2lgDrtpcA67aYAOu2mQDrtpoA67abAOu2nADrtp0A67aeAOu2nwDrtqAA67ahAOu2ogDrtqMA67akAOu2pQDrtqYA67anAOu2qADrtqkA67aqAOu2qwDrtqwA67atAOu2rgDrtq8A67awAOu2sQDrtrIA67azAOu2tADrtrUA67a2AOu2twDrtrgA67a5AOu2ugDrtrsA67a8AOu2vQDrtr4A67a/AOu3gADrt4EA67eCAOu3gwDrt4QA67eFAOu3hgDrt4cA67eIAOu3iQDrt4oA67eLAOu3jADrt40A67eOAOu3jwDrt5AA67eRAOu3kgDrt5MA67eUAOu3lQDrt5YA67eXAOu3mADrt5kA67eaAOu3mwDrt5wA67edAOu3ngDrt58A67egAOu3oQDrt6IA67ejAOu3pADrt6UA67emAOu3pwDrt6gA67epAOu3qgDrt6sA67esAOu3rQDrt64A67evAOu3sADrt7EA67eyAOu3swDrt7QA67e1AOu3tgDrt7cA67e4AOu3uQDrt7oA67e7AOu3vADrt70A67e+AOu3vwDruIAA67iBAOu4ggDruIMA67iEAOu4hQDruIYA67iHAOu4iADruIkA67iKAOu4iwDruIwA67iNAOu4jgDruI8A67iQAOu4kQDruJIA67iTAOu4lADruJUA67iWAOu4lwDruJgA67iZAOu4mgDruJsA67icAOu4nQDruJ4A67ifAOu4oADruKEA67iiAOu4owDruKQA67ilAOu4pgDruKcA67ioAOu4qQDruKoA67irAOu4rADruK0A67iuAOu4rwDruLAA67ixAOu4sgDruLMA67i0AOu4tQDruLYA67i3AOu4uADruLkA67i6AOu4uwDruLwA67i9AOu4vgDruL8A67mAAOu5gQDruYIA67mDAOu5hADruYUA67mGAOu5hwDruYgA67mJAOu5igDruYsA67mMAOu5jQDruY4A67mPAOu5kADruZEA67mSAOu5kwDruZQA67mVAOu5lgDruZcA67mYAOu5mQDruZoA67mbAOu5nADruZ0A67meAOu5nwDruaAA67mhAOu5ogDruaMA67mkAOu5pQDruaYA67mnAOu5qADruakA67mqAOu5qwDruawA67mtAOu5rgDrua8A67mwAOu5sQDrubIA67mzAOu5tADrubUA67m2AOu5twDrubgA67m5AOu5ugDrubsA67m8AOu5vQDrub4A67m/AOu6gADruoEA67qCAOu6gwDruoQA67qFAOu6hgDruocA67qIAOu6iQDruooA67qLAOu6jADruo0A67qOAOu6jwDrupAA67qRAOu6kgDrupMA67qUAOu6lQDrupYA67qXAOu6mADrupkA67qaAOu6mwDrupwA67qdAOu6ngDrup8A67qgAOu6oQDruqIA67qjAOu6pADruqUA67qmAOu6pwDruqgA67qpAOu6qgDruqsA67qsAOu6rQDruq4A67qvAOu6sADrurEA67qyAOu6swDrurQA67q1AOu6tgDrurcA67q4AOu6uQDruroA67q7AOu6vADrur0A67q+AOu6vwDru4AA67uBAOu7ggDru4MA67uEAOu7hQDru4YA67uHAOu7iADru4kA67uKAOu7iwDru4wA67uNAOu7jgDru48A67uQAOu7kQDru5IA67uTAOu7lADru5UA67uWAOu7lwDru5gA67uZAOu7mgDru5sA67ucAOu7nQDru54A67ufAOu7oADru6EA67uiAOu7owDru6QA67ulAOu7pgDru6cA67uoAOu7qQDru6oA67urAOu7rADru60A67uuAOu7rwDru7AA67uxAOu7sgDru7MA67u0AOu7tQDru7YA67u3AOu7uADru7kA67u6AOu7uwDru7wA67u9AOu7vgDru78A67yAAOu8gQDrvIIA67yDAOu8hADrvIUA67yGAOu8hwDrvIgA67yJAOu8igDrvIsA67yMAOu8jQDrvI4A67yPAOu8kADrvJEA67ySAOu8kwDrvJQA67yVAOu8lgDrvJcA67yYAOu8mQDrvJoA67ybAOu8nADrvJ0A67yeAOu8nwDrvKAA67yhAOu8ogDrvKMA67ykAOu8pQDrvKYA67ynAOu8qADrvKkA67yqAOu8qwDrvKwA67ytAOu8rgDrvK8A67ywAOu8sQDrvLIA67yzAOu8tADrvLUA67y2AOu8twDrvLgA67y5AOu8ugDrvLsA67y8AOu8vQDrvL4A67y/AOu9gADrvYEA672CAOu9gwDrvYQA672FAOu9hgDrvYcA672IAOu9iQDrvYoA672LAOu9jADrvY0A672OAOu9jwDrvZAA672RAOu9kgDrvZMA672UAOu9lQDrvZYA672XAOu9mADrvZkA672aAOu9mwDrvZwA672dAOu9ngDrvZ8A672gAOu9oQDrvaIA672jAOu9pADrvaUA672mAOu9pwDrvagA672pAOu9qgDrvasA672sAOu9rQDrva4A672vAOu9sADrvbEA672yAOu9swDrvbQA6721AOu9tgDrvbcA6724AOu9uQDrvboA6727AOu9vADrvb0A672+AOu9vwDrvoAA676BAOu+ggDrvoMA676EAOu+hQDrvoYA676HAOu+iADrvokA676KAOu+iwDrvowA676NAOu+jgDrvo8A676QAOu+kQDrvpIA676TAOu+lADrvpUA676WAOu+lwDrvpgA676ZAOu+mgDrvpsA676cAOu+nQDrvp4A676fAOu+oADrvqEA676iAOu+owDrvqQA676lAOu+pgDrvqcA676oAOu+qQDrvqoA676rAOu+rADrvq0A676uAOu+rwDrvrAA676xAOu+sgDrvrMA6760AOu+tQDrvrYA6763AOu+uADrvrkA6766AOu+uwDrvrwA6769AOu+vgDrvr8A67+AAOu/gQDrv4IA67+DAOu/hADrv4UA67+GAOu/hwDrv4gA67+JAOu/igDrv4sA67+MAOu/jQDrv44A67+PAOu/kADrv5EA67+SAOu/kwDrv5QA67+VAOu/lgDrv5cA67+YAOu/mQDrv5oA67+bAOu/nADrv50A67+eAOu/nwDrv6AA67+hAOu/ogDrv6MA67+kAOu/pQDrv6YA67+nAOu/qADrv6kA67+qAOu/qwDrv6wA67+tAOu/rgDrv68A67+wAOu/sQDrv7IA67+zAOu/tADrv7UA67+2AOu/twDrv7gA67+5AOu/ugDrv7sA67+8AOu/vQDrv74A67+/AOyAgADsgIEA7ICCAOyAgwDsgIQA7ICFAOyAhgDsgIcA7ICIAOyAiQDsgIoA7ICLAOyAjADsgI0A7ICOAOyAjwDsgJAA7ICRAOyAkgDsgJMA7ICUAOyAlQDsgJYA7ICXAOyAmADsgJkA7ICaAOyAmwDsgJwA7ICdAOyAngDsgJ8A7ICgAOyAoQDsgKIA7ICjAOyApADsgKUA7ICmAOyApwDsgKgA7ICpAOyAqgDsgKsA7ICsAOyArQDsgK4A7ICvAOyAsADsgLEA7ICyAOyAswDsgLQA7IC1AOyAtgDsgLcA7IC4AOyAuQDsgLoA7IC7AOyAvADsgL0A7IC+AOyAvwDsgYAA7IGBAOyBggDsgYMA7IGEAOyBhQDsgYYA7IGHAOyBiADsgYkA7IGKAOyBiwDsgYwA7IGNAOyBjgDsgY8A7IGQAOyBkQDsgZIA7IGTAOyBlADsgZUA7IGWAOyBlwDsgZgA7IGZAOyBmgDsgZsA7IGcAOyBnQDsgZ4A7IGfAOyBoADsgaEA7IGiAOyBowDsgaQA7IGlAOyBpgDsgacA7IGoAOyBqQDsgaoA7IGrAOyBrADsga0A7IGuAOyBrwDsgbAA7IGxAOyBsgDsgbMA7IG0AOyBtQDsgbYA7IG3AOyBuADsgbkA7IG6AOyBuwDsgbwA7IG9AOyBvgDsgb8A7IKAAOyCgQDsgoIA7IKDAOyChADsgoUA7IKGAOyChwDsgogA7IKJAOyCigDsgosA7IKMAOyCjQDsgo4A7IKPAOyCkADsgpEA7IKSAOyCkwDsgpQA7IKVAOyClgDsgpcA7IKYAOyCmQDsgpoA7IKbAOyCnADsgp0A7IKeAOyCnwDsgqAA7IKhAOyCogDsgqMA7IKkAOyCpQDsgqYA7IKnAOyCqADsgqkA7IKqAOyCqwDsgqwA7IKtAOyCrgDsgq8A7IKwAOyCsQDsgrIA7IKzAOyCtADsgrUA7IK2AOyCtwDsgrgA7IK5AOyCugDsgrsA7IK8AOyCvQDsgr4A7IK/AOyDgADsg4EA7IOCAOyDgwDsg4QA7IOFAOyDhgDsg4cA7IOIAOyDiQDsg4oA7IOLAOyDjADsg40A7IOOAOyDjwDsg5AA7IORAOyDkgDsg5MA7IOUAOyDlQDsg5YA7IOXAOyDmADsg5kA7IOaAOyDmwDsg5wA7IOdAOyDngDsg58A7IOgAOyDoQDsg6IA7IOjAOyDpADsg6UA7IOmAOyDpwDsg6gA7IOpAOyDqgDsg6sA7IOsAOyDrQDsg64A7IOvAOyDsADsg7EA7IOyAOyDswDsg7QA7IO1AOyDtgDsg7cA7IO4AOyDuQDsg7oA7IO7AOyDvADsg70A7IO+AOyDvwDshIAA7ISBAOyEggDshIMA7ISEAOyEhQDshIYA7ISHAOyEiADshIkA7ISKAOyEiwDshIwA7ISNAOyEjgDshI8A7ISQAOyEkQDshJIA7ISTAOyElADshJUA7ISWAOyElwDshJgA7ISZAOyEmgDshJsA7IScAOyEnQDshJ4A7ISfAOyEoADshKEA7ISiAOyEowDshKQA7ISlAOyEpgDshKcA7ISoAOyEqQDshKoA7ISrAOyErADshK0A7ISuAOyErwDshLAA7ISxAOyEsgDshLMA7IS0AOyEtQDshLYA7IS3AOyEuADshLkA7IS6AOyEuwDshLwA7IS9AOyEvgDshL8A7IWAAOyFgQDshYIA7IWDAOyFhADshYUA7IWGAOyFhwDshYgA7IWJAOyFigDshYsA7IWMAOyFjQDshY4A7IWPAOyFkADshZEA7IWSAOyFkwDshZQA7IWVAOyFlgDshZcA7IWYAOyFmQDshZoA7IWbAOyFnADshZ0A7IWeAOyFnwDshaAA7IWhAOyFogDshaMA7IWkAOyFpQDshaYA7IWnAOyFqADshakA7IWqAOyFqwDshawA7IWtAOyFrgDsha8A7IWwAOyFsQDshbIA7IWzAOyFtADshbUA7IW2AOyFtwDshbgA7IW5AOyFugDshbsA7IW8AOyFvQDshb4A7IW/AOyGgADshoEA7IaCAOyGgwDshoQA7IaFAOyGhgDshocA7IaIAOyGiQDshooA7IaLAOyGjADsho0A7IaOAOyGjwDshpAA7IaRAOyGkgDshpMA7IaUAOyGlQDshpYA7IaXAOyGmADshpkA7IaaAOyGmwDshpwA7IadAOyGngDshp8A7IagAOyGoQDshqIA7IajAOyGpADshqUA7IamAOyGpwDshqgA7IapAOyGqgDshqsA7IasAOyGrQDshq4A7IavAOyGsADshrEA7IayAOyGswDshrQA7Ia1AOyGtgDshrcA7Ia4AOyGuQDshroA7Ia7AOyGvADshr0A7Ia+AOyGvwDsh4AA7IeBAOyHggDsh4MA7IeEAOyHhQDsh4YA7IeHAOyHiADsh4kA7IeKAOyHiwDsh4wA7IeNAOyHjgDsh48A7IeQAOyHkQDsh5IA7IeTAOyHlADsh5UA7IeWAOyHlwDsh5gA7IeZAOyHmgDsh5sA7IecAOyHnQDsh54A7IefAOyHoADsh6EA7IeiAOyHowDsh6QA7IelAOyHpgDsh6cA7IeoAOyHqQDsh6oA7IerAOyHrADsh60A7IeuAOyHrwDsh7AA7IexAOyHsgDsh7MA7Ie0AOyHtQDsh7YA7Ie3AOyHuADsh7kA7Ie6AOyHuwDsh7wA7Ie9AOyHvgDsh78A7IiAAOyIgQDsiIIA7IiDAOyIhADsiIUA7IiGAOyIhwDsiIgA7IiJAOyIigDsiIsA7IiMAOyIjQDsiI4A7IiPAOyIkADsiJEA7IiSAOyIkwDsiJQA7IiVAOyIlgDsiJcA7IiYAOyImQDsiJoA7IibAOyInADsiJ0A7IieAOyInwDsiKAA7IihAOyIogDsiKMA7IikAOyIpQDsiKYA7IinAOyIqADsiKkA7IiqAOyIqwDsiKwA7IitAOyIrgDsiK8A7IiwAOyIsQDsiLIA7IizAOyItADsiLUA7Ii2AOyItwDsiLgA7Ii5AOyIugDsiLsA7Ii8AOyIvQDsiL4A7Ii/AOyJgADsiYEA7ImCAOyJgwDsiYQA7ImFAOyJhgDsiYcA7ImIAOyJiQDsiYoA7ImLAOyJjADsiY0A7ImOAOyJjwDsiZAA7ImRAOyJkgDsiZMA7ImUAOyJlQDsiZYA7ImXAOyJmADsiZkA7ImaAOyJmwDsiZwA7ImdAOyJngDsiZ8A7ImgAOyJoQDsiaIA7ImjAOyJpADsiaUA7ImmAOyJpwDsiagA7ImpAOyJqgDsiasA7ImsAOyJrQDsia4A7ImvAOyJsADsibEA7ImyAOyJswDsibQA7Im1AOyJtgDsibcA7Im4AOyJuQDsiboA7Im7AOyJvADsib0A7Im+AOyJvwDsioAA7IqBAOyKggDsioMA7IqEAOyKhQDsioYA7IqHAOyKiADsiokA7IqKAOyKiwDsiowA7IqNAOyKjgDsio8A7IqQAOyKkQDsipIA7IqTAOyKlADsipUA7IqWAOyKlwDsipgA7IqZAOyKmgDsipsA7IqcAOyKnQDsip4A7IqfAOyKoADsiqEA7IqiAOyKowDsiqQA7IqlAOyKpgDsiqcA7IqoAOyKqQDsiqoA7IqrAOyKrADsiq0A7IquAOyKrwDsirAA7IqxAOyKsgDsirMA7Iq0AOyKtQDsirYA7Iq3AOyKuADsirkA7Iq6AOyKuwDsirwA7Iq9AOyKvgDsir8A7IuAAOyLgQDsi4IA7IuDAOyLhADsi4UA7IuGAOyLhwDsi4gA7IuJAOyLigDsi4sA7IuMAOyLjQDsi44A7IuPAOyLkADsi5EA7IuSAOyLkwDsi5QA7IuVAOyLlgDsi5cA7IuYAOyLmQDsi5oA7IubAOyLnADsi50A7IueAOyLnwDsi6AA7IuhAOyLogDsi6MA7IukAOyLpQDsi6YA7IunAOyLqADsi6kA7IuqAOyLqwDsi6wA7IutAOyLrgDsi68A7IuwAOyLsQDsi7IA7IuzAOyLtADsi7UA7Iu2AOyLtwDsi7gA7Iu5AOyLugDsi7sA7Iu8AOyLvQDsi74A7Iu/AOyMgADsjIEA7IyCAOyMgwDsjIQA7IyFAOyMhgDsjIcA7IyIAOyMiQDsjIoA7IyLAOyMjADsjI0A7IyOAOyMjwDsjJAA7IyRAOyMkgDsjJMA7IyUAOyMlQDsjJYA7IyXAOyMmADsjJkA7IyaAOyMmwDsjJwA7IydAOyMngDsjJ8A7IygAOyMoQDsjKIA7IyjAOyMpADsjKUA7IymAOyMpwDsjKgA7IypAOyMqgDsjKsA7IysAOyMrQDsjK4A7IyvAOyMsADsjLEA7IyyAOyMswDsjLQA7Iy1AOyMtgDsjLcA7Iy4AOyMuQDsjLoA7Iy7AOyMvADsjL0A7Iy+AOyMvwDsjYAA7I2BAOyNggDsjYMA7I2EAOyNhQDsjYYA7I2HAOyNiADsjYkA7I2KAOyNiwDsjYwA7I2NAOyNjgDsjY8A7I2QAOyNkQDsjZIA7I2TAOyNlADsjZUA7I2WAOyNlwDsjZgA7I2ZAOyNmgDsjZsA7I2cAOyNnQDsjZ4A7I2fAOyNoADsjaEA7I2iAOyNowDsjaQA7I2lAOyNpgDsjacA7I2oAOyNqQDsjaoA7I2rAOyNrADsja0A7I2uAOyNrwDsjbAA7I2xAOyNsgDsjbMA7I20AOyNtQDsjbYA7I23AOyNuADsjbkA7I26AOyNuwDsjbwA7I29AOyNvgDsjb8A7I6AAOyOgQDsjoIA7I6DAOyOhADsjoUA7I6GAOyOhwDsjogA7I6JAOyOigDsjosA7I6MAOyOjQDsjo4A7I6PAOyOkADsjpEA7I6SAOyOkwDsjpQA7I6VAOyOlgDsjpcA7I6YAOyOmQDsjpoA7I6bAOyOnADsjp0A7I6eAOyOnwDsjqAA7I6hAOyOogDsjqMA7I6kAOyOpQDsjqYA7I6nAOyOqADsjqkA7I6qAOyOqwDsjqwA7I6tAOyOrgDsjq8A7I6wAOyOsQDsjrIA7I6zAOyOtADsjrUA7I62AOyOtwDsjrgA7I65AOyOugDsjrsA7I68AOyOvQDsjr4A7I6/AOyPgADsj4EA7I+CAOyPgwDsj4QA7I+FAOyPhgDsj4cA7I+IAOyPiQDsj4oA7I+LAOyPjADsj40A7I+OAOyPjwDsj5AA7I+RAOyPkgDsj5MA7I+UAOyPlQDsj5YA7I+XAOyPmADsj5kA7I+aAOyPmwDsj5wA7I+dAOyPngDsj58A7I+gAOyPoQDsj6IA7I+jAOyPpADsj6UA7I+mAOyPpwDsj6gA7I+pAOyPqgDsj6sA7I+sAOyPrQDsj64A7I+vAOyPsADsj7EA7I+yAOyPswDsj7QA7I+1AOyPtgDsj7cA7I+4AOyPuQDsj7oA7I+7AOyPvADsj70A7I++AOyPvwDskIAA7JCBAOyQggDskIMA7JCEAOyQhQDskIYA7JCHAOyQiADskIkA7JCKAOyQiwDskIwA7JCNAOyQjgDskI8A7JCQAOyQkQDskJIA7JCTAOyQlADskJUA7JCWAOyQlwDskJgA7JCZAOyQmgDskJsA7JCcAOyQnQDskJ4A7JCfAOyQoADskKEA7JCiAOyQowDskKQA7JClAOyQpgDskKcA7JCoAOyQqQDskKoA7JCrAOyQrADskK0A7JCuAOyQrwDskLAA7JCxAOyQsgDskLMA7JC0AOyQtQDskLYA7JC3AOyQuADskLkA7JC6AOyQuwDskLwA7JC9AOyQvgDskL8A7JGAAOyRgQDskYIA7JGDAOyRhADskYUA7JGGAOyRhwDskYgA7JGJAOyRigDskYsA7JGMAOyRjQDskY4A7JGPAOyRkADskZEA7JGSAOyRkwDskZQA7JGVAOyRlgDskZcA7JGYAOyRmQDskZoA7JGbAOyRnADskZ0A7JGeAOyRnwDskaAA7JGhAOyRogDskaMA7JGkAOyRpQDskaYA7JGnAOyRqADskakA7JGqAOyRqwDskawA7JGtAOyRrgDska8A7JGwAOyRsQDskbIA7JGzAOyRtADskbUA7JG2AOyRtwDskbgA7JG5AOyRugDskbsA7JG8AOyRvQDskb4A7JG/AOySgADskoEA7JKCAOySgwDskoQA7JKFAOyShgDskocA7JKIAOySiQDskooA7JKLAOySjADsko0A7JKOAOySjwDskpAA7JKRAOySkgDskpMA7JKUAOySlQDskpYA7JKXAOySmADskpkA7JKaAOySmwDskpwA7JKdAOySngDskp8A7JKgAOySoQDskqIA7JKjAOySpADskqUA7JKmAOySpwDskqgA7JKpAOySqgDskqsA7JKsAOySrQDskq4A7JKvAOySsADskrEA7JKyAOySswDskrQA7JK1AOyStgDskrcA7JK4AOySuQDskroA7JK7AOySvADskr0A7JK+AOySvwDsk4AA7JOBAOyTggDsk4MA7JOEAOyThQDsk4YA7JOHAOyTiADsk4kA7JOKAOyTiwDsk4wA7JONAOyTjgDsk48A7JOQAOyTkQDsk5IA7JOTAOyTlADsk5UA7JOWAOyTlwDsk5gA7JOZAOyTmgDsk5sA7JOcAOyTnQDsk54A7JOfAOyToADsk6EA7JOiAOyTowDsk6QA7JOlAOyTpgDsk6cA7JOoAOyTqQDsk6oA7JOrAOyTrADsk60A7JOuAOyTrwDsk7AA7JOxAOyTsgDsk7MA7JO0AOyTtQDsk7YA7JO3AOyTuADsk7kA7JO6AOyTuwDsk7wA7JO9AOyTvgDsk78A7JSAAOyUgQDslIIA7JSDAOyUhADslIUA7JSGAOyUhwDslIgA7JSJAOyUigDslIsA7JSMAOyUjQDslI4A7JSPAOyUkADslJEA7JSSAOyUkwDslJQA7JSVAOyUlgDslJcA7JSYAOyUmQDslJoA7JSbAOyUnADslJ0A7JSeAOyUnwDslKAA7JShAOyUogDslKMA7JSkAOyUpQDslKYA7JSnAOyUqADslKkA7JSqAOyUqwDslKwA7JStAOyUrgDslK8A7JSwAOyUsQDslLIA7JSzAOyUtADslLUA7JS2AOyUtwDslLgA7JS5AOyUugDslLsA7JS8AOyUvQDslL4A7JS/AOyVgADslYEA7JWCAOyVgwDslYQA7JWFAOyVhgDslYcA7JWIAOyViQDslYoA7JWLAOyVjADslY0A7JWOAOyVjwDslZAA7JWRAOyVkgDslZMA7JWUAOyVlQDslZYA7JWXAOyVmADslZkA7JWaAOyVmwDslZwA7JWdAOyVngDslZ8A7JWgAOyVoQDslaIA7JWjAOyVpADslaUA7JWmAOyVpwDslagA7JWpAOyVqgDslasA7JWsAOyVrQDsla4A7JWvAOyVsADslbEA7JWyAOyVswDslbQA7JW1AOyVtgDslbcA7JW4AOyVuQDslboA7JW7AOyVvADslb0A7JW+AOyVvwDsloAA7JaBAOyWggDsloMA7JaEAOyWhQDsloYA7JaHAOyWiADslokA7JaKAOyWiwDslowA7JaNAOyWjgDslo8A7JaQAOyWkQDslpIA7JaTAOyWlADslpUA7JaWAOyWlwDslpgA7JaZAOyWmgDslpsA7JacAOyWnQDslp4A7JafAOyWoADslqEA7JaiAOyWowDslqQA7JalAOyWpgDslqcA7JaoAOyWqQDslqoA7JarAOyWrADslq0A7JauAOyWrwDslrAA7JaxAOyWsgDslrMA7Ja0AOyWtQDslrYA7Ja3AOyWuADslrkA7Ja6AOyWuwDslrwA7Ja9AOyWvgDslr8A7JeAAOyXgQDsl4IA7JeDAOyXhADsl4UA7JeGAOyXhwDsl4gA7JeJAOyXigDsl4sA7JeMAOyXjQDsl44A7JePAOyXkADsl5EA7JeSAOyXkwDsl5QA7JeVAOyXlgDsl5cA7JeYAOyXmQDsl5oA7JebAOyXnADsl50A7JeeAOyXnwDsl6AA7JehAOyXogDsl6MA7JekAOyXpQDsl6YA7JenAOyXqADsl6kA7JeqAOyXqwDsl6wA7JetAOyXrgDsl68A7JewAOyXsQDsl7IA7JezAOyXtADsl7UA7Je2AOyXtwDsl7gA7Je5AOyXugDsl7sA7Je8AOyXvQDsl74A7Je/AOyYgADsmIEA7JiCAOyYgwDsmIQA7JiFAOyYhgDsmIcA7JiIAOyYiQDsmIoA7JiLAOyYjADsmI0A7JiOAOyYjwDsmJAA7JiRAOyYkgDsmJMA7JiUAOyYlQDsmJYA7JiXAOyYmADsmJkA7JiaAOyYmwDsmJwA7JidAOyYngDsmJ8A7JigAOyYoQDsmKIA7JijAOyYpADsmKUA7JimAOyYpwDsmKgA7JipAOyYqgDsmKsA7JisAOyYrQDsmK4A7JivAOyYsADsmLEA7JiyAOyYswDsmLQA7Ji1AOyYtgDsmLcA7Ji4AOyYuQDsmLoA7Ji7AOyYvADsmL0A7Ji+AOyYvwDsmYAA7JmBAOyZggDsmYMA7JmEAOyZhQDsmYYA7JmHAOyZiADsmYkA7JmKAOyZiwDsmYwA7JmNAOyZjgDsmY8A7JmQAOyZkQDsmZIA7JmTAOyZlADsmZUA7JmWAOyZlwDsmZgA7JmZAOyZmgDsmZsA7JmcAOyZnQDsmZ4A7JmfAOyZoADsmaEA7JmiAOyZowDsmaQA7JmlAOyZpgDsmacA7JmoAOyZqQDsmaoA7JmrAOyZrADsma0A7JmuAOyZrwDsmbAA7JmxAOyZsgDsmbMA7Jm0AOyZtQDsmbYA7Jm3AOyZuADsmbkA7Jm6AOyZuwDsmbwA7Jm9AOyZvgDsmb8A7JqAAOyagQDsmoIA7JqDAOyahADsmoUA7JqGAOyahwDsmogA7JqJAOyaigDsmosA7JqMAOyajQDsmo4A7JqPAOyakADsmpEA7JqSAOyakwDsmpQA7JqVAOyalgDsmpcA7JqYAOyamQDsmpoA7JqbAOyanADsmp0A7JqeAOyanwDsmqAA7JqhAOyaogDsmqMA7JqkAOyapQDsmqYA7JqnAOyaqADsmqkA7JqqAOyaqwDsmqwA7JqtAOyargDsmq8A7JqwAOyasQDsmrIA7JqzAOyatADsmrUA7Jq2AOyatwDsmrgA7Jq5AOyaugDsmrsA7Jq8AOyavQDsmr4A7Jq/AOybgADsm4EA7JuCAOybgwDsm4QA7JuFAOybhgDsm4cA7JuIAOybiQDsm4oA7JuLAOybjADsm40A7JuOAOybjwDsm5AA7JuRAOybkgDsm5MA7JuUAOyblQDsm5YA7JuXAOybmADsm5kA7JuaAOybmwDsm5wA7JudAOybngDsm58A7JugAOyboQDsm6IA7JujAOybpADsm6UA7JumAOybpwDsm6gA7JupAOybqgDsm6sA7JusAOybrQDsm64A7JuvAOybsADsm7EA7JuyAOybswDsm7QA7Ju1AOybtgDsm7cA7Ju4AOybuQDsm7oA7Ju7AOybvADsm70A7Ju+AOybvwDsnIAA7JyBAOycggDsnIMA7JyEAOychQDsnIYA7JyHAOyciADsnIkA7JyKAOyciwDsnIwA7JyNAOycjgDsnI8A7JyQAOyckQDsnJIA7JyTAOyclADsnJUA7JyWAOyclwDsnJgA7JyZAOycmgDsnJsA7JycAOycnQDsnJ4A7JyfAOycoADsnKEA7JyiAOycowDsnKQA7JylAOycpgDsnKcA7JyoAOycqQDsnKoA7JyrAOycrADsnK0A7JyuAOycrwDsnLAA7JyxAOycsgDsnLMA7Jy0AOyctQDsnLYA7Jy3AOycuADsnLkA7Jy6AOycuwDsnLwA7Jy9AOycvgDsnL8A7J2AAOydgQDsnYIA7J2DAOydhADsnYUA7J2GAOydhwDsnYgA7J2JAOydigDsnYsA7J2MAOydjQDsnY4A7J2PAOydkADsnZEA7J2SAOydkwDsnZQA7J2VAOydlgDsnZcA7J2YAOydmQDsnZoA7J2bAOydnADsnZ0A7J2eAOydnwDsnaAA7J2hAOydogDsnaMA7J2kAOydpQDsnaYA7J2nAOydqADsnakA7J2qAOydqwDsnawA7J2tAOydrgDsna8A7J2wAOydsQDsnbIA7J2zAOydtADsnbUA7J22AOydtwDsnbgA7J25AOydugDsnbsA7J28AOydvQDsnb4A7J2/AOyegADsnoEA7J6CAOyegwDsnoQA7J6FAOyehgDsnocA7J6IAOyeiQDsnooA7J6LAOyejADsno0A7J6OAOyejwDsnpAA7J6RAOyekgDsnpMA7J6UAOyelQDsnpYA7J6XAOyemADsnpkA7J6aAOyemwDsnpwA7J6dAOyengDsnp8A7J6gAOyeoQDsnqIA7J6jAOyepADsnqUA7J6mAOyepwDsnqgA7J6pAOyeqgDsnqsA7J6sAOyerQDsnq4A7J6vAOyesADsnrEA7J6yAOyeswDsnrQA7J61AOyetgDsnrcA7J64AOyeuQDsnroA7J67AOyevADsnr0A7J6+AOyevwDsn4AA7J+BAOyfggDsn4MA7J+EAOyfhQDsn4YA7J+HAOyfiADsn4kA7J+KAOyfiwDsn4wA7J+NAOyfjgDsn48A7J+QAOyfkQDsn5IA7J+TAOyflADsn5UA7J+WAOyflwDsn5gA7J+ZAOyfmgDsn5sA7J+cAOyfnQDsn54A7J+fAOyfoADsn6EA7J+iAOyfowDsn6QA7J+lAOyfpgDsn6cA7J+oAOyfqQDsn6oA7J+rAOyfrADsn60A7J+uAOyfrwDsn7AA7J+xAOyfsgDsn7MA7J+0AOyftQDsn7YA7J+3AOyfuADsn7kA7J+6AOyfuwDsn7wA7J+9AOyfvgDsn78A7KCAAOyggQDsoIIA7KCDAOyghADsoIUA7KCGAOyghwDsoIgA7KCJAOygigDsoIsA7KCMAOygjQDsoI4A7KCPAOygkADsoJEA7KCSAOygkwDsoJQA7KCVAOyglgDsoJcA7KCYAOygmQDsoJoA7KCbAOygnADsoJ0A7KCeAOygnwDsoKAA7KChAOygogDsoKMA7KCkAOygpQDsoKYA7KCnAOygqADsoKkA7KCqAOygqwDsoKwA7KCtAOygrgDsoK8A7KCwAOygsQDsoLIA7KCzAOygtADsoLUA7KC2AOygtwDsoLgA7KC5AOygugDsoLsA7KC8AOygvQDsoL4A7KC/AOyhgADsoYEA7KGCAOyhgwDsoYQA7KGFAOyhhgDsoYcA7KGIAOyhiQDsoYoA7KGLAOyhjADsoY0A7KGOAOyhjwDsoZAA7KGRAOyhkgDsoZMA7KGUAOyhlQDsoZYA7KGXAOyhmADsoZkA7KGaAOyhmwDsoZwA7KGdAOyhngDsoZ8A7KGgAOyhoQDsoaIA7KGjAOyhpADsoaUA7KGmAOyhpwDsoagA7KGpAOyhqgDsoasA7KGsAOyhrQDsoa4A7KGvAOyhsADsobEA7KGyAOyhswDsobQA7KG1AOyhtgDsobcA7KG4AOyhuQDsoboA7KG7AOyhvADsob0A7KG+AOyhvwDsooAA7KKBAOyiggDsooMA7KKEAOyihQDsooYA7KKHAOyiiADsookA7KKKAOyiiwDsoowA7KKNAOyijgDsoo8A7KKQAOyikQDsopIA7KKTAOyilADsopUA7KKWAOyilwDsopgA7KKZAOyimgDsopsA7KKcAOyinQDsop4A7KKfAOyioADsoqEA7KKiAOyiowDsoqQA7KKlAOyipgDsoqcA7KKoAOyiqQDsoqoA7KKrAOyirADsoq0A7KKuAOyirwDsorAA7KKxAOyisgDsorMA7KK0AOyitQDsorYA7KK3AOyiuADsorkA7KK6AOyiuwDsorwA7KK9AOyivgDsor8A7KOAAOyjgQDso4IA7KODAOyjhADso4UA7KOGAOyjhwDso4gA7KOJAOyjigDso4sA7KOMAOyjjQDso44A7KOPAOyjkADso5EA7KOSAOyjkwDso5QA7KOVAOyjlgDso5cA7KOYAOyjmQDso5oA7KObAOyjnADso50A7KOeAOyjnwDso6AA7KOhAOyjogDso6MA7KOkAOyjpQDso6YA7KOnAOyjqADso6kA7KOqAOyjqwDso6wA7KOtAOyjrgDso68A7KOwAOyjsQDso7IA7KOzAOyjtADso7UA7KO2AOyjtwDso7gA7KO5AOyjugDso7sA7KO8AOyjvOydmADso70A7KO+AOyjvwDspIAA7KSBAOykggDspIMA7KSEAOykhQDspIYA7KSHAOykiADspIkA7KSKAOykiwDspIwA7KSNAOykjgDspI8A7KSQAOykkQDspJIA7KSTAOyklADspJUA7KSWAOyklwDspJgA7KSZAOykmgDspJsA7KScAOyknQDspJ4A7KSfAOykoADspKEA7KSiAOykowDspKQA7KSlAOykpgDspKcA7KSoAOykqQDspKoA7KSrAOykrADspK0A7KSuAOykrwDspLAA7KSxAOyksgDspLMA7KS0AOyktQDspLYA7KS3AOykuADspLkA7KS6AOykuwDspLwA7KS9AOykvgDspL8A7KWAAOylgQDspYIA7KWDAOylhADspYUA7KWGAOylhwDspYgA7KWJAOyligDspYsA7KWMAOyljQDspY4A7KWPAOylkADspZEA7KWSAOylkwDspZQA7KWVAOyllgDspZcA7KWYAOylmQDspZoA7KWbAOylnADspZ0A7KWeAOylnwDspaAA7KWhAOylogDspaMA7KWkAOylpQDspaYA7KWnAOylqADspakA7KWqAOylqwDspawA7KWtAOylrgDspa8A7KWwAOylsQDspbIA7KWzAOyltADspbUA7KW2AOyltwDspbgA7KW5AOylugDspbsA7KW8AOylvQDspb4A7KW/AOymgADspoEA7KaCAOymgwDspoQA7KaFAOymhgDspocA7KaIAOymiQDspooA7KaLAOymjADspo0A7KaOAOymjwDsppAA7KaRAOymkgDsppMA7KaUAOymlQDsppYA7KaXAOymmADsppkA7KaaAOymmwDsppwA7KadAOymngDspp8A7KagAOymoQDspqIA7KajAOympADspqUA7KamAOympwDspqgA7KapAOymqgDspqsA7KasAOymrQDspq4A7KavAOymsADsprEA7KayAOymswDsprQA7Ka1AOymtgDsprcA7Ka4AOymuQDsproA7Ka7AOymvADspr0A7Ka+AOymvwDsp4AA7KeBAOynggDsp4MA7KeEAOynhQDsp4YA7KeHAOyniADsp4kA7KeKAOyniwDsp4wA7KeNAOynjgDsp48A7KeQAOynkQDsp5IA7KeTAOynlADsp5UA7KeWAOynlwDsp5gA7KeZAOynmgDsp5sA7KecAOynnQDsp54A7KefAOynoADsp6EA7KeiAOynowDsp6QA7KelAOynpgDsp6cA7KeoAOynqQDsp6oA7KerAOynrADsp60A7KeuAOynrwDsp7AA7KexAOynsgDsp7MA7Ke0AOyntQDsp7YA7Ke3AOynuADsp7kA7Ke6AOynuwDsp7wA7Ke9AOynvgDsp78A7KiAAOyogQDsqIIA7KiDAOyohADsqIUA7KiGAOyohwDsqIgA7KiJAOyoigDsqIsA7KiMAOyojQDsqI4A7KiPAOyokADsqJEA7KiSAOyokwDsqJQA7KiVAOyolgDsqJcA7KiYAOyomQDsqJoA7KibAOyonADsqJ0A7KieAOyonwDsqKAA7KihAOyoogDsqKMA7KikAOyopQDsqKYA7KinAOyoqADsqKkA7KiqAOyoqwDsqKwA7KitAOyorgDsqK8A7KiwAOyosQDsqLIA7KizAOyotADsqLUA7Ki2AOyotwDsqLgA7Ki5AOyougDsqLsA7Ki8AOyovQDsqL4A7Ki/AOypgADsqYEA7KmCAOypgwDsqYQA7KmFAOyphgDsqYcA7KmIAOypiQDsqYoA7KmLAOypjADsqY0A7KmOAOypjwDsqZAA7KmRAOypkgDsqZMA7KmUAOyplQDsqZYA7KmXAOypmADsqZkA7KmaAOypmwDsqZwA7KmdAOypngDsqZ8A7KmgAOypoQDsqaIA7KmjAOyppADsqaUA7KmmAOyppwDsqagA7KmpAOypqgDsqasA7KmsAOyprQDsqa4A7KmvAOypsADsqbEA7KmyAOypswDsqbQA7Km1AOyptgDsqbcA7Km4AOypuQDsqboA7Km7AOypvADsqb0A7Km+AOypvwDsqoAA7KqBAOyqggDsqoMA7KqEAOyqhQDsqoYA7KqHAOyqiADsqokA7KqKAOyqiwDsqowA7KqNAOyqjgDsqo8A7KqQAOyqkQDsqpIA7KqTAOyqlADsqpUA7KqWAOyqlwDsqpgA7KqZAOyqmgDsqpsA7KqcAOyqnQDsqp4A7KqfAOyqoADsqqEA7KqiAOyqowDsqqQA7KqlAOyqpgDsqqcA7KqoAOyqqQDsqqoA7KqrAOyqrADsqq0A7KquAOyqrwDsqrAA7KqxAOyqsgDsqrMA7Kq0AOyqtQDsqrYA7Kq3AOyquADsqrkA7Kq6AOyquwDsqrwA7Kq9AOyqvgDsqr8A7KuAAOyrgQDsq4IA7KuDAOyrhADsq4UA7KuGAOyrhwDsq4gA7KuJAOyrigDsq4sA7KuMAOyrjQDsq44A7KuPAOyrkADsq5EA7KuSAOyrkwDsq5QA7KuVAOyrlgDsq5cA7KuYAOyrmQDsq5oA7KubAOyrnADsq50A7KueAOyrnwDsq6AA7KuhAOyrogDsq6MA7KukAOyrpQDsq6YA7KunAOyrqADsq6kA7KuqAOyrqwDsq6wA7KutAOyrrgDsq68A7KuwAOyrsQDsq7IA7KuzAOyrtADsq7UA7Ku2AOyrtwDsq7gA7Ku5AOyrugDsq7sA7Ku8AOyrvQDsq74A7Ku/AOysgADsrIEA7KyCAOysgwDsrIQA7KyFAOyshgDsrIcA7KyIAOysiQDsrIoA7KyLAOysjADsrI0A7KyOAOysjwDsrJAA7KyRAOyskgDsrJMA7KyUAOyslQDsrJYA7KyXAOysmADsrJkA7KyaAOysmwDsrJwA7KydAOysngDsrJ8A7KygAOysoQDsrKIA7KyjAOyspADsrKUA7KymAOyspwDsrKgA7KypAOysqgDsrKsA7KysAOysrQDsrK4A7KyvAOyssADsrLEA7KyyAOysswDsrLQA7Ky1AOystgDsrLcA7Ky4AOysuQDsrLoA7Ky7AOysvADsrL0A7Ky+AOysvwDsrYAA7K2BAOytggDsrYMA7K2EAOythQDsrYYA7K2HAOytiADsrYkA7K2KAOytiwDsrYwA7K2NAOytjgDsrY8A7K2QAOytkQDsrZIA7K2TAOytlADsrZUA7K2WAOytlwDsrZgA7K2ZAOytmgDsrZsA7K2cAOytnQDsrZ4A7K2fAOytoADsraEA7K2iAOytowDsraQA7K2lAOytpgDsracA7K2oAOytqQDsraoA7K2rAOytrADsra0A7K2uAOytrwDsrbAA7K2xAOytsgDsrbMA7K20AOyttQDsrbYA7K23AOytuADsrbkA7K26AOytuwDsrbwA7K29AOytvgDsrb8A7K6AAOyugQDsroIA7K6DAOyuhADsroUA7K6GAOyuhwDsrogA7K6JAOyuigDsrosA7K6MAOyujQDsro4A7K6PAOyukADsrpEA7K6SAOyukwDsrpQA7K6VAOyulgDsrpcA7K6YAOyumQDsrpoA7K6bAOyunADsrp0A7K6eAOyunwDsrqAA7K6hAOyuogDsrqMA7K6kAOyupQDsrqYA7K6nAOyuqADsrqkA7K6qAOyuqwDsrqwA7K6tAOyurgDsrq8A7K6wAOyusQDsrrIA7K6zAOyutADsrrUA7K62AOyutwDsrrgA7K65AOyuugDsrrsA7K68AOyuvQDsrr4A7K6/AOyvgADsr4EA7K+CAOyvgwDsr4QA7K+FAOyvhgDsr4cA7K+IAOyviQDsr4oA7K+LAOyvjADsr40A7K+OAOyvjwDsr5AA7K+RAOyvkgDsr5MA7K+UAOyvlQDsr5YA7K+XAOyvmADsr5kA7K+aAOyvmwDsr5wA7K+dAOyvngDsr58A7K+gAOyvoQDsr6IA7K+jAOyvpADsr6UA7K+mAOyvpwDsr6gA7K+pAOyvqgDsr6sA7K+sAOyvrQDsr64A7K+vAOyvsADsr7EA7K+yAOyvswDsr7QA7K+1AOyvtgDsr7cA7K+4AOyvuQDsr7oA7K+7AOyvvADsr70A7K++AOyvvwDssIAA7LCBAOywggDssIMA7LCEAOywhQDssIYA7LCHAOywiADssIkA7LCKAOywiwDssIwA7LCNAOywjgDssI8A7LCQAOywkQDssJIA7LCTAOywlADssJUA7LCWAOywlwDssJgA7LCZAOywmgDssJsA7LCcAOywnQDssJ4A7LCfAOywoADssKEA7LCiAOywowDssKQA7LClAOywpgDssKcA7LCoAOywqQDssKoA7LCrAOywrADssK0A7LCuAOywrwDssLAA7LCxAOywsgDssLMA7LC0AOywtQDssLYA7LC3AOywuADssLjqs6AA7LC5AOywugDssLsA7LC8AOywvQDssL4A7LC/AOyxgADssYEA7LGCAOyxgwDssYQA7LGFAOyxhgDssYcA7LGIAOyxiQDssYoA7LGLAOyxjADssY0A7LGOAOyxjwDssZAA7LGRAOyxkgDssZMA7LGUAOyxlQDssZYA7LGXAOyxmADssZkA7LGaAOyxmwDssZwA7LGdAOyxngDssZ8A7LGgAOyxoQDssaIA7LGjAOyxpADssaUA7LGmAOyxpwDssagA7LGpAOyxqgDssasA7LGsAOyxrQDssa4A7LGvAOyxsADssbEA7LGyAOyxswDssbQA7LG1AOyxtgDssbcA7LG4AOyxuQDssboA7LG7AOyxvADssb0A7LG+AOyxvwDssoAA7LKBAOyyggDssoMA7LKEAOyyhQDssoYA7LKHAOyyiADssokA7LKKAOyyiwDssowA7LKNAOyyjgDsso8A7LKQAOyykQDsspIA7LKTAOyylADsspUA7LKWAOyylwDsspgA7LKZAOyymgDsspsA7LKcAOyynQDssp4A7LKfAOyyoADssqEA7LKiAOyyowDssqQA7LKlAOyypgDssqcA7LKoAOyyqQDssqoA7LKrAOyyrADssq0A7LKuAOyyrwDssrAA7LKxAOyysgDssrMA7LK0AOyytQDssrYA7LK3AOyyuADssrkA7LK6AOyyuwDssrwA7LK9AOyyvgDssr8A7LOAAOyzgQDss4IA7LODAOyzhADss4UA7LOGAOyzhwDss4gA7LOJAOyzigDss4sA7LOMAOyzjQDss44A7LOPAOyzkADss5EA7LOSAOyzkwDss5QA7LOVAOyzlgDss5cA7LOYAOyzmQDss5oA7LObAOyznADss50A7LOeAOyznwDss6AA7LOhAOyzogDss6MA7LOkAOyzpQDss6YA7LOnAOyzqADss6kA7LOqAOyzqwDss6wA7LOtAOyzrgDss68A7LOwAOyzsQDss7IA7LOzAOyztADss7UA7LO2AOyztwDss7gA7LO5AOyzugDss7sA7LO8AOyzvQDss74A7LO/AOy0gADstIEA7LSCAOy0gwDstIQA7LSFAOy0hgDstIcA7LSIAOy0iQDstIoA7LSLAOy0jADstI0A7LSOAOy0jwDstJAA7LSRAOy0kgDstJMA7LSUAOy0lQDstJYA7LSXAOy0mADstJkA7LSaAOy0mwDstJwA7LSdAOy0ngDstJ8A7LSgAOy0oQDstKIA7LSjAOy0pADstKUA7LSmAOy0pwDstKgA7LSpAOy0qgDstKsA7LSsAOy0rQDstK4A7LSvAOy0sADstLEA7LSyAOy0swDstLQA7LS1AOy0tgDstLcA7LS4AOy0uQDstLoA7LS7AOy0vADstL0A7LS+AOy0vwDstYAA7LWBAOy1ggDstYMA7LWEAOy1hQDstYYA7LWHAOy1iADstYkA7LWKAOy1iwDstYwA7LWNAOy1jgDstY8A7LWQAOy1kQDstZIA7LWTAOy1lADstZUA7LWWAOy1lwDstZgA7LWZAOy1mgDstZsA7LWcAOy1nQDstZ4A7LWfAOy1oADstaEA7LWiAOy1owDstaQA7LWlAOy1pgDstacA7LWoAOy1qQDstaoA7LWrAOy1rADsta0A7LWuAOy1rwDstbAA7LWxAOy1sgDstbMA7LW0AOy1tQDstbYA7LW3AOy1uADstbkA7LW6AOy1uwDstbwA7LW9AOy1vgDstb8A7LaAAOy2gQDstoIA7LaDAOy2hADstoUA7LaGAOy2hwDstogA7LaJAOy2igDstosA7LaMAOy2jQDsto4A7LaPAOy2kADstpEA7LaSAOy2kwDstpQA7LaVAOy2lgDstpcA7LaYAOy2mQDstpoA7LabAOy2nADstp0A7LaeAOy2nwDstqAA7LahAOy2ogDstqMA7LakAOy2pQDstqYA7LanAOy2qADstqkA7LaqAOy2qwDstqwA7LatAOy2rgDstq8A7LawAOy2sQDstrIA7LazAOy2tADstrUA7La2AOy2twDstrgA7La5AOy2ugDstrsA7La8AOy2vQDstr4A7La/AOy3gADst4EA7LeCAOy3gwDst4QA7LeFAOy3hgDst4cA7LeIAOy3iQDst4oA7LeLAOy3jADst40A7LeOAOy3jwDst5AA7LeRAOy3kgDst5MA7LeUAOy3lQDst5YA7LeXAOy3mADst5kA7LeaAOy3mwDst5wA7LedAOy3ngDst58A7LegAOy3oQDst6IA7LejAOy3pADst6UA7LemAOy3pwDst6gA7LepAOy3qgDst6sA7LesAOy3rQDst64A7LevAOy3sADst7EA7LeyAOy3swDst7QA7Le1AOy3tgDst7cA7Le4AOy3uQDst7oA7Le7AOy3vADst70A7Le+AOy3vwDsuIAA7LiBAOy4ggDsuIMA7LiEAOy4hQDsuIYA7LiHAOy4iADsuIkA7LiKAOy4iwDsuIwA7LiNAOy4jgDsuI8A7LiQAOy4kQDsuJIA7LiTAOy4lADsuJUA7LiWAOy4lwDsuJgA7LiZAOy4mgDsuJsA7LicAOy4nQDsuJ4A7LifAOy4oADsuKEA7LiiAOy4owDsuKQA7LilAOy4pgDsuKcA7LioAOy4qQDsuKoA7LirAOy4rADsuK0A7LiuAOy4rwDsuLAA7LixAOy4sgDsuLMA7Li0AOy4tQDsuLYA7Li3AOy4uADsuLkA7Li6AOy4uwDsuLwA7Li9AOy4vgDsuL8A7LmAAOy5gQDsuYIA7LmDAOy5hADsuYUA7LmGAOy5hwDsuYgA7LmJAOy5igDsuYsA7LmMAOy5jQDsuY4A7LmPAOy5kADsuZEA7LmSAOy5kwDsuZQA7LmVAOy5lgDsuZcA7LmYAOy5mQDsuZoA7LmbAOy5nADsuZ0A7LmeAOy5nwDsuaAA7LmhAOy5ogDsuaMA7LmkAOy5pQDsuaYA7LmnAOy5qADsuakA7LmqAOy5qwDsuawA7LmtAOy5rgDsua8A7LmwAOy5sQDsubIA7LmzAOy5tADsubUA7Lm2AOy5twDsubgA7Lm5AOy5ugDsubsA7Lm8AOy5vQDsub4A7Lm/AOy6gADsuoEA7LqCAOy6gwDsuoQA7LqFAOy6hgDsuocA7LqIAOy6iQDsuooA7LqLAOy6jADsuo0A7LqOAOy6jwDsupAA7LqRAOy6kgDsupMA7LqUAOy6lQDsupYA7LqXAOy6mADsupkA7LqaAOy6mwDsupwA7LqdAOy6ngDsup8A7LqgAOy6oQDsuqIA7LqjAOy6pADsuqUA7LqmAOy6pwDsuqgA7LqpAOy6qgDsuqsA7LqsAOy6rQDsuq4A7LqvAOy6sADsurEA7LqyAOy6swDsurQA7Lq1AOy6tgDsurcA7Lq4AOy6uQDsuroA7Lq7AOy6vADsur0A7Lq+AOy6vwDsu4AA7LuBAOy7ggDsu4MA7LuEAOy7hQDsu4YA7LuHAOy7iADsu4kA7LuKAOy7iwDsu4wA7LuNAOy7jgDsu48A7LuQAOy7kQDsu5IA7LuTAOy7lADsu5UA7LuWAOy7lwDsu5gA7LuZAOy7mgDsu5sA7LucAOy7nQDsu54A7LufAOy7oADsu6EA7LuiAOy7owDsu6QA7LulAOy7pgDsu6cA7LuoAOy7qQDsu6oA7LurAOy7rADsu60A7LuuAOy7rwDsu7AA7LuxAOy7sgDsu7MA7Lu0AOy7tQDsu7YA7Lu3AOy7uADsu7kA7Lu6AOy7uwDsu7wA7Lu9AOy7vgDsu78A7LyAAOy8gQDsvIIA7LyDAOy8hADsvIUA7LyGAOy8hwDsvIgA7LyJAOy8igDsvIsA7LyMAOy8jQDsvI4A7LyPAOy8kADsvJEA7LySAOy8kwDsvJQA7LyVAOy8lgDsvJcA7LyYAOy8mQDsvJoA7LybAOy8nADsvJ0A7LyeAOy8nwDsvKAA7LyhAOy8ogDsvKMA7LykAOy8pQDsvKYA7LynAOy8qADsvKkA7LyqAOy8qwDsvKwA7LytAOy8rgDsvK8A7LywAOy8sQDsvLIA7LyzAOy8tADsvLUA7Ly2AOy8twDsvLgA7Ly5AOy8ugDsvLsA7Ly8AOy8vQDsvL4A7Ly/AOy9gADsvYEA7L2CAOy9gwDsvYQA7L2FAOy9hgDsvYcA7L2IAOy9iQDsvYoA7L2LAOy9jADsvY0A7L2OAOy9jwDsvZAA7L2RAOy9kgDsvZMA7L2UAOy9lQDsvZYA7L2XAOy9mADsvZkA7L2aAOy9mwDsvZwA7L2dAOy9ngDsvZ8A7L2gAOy9oQDsvaIA7L2jAOy9pADsvaUA7L2mAOy9pwDsvagA7L2pAOy9qgDsvasA7L2sAOy9rQDsva4A7L2vAOy9sADsvbEA7L2yAOy9swDsvbQA7L21AOy9tgDsvbcA7L24AOy9uQDsvboA7L27AOy9vADsvb0A7L2+AOy9vwDsvoAA7L6BAOy+ggDsvoMA7L6EAOy+hQDsvoYA7L6HAOy+iADsvokA7L6KAOy+iwDsvowA7L6NAOy+jgDsvo8A7L6QAOy+kQDsvpIA7L6TAOy+lADsvpUA7L6WAOy+lwDsvpgA7L6ZAOy+mgDsvpsA7L6cAOy+nQDsvp4A7L6fAOy+oADsvqEA7L6iAOy+owDsvqQA7L6lAOy+pgDsvqcA7L6oAOy+qQDsvqoA7L6rAOy+rADsvq0A7L6uAOy+rwDsvrAA7L6xAOy+sgDsvrMA7L60AOy+tQDsvrYA7L63AOy+uADsvrkA7L66AOy+uwDsvrwA7L69AOy+vgDsvr8A7L+AAOy/gQDsv4IA7L+DAOy/hADsv4UA7L+GAOy/hwDsv4gA7L+JAOy/igDsv4sA7L+MAOy/jQDsv44A7L+PAOy/kADsv5EA7L+SAOy/kwDsv5QA7L+VAOy/lgDsv5cA7L+YAOy/mQDsv5oA7L+bAOy/nADsv50A7L+eAOy/nwDsv6AA7L+hAOy/ogDsv6MA7L+kAOy/pQDsv6YA7L+nAOy/qADsv6kA7L+qAOy/qwDsv6wA7L+tAOy/rgDsv68A7L+wAOy/sQDsv7IA7L+zAOy/tADsv7UA7L+2AOy/twDsv7gA7L+5AOy/ugDsv7sA7L+8AOy/vQDsv74A7L+/AO2AgADtgIEA7YCCAO2AgwDtgIQA7YCFAO2AhgDtgIcA7YCIAO2AiQDtgIoA7YCLAO2AjADtgI0A7YCOAO2AjwDtgJAA7YCRAO2AkgDtgJMA7YCUAO2AlQDtgJYA7YCXAO2AmADtgJkA7YCaAO2AmwDtgJwA7YCdAO2AngDtgJ8A7YCgAO2AoQDtgKIA7YCjAO2ApADtgKUA7YCmAO2ApwDtgKgA7YCpAO2AqgDtgKsA7YCsAO2ArQDtgK4A7YCvAO2AsADtgLEA7YCyAO2AswDtgLQA7YC1AO2AtgDtgLcA7YC4AO2AuQDtgLoA7YC7AO2AvADtgL0A7YC+AO2AvwDtgYAA7YGBAO2BggDtgYMA7YGEAO2BhQDtgYYA7YGHAO2BiADtgYkA7YGKAO2BiwDtgYwA7YGNAO2BjgDtgY8A7YGQAO2BkQDtgZIA7YGTAO2BlADtgZUA7YGWAO2BlwDtgZgA7YGZAO2BmgDtgZsA7YGcAO2BnQDtgZ4A7YGfAO2BoADtgaEA7YGiAO2BowDtgaQA7YGlAO2BpgDtgacA7YGoAO2BqQDtgaoA7YGrAO2BrADtga0A7YGuAO2BrwDtgbAA7YGxAO2BsgDtgbMA7YG0AO2BtQDtgbYA7YG3AO2BuADtgbkA7YG6AO2BuwDtgbwA7YG9AO2BvgDtgb8A7YKAAO2CgQDtgoIA7YKDAO2ChADtgoUA7YKGAO2ChwDtgogA7YKJAO2CigDtgosA7YKMAO2CjQDtgo4A7YKPAO2CkADtgpEA7YKSAO2CkwDtgpQA7YKVAO2ClgDtgpcA7YKYAO2CmQDtgpoA7YKbAO2CnADtgp0A7YKeAO2CnwDtgqAA7YKhAO2CogDtgqMA7YKkAO2CpQDtgqYA7YKnAO2CqADtgqkA7YKqAO2CqwDtgqwA7YKtAO2CrgDtgq8A7YKwAO2CsQDtgrIA7YKzAO2CtADtgrUA7YK2AO2CtwDtgrgA7YK5AO2CugDtgrsA7YK8AO2CvQDtgr4A7YK/AO2DgADtg4EA7YOCAO2DgwDtg4QA7YOFAO2DhgDtg4cA7YOIAO2DiQDtg4oA7YOLAO2DjADtg40A7YOOAO2DjwDtg5AA7YORAO2DkgDtg5MA7YOUAO2DlQDtg5YA7YOXAO2DmADtg5kA7YOaAO2DmwDtg5wA7YOdAO2DngDtg58A7YOgAO2DoQDtg6IA7YOjAO2DpADtg6UA7YOmAO2DpwDtg6gA7YOpAO2DqgDtg6sA7YOsAO2DrQDtg64A7YOvAO2DsADtg7EA7YOyAO2DswDtg7QA7YO1AO2DtgDtg7cA7YO4AO2DuQDtg7oA7YO7AO2DvADtg70A7YO+AO2DvwDthIAA7YSBAO2EggDthIMA7YSEAO2EhQDthIYA7YSHAO2EiADthIkA7YSKAO2EiwDthIwA7YSNAO2EjgDthI8A7YSQAO2EkQDthJIA7YSTAO2ElADthJUA7YSWAO2ElwDthJgA7YSZAO2EmgDthJsA7YScAO2EnQDthJ4A7YSfAO2EoADthKEA7YSiAO2EowDthKQA7YSlAO2EpgDthKcA7YSoAO2EqQDthKoA7YSrAO2ErADthK0A7YSuAO2ErwDthLAA7YSxAO2EsgDthLMA7YS0AO2EtQDthLYA7YS3AO2EuADthLkA7YS6AO2EuwDthLwA7YS9AO2EvgDthL8A7YWAAO2FgQDthYIA7YWDAO2FhADthYUA7YWGAO2FhwDthYgA7YWJAO2FigDthYsA7YWMAO2FjQDthY4A7YWPAO2FkADthZEA7YWSAO2FkwDthZQA7YWVAO2FlgDthZcA7YWYAO2FmQDthZoA7YWbAO2FnADthZ0A7YWeAO2FnwDthaAA7YWhAO2FogDthaMA7YWkAO2FpQDthaYA7YWnAO2FqADthakA7YWqAO2FqwDthawA7YWtAO2FrgDtha8A7YWwAO2FsQDthbIA7YWzAO2FtADthbUA7YW2AO2FtwDthbgA7YW5AO2FugDthbsA7YW8AO2FvQDthb4A7YW/AO2GgADthoEA7YaCAO2GgwDthoQA7YaFAO2GhgDthocA7YaIAO2GiQDthooA7YaLAO2GjADtho0A7YaOAO2GjwDthpAA7YaRAO2GkgDthpMA7YaUAO2GlQDthpYA7YaXAO2GmADthpkA7YaaAO2GmwDthpwA7YadAO2GngDthp8A7YagAO2GoQDthqIA7YajAO2GpADthqUA7YamAO2GpwDthqgA7YapAO2GqgDthqsA7YasAO2GrQDthq4A7YavAO2GsADthrEA7YayAO2GswDthrQA7Ya1AO2GtgDthrcA7Ya4AO2GuQDthroA7Ya7AO2GvADthr0A7Ya+AO2GvwDth4AA7YeBAO2HggDth4MA7YeEAO2HhQDth4YA7YeHAO2HiADth4kA7YeKAO2HiwDth4wA7YeNAO2HjgDth48A7YeQAO2HkQDth5IA7YeTAO2HlADth5UA7YeWAO2HlwDth5gA7YeZAO2HmgDth5sA7YecAO2HnQDth54A7YefAO2HoADth6EA7YeiAO2HowDth6QA7YelAO2HpgDth6cA7YeoAO2HqQDth6oA7YerAO2HrADth60A7YeuAO2HrwDth7AA7YexAO2HsgDth7MA7Ye0AO2HtQDth7YA7Ye3AO2HuADth7kA7Ye6AO2HuwDth7wA7Ye9AO2HvgDth78A7YiAAO2IgQDtiIIA7YiDAO2IhADtiIUA7YiGAO2IhwDtiIgA7YiJAO2IigDtiIsA7YiMAO2IjQDtiI4A7YiPAO2IkADtiJEA7YiSAO2IkwDtiJQA7YiVAO2IlgDtiJcA7YiYAO2ImQDtiJoA7YibAO2InADtiJ0A7YieAO2InwDtiKAA7YihAO2IogDtiKMA7YikAO2IpQDtiKYA7YinAO2IqADtiKkA7YiqAO2IqwDtiKwA7YitAO2IrgDtiK8A7YiwAO2IsQDtiLIA7YizAO2ItADtiLUA7Yi2AO2ItwDtiLgA7Yi5AO2IugDtiLsA7Yi8AO2IvQDtiL4A7Yi/AO2JgADtiYEA7YmCAO2JgwDtiYQA7YmFAO2JhgDtiYcA7YmIAO2JiQDtiYoA7YmLAO2JjADtiY0A7YmOAO2JjwDtiZAA7YmRAO2JkgDtiZMA7YmUAO2JlQDtiZYA7YmXAO2JmADtiZkA7YmaAO2JmwDtiZwA7YmdAO2JngDtiZ8A7YmgAO2JoQDtiaIA7YmjAO2JpADtiaUA7YmmAO2JpwDtiagA7YmpAO2JqgDtiasA7YmsAO2JrQDtia4A7YmvAO2JsADtibEA7YmyAO2JswDtibQA7Ym1AO2JtgDtibcA7Ym4AO2JuQDtiboA7Ym7AO2JvADtib0A7Ym+AO2JvwDtioAA7YqBAO2KggDtioMA7YqEAO2KhQDtioYA7YqHAO2KiADtiokA7YqKAO2KiwDtiowA7YqNAO2KjgDtio8A7YqQAO2KkQDtipIA7YqTAO2KlADtipUA7YqWAO2KlwDtipgA7YqZAO2KmgDtipsA7YqcAO2KnQDtip4A7YqfAO2KoADtiqEA7YqiAO2KowDtiqQA7YqlAO2KpgDtiqcA7YqoAO2KqQDtiqoA7YqrAO2KrADtiq0A7YquAO2KrwDtirAA7YqxAO2KsgDtirMA7Yq0AO2KtQDtirYA7Yq3AO2KuADtirkA7Yq6AO2KuwDtirwA7Yq9AO2KvgDtir8A7YuAAO2LgQDti4IA7YuDAO2LhADti4UA7YuGAO2LhwDti4gA7YuJAO2LigDti4sA7YuMAO2LjQDti44A7YuPAO2LkADti5EA7YuSAO2LkwDti5QA7YuVAO2LlgDti5cA7YuYAO2LmQDti5oA7YubAO2LnADti50A7YueAO2LnwDti6AA7YuhAO2LogDti6MA7YukAO2LpQDti6YA7YunAO2LqADti6kA7YuqAO2LqwDti6wA7YutAO2LrgDti68A7YuwAO2LsQDti7IA7YuzAO2LtADti7UA7Yu2AO2LtwDti7gA7Yu5AO2LugDti7sA7Yu8AO2LvQDti74A7Yu/AO2MgADtjIEA7YyCAO2MgwDtjIQA7YyFAO2MhgDtjIcA7YyIAO2MiQDtjIoA7YyLAO2MjADtjI0A7YyOAO2MjwDtjJAA7YyRAO2MkgDtjJMA7YyUAO2MlQDtjJYA7YyXAO2MmADtjJkA7YyaAO2MmwDtjJwA7YydAO2MngDtjJ8A7YygAO2MoQDtjKIA7YyjAO2MpADtjKUA7YymAO2MpwDtjKgA7YypAO2MqgDtjKsA7YysAO2MrQDtjK4A7YyvAO2MsADtjLEA7YyyAO2MswDtjLQA7Yy1AO2MtgDtjLcA7Yy4AO2MuQDtjLoA7Yy7AO2MvADtjL0A7Yy+AO2MvwDtjYAA7Y2BAO2NggDtjYMA7Y2EAO2NhQDtjYYA7Y2HAO2NiADtjYkA7Y2KAO2NiwDtjYwA7Y2NAO2NjgDtjY8A7Y2QAO2NkQDtjZIA7Y2TAO2NlADtjZUA7Y2WAO2NlwDtjZgA7Y2ZAO2NmgDtjZsA7Y2cAO2NnQDtjZ4A7Y2fAO2NoADtjaEA7Y2iAO2NowDtjaQA7Y2lAO2NpgDtjacA7Y2oAO2NqQDtjaoA7Y2rAO2NrADtja0A7Y2uAO2NrwDtjbAA7Y2xAO2NsgDtjbMA7Y20AO2NtQDtjbYA7Y23AO2NuADtjbkA7Y26AO2NuwDtjbwA7Y29AO2NvgDtjb8A7Y6AAO2OgQDtjoIA7Y6DAO2OhADtjoUA7Y6GAO2OhwDtjogA7Y6JAO2OigDtjosA7Y6MAO2OjQDtjo4A7Y6PAO2OkADtjpEA7Y6SAO2OkwDtjpQA7Y6VAO2OlgDtjpcA7Y6YAO2OmQDtjpoA7Y6bAO2OnADtjp0A7Y6eAO2OnwDtjqAA7Y6hAO2OogDtjqMA7Y6kAO2OpQDtjqYA7Y6nAO2OqADtjqkA7Y6qAO2OqwDtjqwA7Y6tAO2OrgDtjq8A7Y6wAO2OsQDtjrIA7Y6zAO2OtADtjrUA7Y62AO2OtwDtjrgA7Y65AO2OugDtjrsA7Y68AO2OvQDtjr4A7Y6/AO2PgADtj4EA7Y+CAO2PgwDtj4QA7Y+FAO2PhgDtj4cA7Y+IAO2PiQDtj4oA7Y+LAO2PjADtj40A7Y+OAO2PjwDtj5AA7Y+RAO2PkgDtj5MA7Y+UAO2PlQDtj5YA7Y+XAO2PmADtj5kA7Y+aAO2PmwDtj5wA7Y+dAO2PngDtj58A7Y+gAO2PoQDtj6IA7Y+jAO2PpADtj6UA7Y+mAO2PpwDtj6gA7Y+pAO2PqgDtj6sA7Y+sAO2PrQDtj64A7Y+vAO2PsADtj7EA7Y+yAO2PswDtj7QA7Y+1AO2PtgDtj7cA7Y+4AO2PuQDtj7oA7Y+7AO2PvADtj70A7Y++AO2PvwDtkIAA7ZCBAO2QggDtkIMA7ZCEAO2QhQDtkIYA7ZCHAO2QiADtkIkA7ZCKAO2QiwDtkIwA7ZCNAO2QjgDtkI8A7ZCQAO2QkQDtkJIA7ZCTAO2QlADtkJUA7ZCWAO2QlwDtkJgA7ZCZAO2QmgDtkJsA7ZCcAO2QnQDtkJ4A7ZCfAO2QoADtkKEA7ZCiAO2QowDtkKQA7ZClAO2QpgDtkKcA7ZCoAO2QqQDtkKoA7ZCrAO2QrADtkK0A7ZCuAO2QrwDtkLAA7ZCxAO2QsgDtkLMA7ZC0AO2QtQDtkLYA7ZC3AO2QuADtkLkA7ZC6AO2QuwDtkLwA7ZC9AO2QvgDtkL8A7ZGAAO2RgQDtkYIA7ZGDAO2RhADtkYUA7ZGGAO2RhwDtkYgA7ZGJAO2RigDtkYsA7ZGMAO2RjQDtkY4A7ZGPAO2RkADtkZEA7ZGSAO2RkwDtkZQA7ZGVAO2RlgDtkZcA7ZGYAO2RmQDtkZoA7ZGbAO2RnADtkZ0A7ZGeAO2RnwDtkaAA7ZGhAO2RogDtkaMA7ZGkAO2RpQDtkaYA7ZGnAO2RqADtkakA7ZGqAO2RqwDtkawA7ZGtAO2RrgDtka8A7ZGwAO2RsQDtkbIA7ZGzAO2RtADtkbUA7ZG2AO2RtwDtkbgA7ZG5AO2RugDtkbsA7ZG8AO2RvQDtkb4A7ZG/AO2SgADtkoEA7ZKCAO2SgwDtkoQA7ZKFAO2ShgDtkocA7ZKIAO2SiQDtkooA7ZKLAO2SjADtko0A7ZKOAO2SjwDtkpAA7ZKRAO2SkgDtkpMA7ZKUAO2SlQDtkpYA7ZKXAO2SmADtkpkA7ZKaAO2SmwDtkpwA7ZKdAO2SngDtkp8A7ZKgAO2SoQDtkqIA7ZKjAO2SpADtkqUA7ZKmAO2SpwDtkqgA7ZKpAO2SqgDtkqsA7ZKsAO2SrQDtkq4A7ZKvAO2SsADtkrEA7ZKyAO2SswDtkrQA7ZK1AO2StgDtkrcA7ZK4AO2SuQDtkroA7ZK7AO2SvADtkr0A7ZK+AO2SvwDtk4AA7ZOBAO2TggDtk4MA7ZOEAO2ThQDtk4YA7ZOHAO2TiADtk4kA7ZOKAO2TiwDtk4wA7ZONAO2TjgDtk48A7ZOQAO2TkQDtk5IA7ZOTAO2TlADtk5UA7ZOWAO2TlwDtk5gA7ZOZAO2TmgDtk5sA7ZOcAO2TnQDtk54A7ZOfAO2ToADtk6EA7ZOiAO2TowDtk6QA7ZOlAO2TpgDtk6cA7ZOoAO2TqQDtk6oA7ZOrAO2TrADtk60A7ZOuAO2TrwDtk7AA7ZOxAO2TsgDtk7MA7ZO0AO2TtQDtk7YA7ZO3AO2TuADtk7kA7ZO6AO2TuwDtk7wA7ZO9AO2TvgDtk78A7ZSAAO2UgQDtlIIA7ZSDAO2UhADtlIUA7ZSGAO2UhwDtlIgA7ZSJAO2UigDtlIsA7ZSMAO2UjQDtlI4A7ZSPAO2UkADtlJEA7ZSSAO2UkwDtlJQA7ZSVAO2UlgDtlJcA7ZSYAO2UmQDtlJoA7ZSbAO2UnADtlJ0A7ZSeAO2UnwDtlKAA7ZShAO2UogDtlKMA7ZSkAO2UpQDtlKYA7ZSnAO2UqADtlKkA7ZSqAO2UqwDtlKwA7ZStAO2UrgDtlK8A7ZSwAO2UsQDtlLIA7ZSzAO2UtADtlLUA7ZS2AO2UtwDtlLgA7ZS5AO2UugDtlLsA7ZS8AO2UvQDtlL4A7ZS/AO2VgADtlYEA7ZWCAO2VgwDtlYQA7ZWFAO2VhgDtlYcA7ZWIAO2ViQDtlYoA7ZWLAO2VjADtlY0A7ZWOAO2VjwDtlZAA7ZWRAO2VkgDtlZMA7ZWUAO2VlQDtlZYA7ZWXAO2VmADtlZkA7ZWaAO2VmwDtlZwA7ZWdAO2VngDtlZ8A7ZWgAO2VoQDtlaIA7ZWjAO2VpADtlaUA7ZWmAO2VpwDtlagA7ZWpAO2VqgDtlasA7ZWsAO2VrQDtla4A7ZWvAO2VsADtlbEA7ZWyAO2VswDtlbQA7ZW1AO2VtgDtlbcA7ZW4AO2VuQDtlboA7ZW7AO2VvADtlb0A7ZW+AO2VvwDtloAA7ZaBAO2WggDtloMA7ZaEAO2WhQDtloYA7ZaHAO2WiADtlokA7ZaKAO2WiwDtlowA7ZaNAO2WjgDtlo8A7ZaQAO2WkQDtlpIA7ZaTAO2WlADtlpUA7ZaWAO2WlwDtlpgA7ZaZAO2WmgDtlpsA7ZacAO2WnQDtlp4A7ZafAO2WoADtlqEA7ZaiAO2WowDtlqQA7ZalAO2WpgDtlqcA7ZaoAO2WqQDtlqoA7ZarAO2WrADtlq0A7ZauAO2WrwDtlrAA7ZaxAO2WsgDtlrMA7Za0AO2WtQDtlrYA7Za3AO2WuADtlrkA7Za6AO2WuwDtlrwA7Za9AO2WvgDtlr8A7ZeAAO2XgQDtl4IA7ZeDAO2XhADtl4UA7ZeGAO2XhwDtl4gA7ZeJAO2XigDtl4sA7ZeMAO2XjQDtl44A7ZePAO2XkADtl5EA7ZeSAO2XkwDtl5QA7ZeVAO2XlgDtl5cA7ZeYAO2XmQDtl5oA7ZebAO2XnADtl50A7ZeeAO2XnwDtl6AA7ZehAO2XogDtl6MA7ZekAO2XpQDtl6YA7ZenAO2XqADtl6kA7ZeqAO2XqwDtl6wA7ZetAO2XrgDtl68A7ZewAO2XsQDtl7IA7ZezAO2XtADtl7UA7Ze2AO2XtwDtl7gA7Ze5AO2XugDtl7sA7Ze8AO2XvQDtl74A7Ze/AO2YgADtmIEA7ZiCAO2YgwDtmIQA7ZiFAO2YhgDtmIcA7ZiIAO2YiQDtmIoA7ZiLAO2YjADtmI0A7ZiOAO2YjwDtmJAA7ZiRAO2YkgDtmJMA7ZiUAO2YlQDtmJYA7ZiXAO2YmADtmJkA7ZiaAO2YmwDtmJwA7ZidAO2YngDtmJ8A7ZigAO2YoQDtmKIA7ZijAO2YpADtmKUA7ZimAO2YpwDtmKgA7ZipAO2YqgDtmKsA7ZisAO2YrQDtmK4A7ZivAO2YsADtmLEA7ZiyAO2YswDtmLQA7Zi1AO2YtgDtmLcA7Zi4AO2YuQDtmLoA7Zi7AO2YvADtmL0A7Zi+AO2YvwDtmYAA7ZmBAO2ZggDtmYMA7ZmEAO2ZhQDtmYYA7ZmHAO2ZiADtmYkA7ZmKAO2ZiwDtmYwA7ZmNAO2ZjgDtmY8A7ZmQAO2ZkQDtmZIA7ZmTAO2ZlADtmZUA7ZmWAO2ZlwDtmZgA7ZmZAO2ZmgDtmZsA7ZmcAO2ZnQDtmZ4A7ZmfAO2ZoADtmaEA7ZmiAO2ZowDtmaQA7ZmlAO2ZpgDtmacA7ZmoAO2ZqQDtmaoA7ZmrAO2ZrADtma0A7ZmuAO2ZrwDtmbAA7ZmxAO2ZsgDtmbMA7Zm0AO2ZtQDtmbYA7Zm3AO2ZuADtmbkA7Zm6AO2ZuwDtmbwA7Zm9AO2ZvgDtmb8A7ZqAAO2agQDtmoIA7ZqDAO2ahADtmoUA7ZqGAO2ahwDtmogA7ZqJAO2aigDtmosA7ZqMAO2ajQDtmo4A7ZqPAO2akADtmpEA7ZqSAO2akwDtmpQA7ZqVAO2algDtmpcA7ZqYAO2amQDtmpoA7ZqbAO2anADtmp0A7ZqeAO2anwDtmqAA7ZqhAO2aogDtmqMA7ZqkAO2apQDtmqYA7ZqnAO2aqADtmqkA7ZqqAO2aqwDtmqwA7ZqtAO2argDtmq8A7ZqwAO2asQDtmrIA7ZqzAO2atADtmrUA7Zq2AO2atwDtmrgA7Zq5AO2augDtmrsA7Zq8AO2avQDtmr4A7Zq/AO2bgADtm4EA7ZuCAO2bgwDtm4QA7ZuFAO2bhgDtm4cA7ZuIAO2biQDtm4oA7ZuLAO2bjADtm40A7ZuOAO2bjwDtm5AA7ZuRAO2bkgDtm5MA7ZuUAO2blQDtm5YA7ZuXAO2bmADtm5kA7ZuaAO2bmwDtm5wA7ZudAO2bngDtm58A7ZugAO2boQDtm6IA7ZujAO2bpADtm6UA7ZumAO2bpwDtm6gA7ZupAO2bqgDtm6sA7ZusAO2brQDtm64A7ZuvAO2bsADtm7EA7ZuyAO2bswDtm7QA7Zu1AO2btgDtm7cA7Zu4AO2buQDtm7oA7Zu7AO2bvADtm70A7Zu+AO2bvwDtnIAA7ZyBAO2cggDtnIMA7ZyEAO2chQDtnIYA7ZyHAO2ciADtnIkA7ZyKAO2ciwDtnIwA7ZyNAO2cjgDtnI8A7ZyQAO2ckQDtnJIA7ZyTAO2clADtnJUA7ZyWAO2clwDtnJgA7ZyZAO2cmgDtnJsA7ZycAO2cnQDtnJ4A7ZyfAO2coADtnKEA7ZyiAO2cowDtnKQA7ZylAO2cpgDtnKcA7ZyoAO2cqQDtnKoA7ZyrAO2crADtnK0A7ZyuAO2crwDtnLAA7ZyxAO2csgDtnLMA7Zy0AO2ctQDtnLYA7Zy3AO2cuADtnLkA7Zy6AO2cuwDtnLwA7Zy9AO2cvgDtnL8A7Z2AAO2dgQDtnYIA7Z2DAO2dhADtnYUA7Z2GAO2dhwDtnYgA7Z2JAO2digDtnYsA7Z2MAO2djQDtnY4A7Z2PAO2dkADtnZEA7Z2SAO2dkwDtnZQA7Z2VAO2dlgDtnZcA7Z2YAO2dmQDtnZoA7Z2bAO2dnADtnZ0A7Z2eAO2dnwDtnaAA7Z2hAO2dogDtnaMA7Z2kAO2dpQDtnaYA7Z2nAO2dqADtnakA7Z2qAO2dqwDtnawA7Z2tAO2drgDtna8A7Z2wAO2dsQDtnbIA7Z2zAO2dtADtnbUA7Z22AO2dtwDtnbgA7Z25AO2dugDtnbsA7Z28AO2dvQDtnb4A7Z2/AO2egADtnoEA7Z6CAO2egwDtnoQA7Z6FAO2ehgDtnocA7Z6IAO2eiQDtnooA7Z6LAO2ejADtno0A7Z6OAO2ejwDtnpAA7Z6RAO2ekgDtnpMA7Z6UAO2elQDtnpYA7Z6XAO2emADtnpkA7Z6aAO2emwDtnpwA7Z6dAO2engDtnp8A7Z6gAO2eoQDtnqIA7Z6jAPCRgpoA8JGCnADwkYKrAPCRhK4A8JGErwDwkY2LAPCRjYwA8JGSuwDwkZK8APCRkr4A8JGWugDwkZa7APCdhZfwnYWlAPCdhZjwnYWlAPCdhZjwnYWl8J2FrgDwnYWY8J2FpfCdha8A8J2FmPCdhaXwnYWwAPCdhZjwnYWl8J2FsQDwnYWY8J2FpfCdhbIA8J2GufCdhaUA8J2GufCdhaXwnYWuAPCdhrnwnYWl8J2FrwDwnYa68J2FpQDwnYa68J2FpfCdha4A8J2GuvCdhaXwnYWvAPCghKIA8KCUnADwoJSlAPCglYsA8KCYugDwoKCEAPCgo54A8KCorADwoK2jAPChk6QA8KGaqADwoZuqAPChp4gA8KGsmADwobSLAPCht6QA8KG3pgDwooaDAPCihp8A8KKMsQDwopuUAPCioYQA8KKhigDwoqyMAPCir7EA8KOAigDwo4q4APCjjZ8A8KOOkwDwo46cAPCjj4MA8KOPlQDwo5GtAPCjmqMA8KOipwDwo6qNAPCjq7oA8KOyvADwo7SeAPCju5EA8KO9ngDwo76OAPCkiaMA8KSLrgDwpI6rAPCkmIgA8KSctQDwpKCUAPCksLYA8KSykgDwpL6hAPCkvrgA8KWBhADwpYOyAPClg7MA8KWEmQDwpYSzAPCliYkA8KWQnQDwpZimAPClmpoA8KWbhQDwpaW8APClqqcA8KWuqwDwpbKAAPCls5AA8KW+hgDwpoeaAPCmiKgA8KaJhwDwpouZAPCmjL4A8KaTmgDwppSjAPCmlqgA8KaepwDwpp61APCmrLwA8KawtgDwprOVAPCmtasA8Ka8rADwpr6xAPCng5IA8KePigDwp5mnAPCnoq4A8KelpgDwp7KoAPCnu5MA8Ke8rwDwqJeSAPCol60A8KicrgDwqK+6APCotbcA8KmFhQDwqYefAPCpiJoA8KmQigDwqZKWAPCplrYA8KmssADwqoOOAPCqhIUA8KqIjgDwqoqRAPCqjpIA8KqYgAA="},"pre_tokenizer":{"type":"Sequence","pretokenizers":[{"type":"WhitespaceSplit"},{"type":"Metaspace","replacement":"▁","add_prefix_space":true}]},"post_processor":{"type":"TemplateProcessing","single":[{"Sequence":{"id":"A","type_id":0}},{"SpecialToken":{"id":"","type_id":0}}],"pair":[{"Sequence":{"id":"A","type_id":0}},{"SpecialToken":{"id":"","type_id":0}},{"Sequence":{"id":"B","type_id":0}},{"SpecialToken":{"id":"","type_id":0}}],"special_tokens":{"":{"id":"","ids":[1],"tokens":[""]}}},"decoder":{"type":"Metaspace","replacement":"▁","add_prefix_space":true},"model":{"type":"Unigram","unk_id":2,"vocab":[["",0.0],["",0.0],["",0.0],["▁",-2.012292861938477],["X",-2.486478805541992],[".",-3.5449328422546387],[",",-3.649247407913208],["s",-3.9033992290496826],["▁the",-3.9598512649536137],["a",-4.097104549407959],[":",-4.414328098297119],["▁and",-4.420670986175537],["▁to",-4.4523234367370605],["▁of",-4.572070121765137],["▁fill",-4.575019836425781],["e",-4.674920082092285],["▁in",-4.812063694000244],["t",-5.063905715942383],["-",-5.129043102264404],["▁is",-5.283425331115723],["▁de",-5.344141960144043],["▁for",-5.3930158615112305],["’",-5.4228339195251465],["i",-5.469857692718506],["▁that",-5.576240539550781],["▁you",-5.596375465393066],["d",-5.6047282218933105],["▁I",-5.6640448570251465],["▁with",-5.703730583190918],["n",-5.737886905670166],["▁on",-5.784142971038818],["'",-5.828996181488037],["o",-5.925558090209961],["▁are",-5.931313991546631],["▁it",-5.939518928527832],["en",-5.9465556144714355],["▁be",-5.9556708335876465],["▁The",-5.990020751953125],["▁as",-6.057407379150391],["▁your",-6.132311820983887],["l",-6.139498710632324],["▁(",-6.184796333312988],["▁or",-6.241950035095215],["▁have",-6.27459192276001],["▁at",-6.327472686767578],["▁from",-6.349645137786865],["▁an",-6.350090980529785],["▁was",-6.350385665893555],["▁this",-6.352563381195068],["er",-6.3604278564453125],["▁la",-6.3624043464660645],["m",-6.375206470489502],["r",-6.376530170440674],["ing",-6.3778581619262695],["▁can",-6.387146472930908],["!",-6.421379566192627],["▁will",-6.423982620239258],["▁by",-6.44155216217041],["?",-6.585887432098389],["▁not",-6.5959086418151855],["re",-6.620072364807129],[")",-6.63656759262085],["▁we",-6.643022060394287],["y",-6.654535293579102],["▁und",-6.741473197937012],["▁has",-6.7602033615112305],["▁all",-6.768176555633545],["▁die",-6.8641204833984375],["▁but",-6.906830310821533],["▁our",-6.909878730773926],["▁their",-6.91325044631958],["▁A",-6.915814399719238],["▁more",-6.918668746948242],["▁un",-6.924930572509766],["▁der",-6.925402641296387],["c",-6.925714015960693],["u",-6.932939052581787],["in",-6.934063911437988],["▁so",-6.947050094604492],["▁they",-6.989297866821289],["▁one",-7.012735843658447],["▁about",-7.071486473083496],["▁my",-7.072140693664551],["ul",-7.076492786407471],["▁which",-7.097039222717285],["à",-7.099997520446777],["▁In",-7.100254535675049],["/",-7.100865840911865],["he",-7.104752540588379],["f",-7.110044002532959],["▁le",-7.112937927246094],["▁out",-7.128556728363037],["▁also",-7.133583068847656],["▁des",-7.156766414642334],["▁It",-7.162121295928955],["▁up",-7.1723432540893555],["▁\"",-7.172809600830078],["▁time",-7.178046703338623],["ă",-7.183253765106201],["if",-7.185171127319336],["▁This",-7.191652297973633],["▁We",-7.223267078399658],["p",-7.224130153656006],["▁do",-7.228212356567383],["–",-7.235409736633301],["▁“",-7.238142013549805],["on",-7.240827560424805],["h",-7.2543206214904785],["▁si",-7.276725769042969],["le",-7.2994256019592285],["▁les",-7.312957286834717],["▁în",-7.314571857452393],["▁his",-7.324767112731934],["▁who",-7.35105562210083],["▁like",-7.371364116668701],["b",-7.375369071960449],["▁when",-7.380199432373047],[";",-7.380846977233887],["▁been",-7.38668966293335],["▁other",-7.388518333435059],["ly",-7.394660949707031],["\"",-7.407205104827881],["g",-7.407997131347656],["▁cu",-7.415276527404785],["▁care",-7.432408332824707],["▁what",-7.433043003082275],["▁new",-7.437090396881104],["or",-7.445409774780273],["▁some",-7.461953639984131],["▁get",-7.479001998901367],["▁were",-7.491549491882324],["▁just",-7.492495536804199],["▁there",-7.493194103240967],["▁would",-7.494382381439209],["S",-7.497414112091064],["▁them",-7.513596057891846],["▁any",-7.520544052124023],[").",-7.521052360534668],["al",-7.523056983947754],["▁into",-7.527902603149414],["▁me",-7.528337001800537],["▁had",-7.532425403594971],["▁se",-7.545148372650147],["▁make",-7.5827131271362305],["at",-7.589433670043945],["▁than",-7.592360019683838],["▁du",-7.595852375030518],["▁over",-7.6078782081604],["▁You",-7.626111030578613],["▁how",-7.635554313659668],["▁no",-7.63729190826416],["▁people",-7.639947414398193],["an",-7.64084005355835],["”",-7.644528865814209],["é",-7.646921157836914],["it",-7.648641109466553],["▁If",-7.648687839508057],["k",-7.6605634689331055],["▁pe",-7.662139415740967],["is",-7.66726016998291],["▁her",-7.673380851745605],["▁work",-7.680386543273926],["ve",-7.687412738800049],["▁only",-7.69785737991333],["▁may",-7.702393531799316],["▁its",-7.702449798583984],["▁first",-7.704373836517334],["▁most",-7.708309173583984],["▁well",-7.708758354187012],["▁use",-7.715085983276367],["▁zu",-7.718777656555176],["▁pour",-7.736708164215088],["z",-7.745654106140137],["il",-7.745913982391357],["▁need",-7.74778938293457],["▁these",-7.763317584991455],["▁din",-7.769891262054443],["▁den",-7.775663375854492],["▁us",-7.778133869171143],["able",-7.779712200164795],["▁S",-7.781893730163574],["▁mit",-7.792516231536865],["▁very",-7.79970645904541],["▁am",-7.814100742340088],["&",-7.829529285430908],["▁au",-7.83012056350708],["▁many",-7.83834171295166],["▁mai",-7.84363317489624],["A",-7.849830150604248],["th",-7.855541229248047],["▁through",-7.859585285186768],["▁pentru",-7.86391544342041],["▁two",-7.873607158660889],["▁von",-7.874959945678711],["▁way",-7.887117385864258],["ll",-7.887749195098877],["I",-7.891303539276123],["▁ce",-7.901563167572021],["▁și",-7.904444694519043],["▁help",-7.907405853271484],["▁best",-7.907911777496338],["),",-7.908212184906006],["un",-7.925017833709717],["▁years",-7.925964832305908],["▁2",-7.9282684326171875],["▁C",-7.936962604522705],["▁nu",-7.939520835876465],["▁good",-7.943995952606201],["v",-7.94746732711792],["▁1",-7.94765567779541],["w",-7.947978496551514],["▁das",-7.960538864135742],["▁ca",-7.962430477142334],["▁where",-7.964908123016357],["▁know",-7.96622896194458],["▁year",-7.971063613891602],["▁He",-7.974609375],["▁see",-7.980011463165283],["▁für",-7.984004497528076],["▁auf",-7.984249114990234],["▁3",-7.984433650970459],["de",-7.985401153564453],["est",-8.002091407775879],["▁back",-8.007022857666016],["▁such",-8.008523941040039],["▁should",-8.011754989624023],["x",-8.015050888061523],["▁after",-8.01761245727539],["▁could",-8.019674301147461],["▁ist",-8.020784378051758],["▁now",-8.022845268249512],["▁much",-8.023111343383789],["and",-8.02390193939209],["...",-8.030110359191895],["▁home",-8.036273956298828],["to",-8.03821086883545],["▁ein",-8.04833984375],["▁even",-8.048656463623047],["▁que",-8.049829483032227],["▁day",-8.051553726196289],["▁take",-8.054189682006836],["▁want",-8.054435729980469],["▁For",-8.06217098236084],["▁said",-8.063249588012695],["▁sur",-8.073471069335938],["▁une",-8.077030181884766],["▁să",-8.082921028137207],["▁dans",-8.084549903869629],["▁great",-8.088057518005371],["▁este",-8.08947467803955],["▁because",-8.094311714172363],["▁information",-8.104085922241211],["ului",-8.105451583862305],["▁find",-8.112174987792969],["C",-8.119946479797363],["▁she",-8.125317573547363],["▁im",-8.126056671142578],["ation",-8.130115509033203],["▁then",-8.13021469116211],["▁est",-8.13099479675293],["▁par",-8.138585090637207],["▁used",-8.141871452331543],["▁E",-8.146790504455566],["▁made",-8.149978637695312],["▁So",-8.15785026550293],["am",-8.16288948059082],["▁eine",-8.165464401245117],["▁şi",-8.168368339538574],["▁business",-8.17335033416748],["▁right",-8.173593521118164],["▁here",-8.176125526428223],["▁being",-8.184967041015625],["▁B",-8.185355186462402],["▁those",-8.185736656188965],["▁before",-8.194721221923828],["▁And",-8.199501037597656],["▁P",-8.200712203979492],["ers",-8.200922012329102],["▁don",-8.204029083251953],["B",-8.20487117767334],["▁life",-8.206265449523926],["▁go",-8.209736824035645],["▁As",-8.210551261901855],["▁M",-8.221170425415039],["▁each",-8.22955322265625],["▁qui",-8.23323917388916],["▁place",-8.236248970031738],["com",-8.237479209899902],["ant",-8.252915382385254],["▁sich",-8.255932807922363],["▁There",-8.261948585510254],["ar",-8.264991760253906],["▁Sie",-8.273868560791016],["▁own",-8.277531623840332],["▁part",-8.279440879821777],["ent",-8.281047821044922],["▁world",-8.28173542022705],["ment",-8.282004356384277],["▁while",-8.294474601745605],["▁But",-8.295366287231445],["▁around",-8.300799369812012],["▁L",-8.301082611083984],["us",-8.304039001464844],["▁plus",-8.313054084777832],["▁To",-8.313691139221191],["▁5",-8.31412410736084],["▁high",-8.31862735748291],["▁long",-8.319378852844238],["D",-8.320075035095215],["▁D",-8.320279121398926],["▁really",-8.322924613952637],["▁nicht",-8.332040786743164],["▁Le",-8.335328102111816],["▁service",-8.3412504196167],["▁4",-8.342093467712402],["▁different",-8.342538833618164],["▁Die",-8.348092079162598],["▁think",-8.353771209716797],["—",-8.355998039245605],["▁auch",-8.357160568237305],["▁look",-8.362202644348145],["▁both",-8.366817474365234],["lor",-8.36687183380127],["▁down",-8.367999076843262],["ten",-8.368885040283203],["▁La",-8.378066062927246],["▁off",-8.380044937133789],["▁vous",-8.380541801452637],["▁They",-8.381462097167969],["M",-8.383248329162598],["▁pas",-8.384513854980469],["▁data",-8.385709762573242],["▁T",-8.386754989624023],["▁love",-8.388101577758789],["▁every",-8.390009880065918],["▁10",-8.391179084777832],["▁last",-8.392083168029785],["▁same",-8.393481254577637],["▁using",-8.395487785339355],["▁free",-8.408831596374512],["▁dem",-8.40894889831543],["▁still",-8.409984588623047],["ate",-8.410931587219238],["ist",-8.415611267089844],["▁between",-8.420283317565918],["P",-8.420982360839844],["be",-8.428167343139648],["▁available",-8.429443359375],["man",-8.432978630065918],["▁company",-8.439678192138672],["▁G",-8.441640853881836],["▁experience",-8.444950103759766],["▁going",-8.449073791503906],["▁site",-8.453832626342773],["j",-8.455142974853516],["are",-8.456900596618652],["▁set",-8.470661163330078],["2",-8.473684310913086],["▁system",-8.474678039550781],["▁important",-8.476791381835938],["▁few",-8.482437133789062],["▁fi",-8.482551574707031],["ich",-8.483301162719727],["▁What",-8.488649368286133],["▁services",-8.502433776855469],["▁under",-8.502569198608398],["▁When",-8.50308895111084],["▁online",-8.50699520111084],["▁New",-8.51494312286377],["▁come",-8.524871826171875],["▁provide",-8.525650024414062],["F",-8.526449203491211],["▁team",-8.52782154083252],["▁always",-8.529409408569336],["▁De",-8.530412673950195],["▁că",-8.532517433166504],["▁him",-8.53586196899414],["▁F",-8.538305282592773],["▁things",-8.550079345703125],["▁including",-8.550943374633789],["▁support",-8.552608489990234],["▁number",-8.554113388061523],["T",-8.557183265686035],["▁during",-8.55886459350586],["▁family",-8.560463905334473],["▁little",-8.561317443847656],["▁three",-8.567726135253906],["▁water",-8.56810188293457],["▁man",-8.569759368896484],["▁An",-8.57192611694336],["based",-8.572155952453613],["▁R",-8.57442855834961],["▁sau",-8.574433326721191],["▁avec",-8.576035499572754],["▁better",-8.576830863952637],["▁„",-8.582253456115723],["▁too",-8.58635425567627],["ge",-8.586719512939453],["▁must",-8.589736938476562],["▁per",-8.589916229248047],["ele",-8.590399742126465],["▁oder",-8.59264850616455],["au",-8.59555435180664],["▁aus",-8.595727920532227],["▁werden",-8.598653793334961],["▁does",-8.599140167236328],["▁without",-8.599270820617676],["▁ou",-8.599929809570312],["▁design",-8.60101318359375],["▁va",-8.605440139770508],["▁did",-8.615679740905762],["▁O",-8.619062423706055],["▁U",-8.623565673828125],["up",-8.62901496887207],["▁end",-8.63367748260498],["▁local",-8.636231422424316],["▁next",-8.638967514038086],["▁sure",-8.64098072052002],["▁lot",-8.64644718170166],["▁Re",-8.647016525268555],["▁top",-8.647642135620117],["▁Our",-8.656886100769043],["▁small",-8.656978607177734],["▁full",-8.659418106079102],["▁something",-8.662886619567871],["ung",-8.666722297668457],["▁vor",-8.673250198364258],["E",-8.673337936401367],["▁give",-8.67603588104248],["▁might",-8.67660903930664],["▁another",-8.679330825805664],["▁6",-8.680779457092285],["▁All",-8.681318283081055],["▁process",-8.681672096252441],["L",-8.682575225830078],["▁found",-8.68941593170166],["▁sind",-8.690044403076172],["▁since",-8.69528865814209],["▁With",-8.695560455322266],["K",-8.696988105773926],["um",-8.701016426086426],["▁within",-8.701669692993164],["▁post",-8.706608772277832],["▁car",-8.709365844726562],["une",-8.714099884033203],["▁N",-8.715041160583496],["▁J",-8.715597152709961],["ic",-8.71823787689209],["R",-8.722309112548828],["ter",-8.727437019348145],["ur",-8.728265762329102],["▁She",-8.73131275177002],["▁public",-8.732009887695312],["▁keep",-8.735784530639648],["▁H",-8.736178398132324],["▁order",-8.740762710571289],["▁start",-8.742195129394531],["ez",-8.74746322631836],["▁‘",-8.749832153320312],["uri",-8.751104354858398],["▁20",-8.752482414245605],["▁On",-8.753515243530273],["▁offer",-8.763005256652832],["▁quality",-8.764988899230957],["▁working",-8.769987106323242],["▁No",-8.770307540893555],["▁That",-8.775156021118164],["▁game",-8.7863187789917],["▁bei",-8.786642074584961],["▁today",-8.788661003112793],["▁never",-8.794586181640625],["▁week",-8.79587173461914],["▁St",-8.797786712646484],["▁feel",-8.799317359924316],["▁put",-8.801899909973145],["▁website",-8.80322265625],["Y",-8.804483413696289],["▁days",-8.804709434509277],["▁program",-8.805448532104492],["▁looking",-8.810463905334473],["▁K",-8.810808181762695],["▁students",-8.811436653137207],["▁create",-8.811800956726074],["▁change",-8.812616348266602],["▁book",-8.812932014465332],["ity",-8.813761711120605],["▁At",-8.815207481384277],["▁possible",-8.815670013427734],["▁sunt",-8.81651496887207],["▁7",-8.818120002746582],["▁real",-8.823369026184082],["▁al",-8.824172019958496],["▁making",-8.825371742248535],["▁Be",-8.825761795043945],["▁products",-8.82592487335205],["▁case",-8.82653522491455],["▁school",-8.8272066116333],["▁say",-8.830352783203125],["area",-8.832084655761719],["▁My",-8.833836555480957],["▁point",-8.834731101989746],["▁als",-8.83560848236084],["▁children",-8.836194038391113],["▁course",-8.844061851501465],["▁show",-8.847993850708008],["▁8",-8.849273681640625],["▁These",-8.849345207214355],["▁18",-8.851140975952148],["▁large",-8.851323127746582],["co",-8.854362487792969],["▁über",-8.854788780212402],["▁second",-8.856559753417969],["▁market",-8.859807014465332],["▁fost",-8.86048698425293],["▁easy",-8.863983154296875],["▁plan",-8.864302635192871],["▁project",-8.864927291870117],["G",-8.865178108215332],["W",-8.869574546813965],["3",-8.871939659118652],["▁son",-8.873332023620605],["la",-8.879053115844727],["▁face",-8.88137435913086],["▁needs",-8.88148021697998],["ch",-8.883138656616211],["▁personal",-8.88343620300293],["me",-8.886031150817871],["▁sont",-8.887377738952637],["▁je",-8.894930839538574],["▁non",-8.895471572875977],["▁got",-8.896591186523438],["▁Do",-8.897382736206055],["the",-8.89765453338623],["▁health",-8.89908504486084],["▁special",-8.90555477142334],[".\"",-8.907710075378418],["1",-8.907852172851562],["den",-8.908616065979004],["▁state",-8.909355163574219],["▁open",-8.91019058227539],["▁money",-8.91053581237793],["▁again",-8.913084983825684],["▁food",-8.913167953491211],["▁page",-8.914595603942871],["▁together",-8.91628360748291],["age",-8.919108390808105],["▁qu",-8.921928405761719],["hat",-8.922386169433594],["▁ver",-8.926993370056152],["▁W",-8.927785873413086],["▁away",-8.928759574890137],["▁wird",-8.931641578674316],["▁until",-8.934249877929688],["V",-8.934935569763184],["▁pre",-8.935851097106934],["▁One",-8.936429977416992],["▁product",-8.936561584472656],["▁often",-8.939326286315918],["▁wir",-8.944111824035645],["▁nach",-8.945127487182617],["▁include",-8.946555137634277],["▁um",-8.948204040527344],["▁room",-8.953709602355957],["▁group",-8.953767776489258],["▁name",-8.954949378967285],["ce",-8.955448150634766],["H",-8.956180572509766],["N",-8.958139419555664],["▁person",-8.958183288574219],["▁social",-8.958606719970703],["▁list",-8.963666915893555],["▁How",-8.964127540588379],["▁why",-8.96571159362793],["▁community",-8.965995788574219],["▁contact",-8.973031044006348],["",-8.9755859375],["▁co",-8.979683876037598],["▁play",-8.983960151672363],["▁having",-8.984169960021973],["▁power",-8.986917495727539],["▁call",-8.991690635681152],["▁against",-8.991816520690918],["▁become",-8.997780799865723],["▁cost",-9.003793716430664],["▁V",-9.004593849182129],["▁research",-9.006913185119629],["▁12",-9.007307052612305],["▁wie",-9.008277893066406],["der",-9.008386611938477],["▁thing",-9.014028549194336],["▁along",-9.017301559448242],["4",-9.017330169677734],["▁access",-9.020391464233398],["▁level",-9.020505905151367],["▁price",-9.022817611694336],["▁einen",-9.023714065551758],["▁side",-9.026359558105469],["▁Un",-9.026851654052734],["▁means",-9.03041648864746],["(",-9.032341957092283],["▁big",-9.034374237060549],["▁God",-9.036499977111816],["▁dass",-9.037314414978027],["im",-9.03737449645996],["▁30",-9.037432670593262],["▁event",-9.041665077209473],["▁development",-9.04206085205078],["▁form",-9.04226303100586],["▁read",-9.042579650878906],["▁hand",-9.043194770812988],["▁control",-9.04446792602539],["▁However",-9.046320915222168],["▁done",-9.048060417175291],["▁job",-9.051692008972168],["▁hard",-9.05661964416504],["▁war",-9.057538032531738],["▁area",-9.0584135055542],["▁add",-9.0586576461792],["▁votre",-9.0593900680542],["▁live",-9.059494018554688],["▁range",-9.060099601745604],["▁After",-9.06016445159912],["▁Les",-9.060513496398926],["▁far",-9.064413070678713],["ver",-9.064727783203123],["▁old",-9.069576263427734],["▁perfect",-9.06976318359375],["▁15",-9.070429801940918],["▁space",-9.073654174804688],["▁house",-9.074068069458008],["ine",-9.07408618927002],["▁enough",-9.074334144592283],["0",-9.075824737548828],["▁several",-9.077119827270508],["The",-9.08115577697754],["mm",-9.085619926452637],["▁University",-9.08637523651123],["▁diese",-9.087566375732422],["▁Co",-9.088335990905762],["▁comes",-9.088497161865234],["▁across",-9.088857650756836],["▁already",-9.090097427368164],[",”",-9.090341567993164],["▁body",-9.09276294708252],["▁Das",-9.094594955444336],["▁einer",-9.095956802368164],["▁left",-9.09921646118164],["▁future",-9.105711936950684],["▁times",-9.106670379638672],["▁dar",-9.109651565551758],["▁simple",-9.110408782958984],["ry",-9.112407684326172],["▁getting",-9.113155364990234],["▁try",-9.115362167358398],["ți",-9.116897583007812],["ness",-9.120043754577637],["▁makes",-9.12037754058838],["▁past",-9.120619773864746],["ca",-9.12130069732666],["▁light",-9.122207641601562],["▁Der",-9.122997283935549],["▁run",-9.125843048095703],["▁four",-9.126943588256836],["ance",-9.130500793457031],["▁ever",-9.131503105163574],["▁einem",-9.131816864013672],["▁below",-9.133723258972168],["O",-9.134073257446287],["▁9",-9.137282371520996],["▁learn",-9.14004135131836],["out",-9.140358924865724],["▁video",-9.143178939819336],["▁etc",-9.146929740905762],["▁«",-9.148795127868652],["▁zum",-9.149712562561035],["▁kann",-9.1504487991333],["▁minutes",-9.151180267333984],["▁example",-9.154194831848145],["▁nous",-9.154619216918944],["▁Se",-9.157441139221191],["▁sie",-9.159955024719238],["▁industry",-9.161614418029783],["▁problem",-9.162016868591309],["J",-9.162480354309082],["▁country",-9.163366317749023],["▁fact",-9.164189338684082],["▁type",-9.164190292358398],["ner",-9.164238929748535],["▁companies",-9.165864944458008],["▁line",-9.169849395751951],["▁city",-9.17271327972412],["▁check",-9.173710823059082],["▁doing",-9.174406051635742],["elle",-9.175037384033203],["▁fun",-9.176549911499023],["▁En",-9.177546501159668],["▁Your",-9.178601264953612],["ling",-9.181450843811035],["▁share",-9.18185806274414],["ile",-9.182005882263184],["▁actually",-9.187544822692873],["▁value",-9.187751770019531],["zi",-9.188661575317385],["▁ab",-9.1898832321167],["▁offers",-9.1905517578125],["▁less",-9.190573692321776],["▁night",-9.193560600280762],["▁Dr",-9.19518756866455],["▁started",-9.195454597473145],["▁least",-9.198020935058594],["▁short",-9.198562622070312],["▁main",-9.201143264770508],["▁single",-9.202939987182615],["▁though",-9.203780174255373],["▁prin",-9.203930854797363],["time",-9.20531177520752],["▁hours",-9.206608772277832],["▁others",-9.206849098205566],["▁called",-9.20730209350586],["▁visit",-9.208869934082031],["▁bit",-9.209009170532228],["ée",-9.210821151733398],["▁customers",-9.211383819580078],["▁music",-9.212000846862791],["▁members",-9.217191696166992],["ies",-9.21743392944336],["▁pay",-9.219176292419434],["nd",-9.219744682312012],["▁once",-9.221125602722168],["gen",-9.2217378616333],["▁können",-9.222976684570312],["▁low",-9.22377109527588],["▁durch",-9.227394104003906],["▁story",-9.228075981140137],["▁understand",-9.22953987121582],["“",-9.229856491088867],["▁Am",-9.231831550598145],["▁didn",-9.234603881835938],["▁content",-9.237217903137209],["son",-9.24180793762207],["▁building",-9.242242813110352],["▁result",-9.242605209350586],["▁aux",-9.243107795715332],["▁complete",-9.244999885559082],["▁doesn",-9.24510669708252],["▁haben",-9.246070861816406],["▁questions",-9.24661636352539],["line",-9.247077941894531],["▁technology",-9.247429847717283],["▁Pro",-9.247976303100586],["▁current",-9.248504638671877],["▁won",-9.248883247375488],["▁let",-9.250710487365724],["▁features",-9.251978874206545],["▁please",-9.258262634277344],["5",-9.258519172668455],["▁above",-9.259394645690918],["ive",-9.262128829956056],["▁management",-9.262394905090332],["▁lui",-9.262539863586426],["her",-9.263057708740234],["▁training",-9.265711784362791],["▁everything",-9.2665433883667],["▁noch",-9.266846656799316],["▁came",-9.267708778381348],["▁web",-9.272823333740234],["▁ensure",-9.272987365722656],["▁months",-9.273130416870115],["▁art",-9.27313232421875],["▁sub",-9.274359703063965],["▁million",-9.274559020996094],["▁professional",-9.275035858154297],["▁results",-9.278368949890137],["▁kind",-9.278395652770996],["▁season",-9.279285430908203],["▁unique",-9.281067848205566],["ze",-9.284360885620115],["▁enjoy",-9.28487777709961],["▁early",-9.287765502929688],["▁major",-9.288202285766602],["▁yet",-9.29152774810791],["▁Ver",-9.293331146240234],["one",-9.296777725219728],["▁media",-9.29719352722168],["▁[",-9.30095100402832],["▁property",-9.302969932556152],["▁beautiful",-9.304466247558594],["▁given",-9.305286407470703],["▁due",-9.306716918945312],["▁government",-9.307181358337402],["▁nur",-9.30881404876709],["▁email",-9.30910301208496],["▁total",-9.311080932617188],["▁natural",-9.311264038085938],["▁test",-9.311450004577637],["▁provides",-9.311640739440918],["▁various",-9.312631607055664],["▁American",-9.31560516357422],["▁moment",-9.318109512329102],["▁air",-9.318952560424805],["▁idea",-9.319236755371094],["▁known",-9.319981575012209],["▁Il",-9.320504188537598],["▁friends",-9.320576667785645],["▁final",-9.320919036865234],["▁buy",-9.32139778137207],["▁specific",-9.32223415374756],["▁issues",-9.32454776763916],["▁took",-9.325233459472656],["▁mind",-9.326258659362791],["▁study",-9.32675838470459],["▁addition",-9.328418731689451],["▁size",-9.332446098327637],["▁pro",-9.334047317504885],["▁film",-9.33545970916748],["▁pot",-9.335636138916016],["▁thought",-9.338120460510254],["▁tell",-9.33890438079834],["▁While",-9.339675903320312],["▁head",-9.339983940124512],["▁clients",-9.340429306030272],["▁performance",-9.346199989318848],["▁question",-9.346835136413574],["▁whether",-9.347925186157228],["▁certain",-9.34826946258545],["▁model",-9.348764419555664],["▁following",-9.350926399230955],["▁energy",-9.354207992553713],["▁office",-9.354207992553713],["▁whole",-9.356687545776367],["▁bring",-9.356956481933594],["▁required",-9.35726261138916],["ţi",-9.358223915100098],["▁date",-9.358695030212402],["_",-9.358983039855955],["que",-9.359789848327637],["▁da",-9.360264778137209],["▁US",-9.36120319366455],["▁taking",-9.36143684387207],["go",-9.362788200378418],["▁living",-9.36341667175293],["▁someone",-9.363489151000977],["▁heart",-9.365120887756348],["▁key",-9.365775108337402],["▁areas",-9.366238594055176],["▁says",-9.367013931274414],["▁2018",-9.369132041931152],["▁month",-9.37012767791748],["▁Er",-9.37135410308838],["ste",-9.375077247619627],["▁11",-9.375179290771484],["▁front",-9.37528133392334],["▁Now",-9.37669563293457],["▁class",-9.376946449279783],["▁choose",-9.377082824707031],["pe",-9.37808609008789],["▁further",-9.379021644592283],["▁believe",-9.37936019897461],["of",-9.379590034484863],["▁among",-9.380990982055664],["sch",-9.381686210632324],["▁child",-9.382609367370604],["▁aber",-9.38376235961914],["▁Please",-9.386269569396973],["rea",-9.387248992919922],["▁later",-9.387272834777832],["▁amount",-9.388760566711426],["ice",-9.390128135681152],["▁National",-9.390177726745604],["▁style",-9.390748977661133],["▁tout",-9.391490936279297],["▁staff",-9.392939567565918],["▁white",-9.397933959960938],["▁ge",-9.399179458618164],["▁five",-9.40098476409912],["▁blog",-9.40109920501709],["▁designed",-9.40125846862793],["▁went",-9.402216911315918],["▁Da",-9.40268611907959],["▁general",-9.403801918029783],["▁rest",-9.403874397277832],["▁zur",-9.40579891204834],["▁quite",-9.405948638916016],["per",-9.40687084197998],["▁customer",-9.408379554748535],["▁close",-9.408747673034668],["▁Some",-9.41054630279541],["▁women",-9.41075611114502],["▁move",-9.410761833190918],["▁software",-9.411357879638672],["▁Ein",-9.413651466369627],["▁Ab",-9.413823127746582],["▁history",-9.413864135742188],["▁either",-9.41564655303955],["▁seen",-9.417396545410156],["▁card",-9.419726371765137],["▁City",-9.421541213989258],["▁hope",-9.42176914215088],["▁16",-9.422072410583496],["és",-9.422825813293455],["va",-9.423294067382812],["▁Al",-9.423827171325684],["▁especially",-9.424827575683594],["▁view",-9.426136016845703],["men",-9.427363395690918],["▁account",-9.427489280700684],["▁needed",-9.429777145385742],["▁United",-9.429789543151855],["]",-9.432387351989746],["▁yourself",-9.432788848876951],["▁100",-9.433059692382812],["▁receive",-9.433417320251465],["▁ideas",-9.43369197845459],["▁writing",-9.434585571289062],["▁simply",-9.434741973876951],["▁present",-9.435087203979492],["▁continue",-9.436107635498049],["▁application",-9.44115161895752],["▁build",-9.44187068939209],["▁turn",-9.44249439239502],["ated",-9.442923545837402],["▁everyone",-9.443060874938965],["cette",-9.443114280700684],["▁bien",-9.444964408874512],["less",-9.445222854614258],["▁Si",-9.445359230041504],["▁original",-9.44686794281006],["8",-9.44794750213623],["▁individual",-9.448895454406738],["tre",-9.449433326721191],["▁works",-9.45171070098877],["▁options",-9.451821327209473],["▁May",-9.454456329345703],["▁Not",-9.454940795898438],["▁report",-9.455467224121094],["mer",-9.457239151000977],["▁human",-9.459118843078612],["▁provided",-9.459603309631348],["▁By",-9.460925102233888],["▁series",-9.462006568908691],["7",-9.46226692199707],["▁modern",-9.463875770568848],["▁meet",-9.463921546936035],["▁50",-9.464119911193848],["▁25",-9.46969985961914],["▁color",-9.470091819763184],["▁download",-9.470109939575195],["▁Here",-9.471144676208496],["6",-9.471323013305664],["▁poate",-9.471449851989746],["▁În",-9.47232151031494],["▁phone",-9.473695755004885],["▁likely",-9.474374771118164],["▁table",-9.476469993591309],["▁ma",-9.476551055908203],["▁Or",-9.479181289672852],["Z",-9.48026180267334],["▁19",-9.482215881347656],["▁insurance",-9.482544898986816],["▁anything",-9.483808517456056],["▁search",-9.485033988952637],["▁Ge",-9.48520565032959],["▁issue",-9.48556423187256],["▁includes",-9.485688209533691],["▁clear",-9.487342834472656],["les",-9.488021850585938],["▁almost",-9.488259315490724],["ilor",-9.48935317993164],["▁14",-9.490717887878418],["by",-9.494056701660156],["▁Du",-9.49624252319336],["▁mais",-9.497303009033203],["ier",-9.499163627624512],["▁law",-9.49924087524414],["▁added",-9.500134468078612],["▁con",-9.500962257385254],[",\"",-9.501530647277832],["▁ago",-9.502127647399902],["▁His",-9.504697799682615],["▁points",-9.504981994628906],["▁mult",-9.505581855773926],["▁financial",-9.506216049194336],["▁problems",-9.506428718566896],["▁however",-9.50648307800293],["▁events",-9.50675106048584],["▁half",-9.507889747619627],["ard",-9.511183738708496],["▁ask",-9.51156997680664],["▁version",-9.511631965637209],["end",-9.512478828430176],["▁created",-9.512639999389648],["▁lead",-9.512917518615724],["▁focus",-9.513853073120115],["▁increase",-9.515096664428713],["ex",-9.515118598937988],["▁allow",-9.515798568725586],["▁extra",-9.516464233398438],["▁24",-9.51669216156006],["▁credit",-9.516772270202637],["▁production",-9.516801834106444],["zu",-9.517256736755373],["▁black",-9.51754093170166],["▁systems",-9.518040657043455],["▁17",-9.518178939819336],["▁opportunity",-9.518531799316406],["▁bis",-9.519219398498535],["▁fast",-9.519807815551758],["ring",-9.521166801452637],["▁Don",-9.522114753723145],["▁via",-9.52242660522461],["fer",-9.5225248336792],["▁comme",-9.522799491882324],["▁popular",-9.523722648620604],["▁South",-9.524491310119627],["ating",-9.52500343322754],["▁State",-9.525198936462402],["ator",-9.525679588317873],["▁common",-9.525968551635742],["con",-9.526727676391602],["▁throughout",-9.527557373046877],["▁risk",-9.52774715423584],["▁young",-9.528532028198242],["▁Je",-9.528688430786133],["▁image",-9.52928352355957],["ha",-9.529376983642578],["▁third",-9.529587745666504],["▁taken",-9.530049324035645],["▁Z",-9.5314302444458],["▁dis",-9.5316162109375],["▁From",-9.533575057983398],["▁details",-9.534862518310549],["▁games",-9.53516674041748],["▁practice",-9.536040306091309],["che",-9.536151885986328],["▁security",-9.537364959716797],["▁medical",-9.537653923034668],["▁learning",-9.537806510925291],["▁material",-9.538509368896484],["▁international",-9.540703773498535],["▁forward",-9.541245460510254],["▁paper",-9.541247367858888],["▁action",-9.541348457336426],["▁file",-9.542378425598145],["▁oil",-9.543096542358398],["▁self",-9.54377555847168],["▁private",-9.545247077941896],["▁interest",-9.545559883117676],["bar",-9.546065330505373],["▁sale",-9.547115325927734],["▁stay",-9.547348976135254],["ke",-9.548089981079102],["▁San",-9.549053192138672],["▁matter",-9.549870491027832],["▁reason",-9.550254821777344],["ted",-9.55147647857666],["▁potential",-9.551742553710938],["▁brand",-9.552441596984863],["▁field",-9.55315113067627],["▁treatment",-9.553420066833496],["▁period",-9.553516387939451],["▁York",-9.553890228271484],["▁Park",-9.554738998413086],["▁acest",-9.55600929260254],["ou",-9.556926727294922],["▁Ce",-9.557014465332031],["▁ready",-9.558111190795898],["▁rather",-9.55860424041748],["▁outside",-9.560086250305176],["▁standard",-9.560121536254885],["▁located",-9.56077003479004],["▁marketing",-9.562313079833984],["cu",-9.564041137695312],["▁Can",-9.564562797546388],["▁education",-9.566105842590332],["use",-9.566640853881836],["▁role",-9.566828727722168],["▁men",-9.571505546569824],["▁probably",-9.571550369262695],["▁store",-9.57221508026123],["▁John",-9.572355270385742],["▁rate",-9.573956489562988],["▁code",-9.573994636535645],["▁kids",-9.574408531188965],["▁currently",-9.57552719116211],["▁near",-9.576475143432615],["▁sales",-9.576716423034668],["▁usually",-9.577012062072754],["▁activities",-9.577242851257324],["▁party",-9.57737159729004],["▁leur",-9.577434539794922],["▁particular",-9.577627182006836],["▁mehr",-9.577707290649414],["ill",-9.578757286071776],["▁percent",-9.579113006591797],["▁fait",-9.579537391662598],["▁happy",-9.579904556274414],["▁inside",-9.58005428314209],["▁save",-9.580510139465332],["▁skills",-9.580765724182127],["▁consider",-9.581025123596191],["▁recent",-9.58161735534668],["▁strong",-9.581781387329102],["▁position",-9.582076072692873],["▁knowledge",-9.582303047180176],["▁tax",-9.583868980407717],["▁users",-9.584261894226074],["und",-9.585564613342283],["▁coming",-9.585904121398926],["▁article",-9.585923194885254],["min",-9.586345672607422],["▁sein",-9.586555480957031],["▁travel",-9.586871147155762],["▁changes",-9.58765983581543],["▁impact",-9.588181495666504],["▁wanted",-9.588460922241213],["▁address",-9.5885591506958],["▁soon",-9.58873462677002],["▁North",-9.588915824890137],["ată",-9.589237213134766],["▁trying",-9.58985424041748],["▁app",-9.590612411499023],["▁School",-9.592510223388672],["▁Es",-9.592548370361328],["we",-9.59261703491211],["▁conditions",-9.59292984008789],["▁digital",-9.59329319000244],["▁similar",-9.594805717468262],["▁solution",-9.59514331817627],["▁location",-9.59518337249756],["▁Of",-9.595418930053713],["▁follow",-9.595842361450195],["▁red",-9.597526550292969],["▁review",-9.599202156066896],["▁skin",-9.599575996398926],["▁pretty",-9.600369453430176],["day",-9.600558280944824],["▁dé",-9.602072715759276],["▁cause",-9.602169036865234],["▁Sa",-9.602463722229004],["▁user",-9.602520942687988],["▁Man",-9.60337734222412],["”.",-9.604146003723145],["▁Just",-9.604366302490234],["▁faire",-9.604475021362305],["▁member",-9.605619430541992],["▁iar",-9.606892585754396],["▁higher",-9.607715606689451],["▁step",-9.607887268066406],["▁wide",-9.60818576812744],["▁uns",-9.608920097351074],["▁World",-9.609135627746582],["▁additional",-9.61176586151123],["ber",-9.613197326660156],["▁easily",-9.613990783691406],["▁deal",-9.615070343017578],["▁ways",-9.615514755249023],["▁mobile",-9.61683750152588],["▁national",-9.616913795471191],["▁couple",-9.617389678955078],["▁ihre",-9.61939811706543],["▁choice",-9.61961269378662],["for",-9.619686126708984],["ous",-9.62070083618164],["▁Google",-9.620855331420898],["▁environment",-9.622426986694336],["urile",-9.62332248687744],["▁Center",-9.626680374145508],["mp",-9.628592491149902],["▁»",-9.629727363586426],["qui",-9.630680084228516],["▁growth",-9.631048202514648],["ler",-9.633174896240234],["▁improve",-9.63360595703125],["▁items",-9.6336669921875],["▁Nu",-9.63393783569336],["▁leave",-9.634074211120604],["▁true",-9.634805679321287],["▁wurde",-9.63487434387207],["▁cannot",-9.635004043579102],["▁13",-9.635096549987791],["▁running",-9.636015892028809],["▁anti",-9.63617706298828],["▁option",-9.636306762695312],["▁reading",-9.63657283782959],["▁Car",-9.636698722839355],["▁Wir",-9.638110160827637],["▁April",-9.63975715637207],["▁behind",-9.640642166137695],["▁client",-9.640750885009766],["▁cover",-9.64101219177246],["▁stop",-9.641090393066406],["ja",-9.641277313232422],["▁built",-9.641307830810549],["▁Con",-9.641313552856444],["ement",-9.641366004943848],["▁projects",-9.641828536987305],["▁variety",-9.641840934753418],["▁Ihre",-9.642666816711426],["ș",-9.64302921295166],["▁unter",-9.64385986328125],["▁longer",-9.646577835083008],["year",-9.647161483764648],["▁photo",-9.648370742797852],["▁Also",-9.64933967590332],["▁received",-9.651098251342772],["▁return",-9.652676582336426],["00",-9.653081893920898],["▁bar",-9.653343200683594],["ary",-9.654427528381348],["elor",-9.655137062072754],["▁Home",-9.656189918518066],["our",-9.656298637390137],["▁Me",-9.65771198272705],["▁held",-9.65911102294922],["▁click",-9.66014289855957],["▁ex",-9.660178184509276],["▁cum",-9.661561965942385],["▁takes",-9.66395378112793],["▁computer",-9.665796279907228],["▁told",-9.668192863464355],["+",-9.670648574829102],["▁patients",-9.670809745788574],["ting",-9.672165870666504],["▁direct",-9.672248840332031],["▁quickly",-9.672410011291504],["tic",-9.672877311706545],["▁vom",-9.673723220825195],["▁di",-9.67381477355957],["▁kitchen",-9.674022674560549],["▁network",-9.675640106201172],["▁2015",-9.676688194274902],["▁effective",-9.677227020263672],["▁collection",-9.677703857421877],["▁2017",-9.677751541137695],["▁words",-9.678145408630373],["▁cele",-9.678857803344728],["▁student",-9.678862571716309],["▁amazing",-9.678932189941406],["eur",-9.680419921875],[".”",-9.68227481842041],["▁ale",-9.682716369628906],["”,",-9.68414306640625],["▁purchase",-9.684350967407228],["▁mean",-9.68477725982666],["▁West",-9.686846733093262],["▁nice",-9.6889066696167],["▁age",-9.689131736755373],["▁base",-9.68923568725586],["▁summer",-9.68928337097168],["▁multi",-9.689496994018556],["▁allows",-9.689573287963867],["▁latest",-9.689604759216309],["▁global",-9.68992805480957],["▁chance",-9.690792083740234],["▁sense",-9.690872192382812],["ieren",-9.692789077758787],["▁difficult",-9.693133354187012],["ité",-9.694750785827637],["ka",-9.69479274749756],["du",-9.69483757019043],["▁providing",-9.695744514465332],["▁Art",-9.696940422058104],["▁drive",-9.69855499267578],["▁Go",-9.698877334594728],["▁très",-9.699414253234863],["U",-9.699579238891602],["▁Pre",-9.699846267700195],["▁shows",-9.700040817260742],["▁hair",-9.701324462890623],["▁success",-9.701513290405272],["▁UK",-9.703169822692873],["red",-9.703241348266602],["ü",-9.703370094299316],["ish",-9.703631401062012],["▁weeks",-9.704839706420898],["▁solutions",-9.7055025100708],["▁Pe",-9.7057523727417],["▁equipment",-9.706141471862791],["și",-9.706482887268066],["▁worked",-9.707073211669922],["\".",-9.708627700805664],["▁legal",-9.708720207214355],["▁bad",-9.70892333984375],["▁40",-9.709561347961426],["▁Internet",-9.709798812866213],["▁included",-9.709976196289062],["▁upon",-9.710977554321287],["▁excellent",-9.71106243133545],["▁goal",-9.71130084991455],["▁El",-9.711408615112305],["▁Mo",-9.711703300476074],["▁policy",-9.71319580078125],["▁aussi",-9.713537216186523],["▁weight",-9.713687896728516],["ici",-9.715133666992188],["▁approach",-9.715584754943848],["▁six",-9.71579647064209],["▁entire",-9.715911865234377],["9",-9.71633529663086],["▁send",-9.716832160949709],["▁1.",-9.718971252441406],["▁wenn",-9.719056129455566],["▁photos",-9.71993637084961],["://",-9.721014022827148],["ger",-9.72281551361084],["▁favorite",-9.723104476928713],["ley",-9.723477363586426],["▁else",-9.72463321685791],["▁types",-9.72468376159668],["▁link",-9.725333213806152],["▁recently",-9.72584056854248],["▁Mit",-9.72631549835205],["▁hot",-9.726548194885254],["tra",-9.726597785949709],["ş",-9.727307319641112],["▁according",-9.728511810302734],["▁necessary",-9.728511810302734],["▁multiple",-9.72926902770996],["▁Im",-9.729510307312012],["▁sehr",-9.729660034179688],["▁sign",-9.732263565063477],["▁anyone",-9.73283576965332],["▁land",-9.733613014221191],["▁States",-9.734037399291992],["▁unsere",-9.734119415283203],["ées",-9.734639167785645],["We",-9.735671043395996],["▁nothing",-9.735845565795898],["▁commercial",-9.736858367919922],["ful",-9.737265586853027],["▁seems",-9.739325523376465],["▁International",-9.740097045898438],["▁March",-9.74163818359375],["▁Thanks",-9.74330711364746],["▁County",-9.74365234375],["▁books",-9.744638442993164],["▁Ca",-9.7451753616333],["▁mi",-9.746304512023926],["▁meeting",-9.746662139892578],["▁tools",-9.747593879699709],["▁cut",-9.747650146484377],["▁related",-9.74765682220459],["▁lives",-9.748003005981444],["way",-9.748501777648926],["▁develop",-9.748651504516602],["▁sound",-9.748723983764648],["▁safe",-9.748950958251951],["▁Her",-9.74937629699707],["▁average",-9.751277923583984],["▁clean",-9.75174331665039],["▁talk",-9.752362251281738],["▁peut",-9.75241756439209],["▁dann",-9.752546310424805],["▁terms",-9.753265380859377],["▁foarte",-9.753512382507324],["▁super",-9.754284858703612],["▁programs",-9.754853248596191],["▁decision",-9.75540828704834],["▁costs",-9.756058692932127],["▁être",-9.756291389465332],["▁2019",-9.75767421722412],["led",-9.759482383728027],["▁parents",-9.759617805480955],["▁Mr",-9.76170253753662],["▁lower",-9.762362480163574],["▁door",-9.762978553771973],["▁été",-9.763933181762695],["▁box",-9.764954566955566],["▁record",-9.765517234802246],["▁win",-9.765650749206545],["ster",-9.766402244567873],["▁America",-9.766748428344728],["▁immer",-9.768763542175291],["▁road",-9.76996898651123],["▁leading",-9.772759437561035],["▁section",-9.772838592529297],["▁Facebook",-9.772990226745604],["▁Most",-9.7738676071167],["iert",-9.77435302734375],["▁morning",-9.774497032165527],["▁asked",-9.775190353393556],["▁involved",-9.77551555633545],["▁hier",-9.777607917785645],["▁images",-9.77821159362793],["▁House",-9.778263092041016],["▁highly",-9.780763626098633],["▁Bar",-9.781620979309082],["▁Service",-9.782510757446287],["▁attention",-9.784318923950195],["▁normal",-9.784571647644045],["▁plans",-9.785883903503418],["▁source",-9.785930633544922],["▁Aus",-9.788092613220217],["▁benefits",-9.788655281066896],["▁ses",-9.789348602294922],["des",-9.789867401123049],["▁internet",-9.789949417114258],["▁materials",-9.790080070495604],["▁même",-9.791318893432615],["▁fine",-9.791522026062012],["▁fit",-9.792226791381836],["▁21",-9.792612075805664],["▁itself",-9.793739318847656],["▁wieder",-9.793972969055176],["▁Many",-9.795313835144045],["▁nature",-9.795402526855469],["▁pain",-9.795467376708984],["▁device",-9.796183586120604],["art",-9.796989440917969],["pro",-9.7971830368042],["▁France",-9.797271728515623],["lich",-9.797314643859863],["▁2014",-9.799542427062988],["▁inter",-9.799964904785156],["▁Li",-9.800453186035156],["▁career",-9.801136016845703],["▁looks",-9.80145263671875],["▁ré",-9.802245140075684],["▁ability",-9.802556991577148],["▁situation",-9.803154945373535],["ville",-9.803157806396484],["▁2016",-9.80319595336914],["tes",-9.803462982177734],["▁remember",-9.803879737854004],["▁TV",-9.803998947143556],["▁levels",-9.805853843688965],["▁subject",-9.807723999023438],["ally",-9.80844497680664],["▁reduce",-9.810232162475586],["▁*",-9.8108491897583],["▁Day",-9.810867309570312],["▁write",-9.812152862548828],["▁pick",-9.814252853393556],["ence",-9.815399169921877],["▁fresh",-9.816520690917969],["▁traditional",-9.816662788391112],["chi",-9.817692756652832],["▁machine",-9.818047523498535],["▁resources",-9.819125175476074],["â",-9.819502830505373],["▁countries",-9.820009231567385],["▁Even",-9.820342063903809],["▁green",-9.821283340454102],["▁Free",-9.821910858154297],["▁daily",-9.82211208343506],["▁respect",-9.823013305664062],["▁instead",-9.82371425628662],["▁Once",-9.82418155670166],["▁word",-9.824407577514648],["▁construction",-9.82489013671875],["▁huge",-9.825064659118652],["▁feature",-9.825220108032228],["▁themselves",-9.826369285583496],["▁loss",-9.82919692993164],["%",-9.830063819885254],["▁safety",-9.830256462097168],["▁economic",-9.831406593322754],["▁require",-9.831945419311523],["30",-9.83255386352539],["▁planning",-9.833393096923828],["▁mal",-9.834482192993164],["▁directly",-9.835214614868164],["ure",-9.835719108581545],["▁track",-9.835734367370604],["▁tool",-9.836135864257812],["▁positive",-9.836392402648926],["▁piece",-9.837076187133787],["▁parts",-9.837140083312988],["ang",-9.83740520477295],["▁trip",-9.837453842163086],["▁organization",-9.837935447692873],["▁sites",-9.838274002075195],["▁fire",-9.83831787109375],["▁China",-9.838876724243164],["▁Pour",-9.839289665222168],["▁plant",-9.84011459350586],["▁board",-9.840341567993164],["▁interesting",-9.841227531433104],["gar",-9.841713905334473],["▁fie",-9.841752052307127],["▁late",-9.842166900634766],["▁wall",-9.842294692993164],["▁walk",-9.84274196624756],["ham",-9.843868255615234],["▁Ne",-9.84542751312256],["▁First",-9.845462799072266],["▁double",-9.845701217651367],["▁budget",-9.847657203674316],["▁cases",-9.847670555114746],["cal",-9.849738121032717],["old",-9.849796295166016],["▁Bo",-9.849822998046877],["▁spend",-9.850439071655272],["port",-9.850828170776367],["▁worth",-9.850934028625488],["ique",-9.851308822631836],["nes",-9.85190486907959],["cul",-9.852272033691406],["era",-9.85296630859375],["▁text",-9.853032112121582],["▁decided",-9.85494899749756],["▁floor",-9.855036735534668],["▁requirements",-9.85529899597168],["▁cel",-9.855361938476562],["▁effect",-9.855412483215332],["▁gibt",-9.856159210205078],["▁news",-9.859238624572754],["▁vos",-9.85993194580078],["▁players",-9.86057186126709],["▁saw",-9.862728118896484],["▁auto",-9.863056182861328],["▁town",-9.863207817077637],["▁myself",-9.864106178283691],["▁lost",-9.864988327026367],["▁$",-9.865124702453612],["▁June",-9.86609172821045],["▁significant",-9.866196632385254],["▁giving",-9.866230010986328],["▁stand",-9.866744041442873],["▁stock",-9.867657661437988],["▁hold",-9.86776638031006],["▁Are",-9.869078636169434],["▁shall",-9.86923599243164],["▁ideal",-9.869279861450195],["▁London",-9.87080192565918],["▁answer",-9.870853424072266],["▁Vor",-9.87157917022705],["▁gives",-9.87311553955078],["ative",-9.87316608428955],["▁timp",-9.873167991638184],["▁center",-9.87362289428711],["▁Group",-9.87458038330078],["▁sans",-9.87514305114746],["▁Ar",-9.875466346740724],["▁Ma",-9.875568389892578],["▁reach",-9.876279830932615],["ren",-9.876652717590332],["▁More",-9.877446174621582],["mit",-9.878068923950195],["▁guide",-9.87833309173584],["▁fully",-9.878828048706056],["▁Since",-9.878952980041504],["▁Inc",-9.87923812866211],["▁culture",-9.879780769348145],["eat",-9.880531311035156],["▁written",-9.880722999572754],["▁Ho",-9.881338119506836],["▁India",-9.881625175476074],["▁Well",-9.881708145141602],["back",-9.881752967834473],["▁goes",-9.88217067718506],["▁completely",-9.88217544555664],["▁tour",-9.883081436157228],["▁began",-9.883196830749512],["▁picture",-9.883255958557127],["▁mare",-9.88353157043457],["▁playing",-9.88422393798828],["▁trebuie",-9.884926795959473],["ils",-9.884940147399902],["chen",-9.885220527648926],["▁hit",-9.885416984558104],["▁complex",-9.88591480255127],["▁Thank",-9.886140823364258],["▁Let",-9.886350631713867],["▁applications",-9.88711643218994],["▁friend",-9.888312339782717],["▁English",-9.889549255371094],["▁charge",-9.890040397644045],["▁recommend",-9.89345359802246],["▁message",-9.893672943115234],["In",-9.893722534179688],["▁Mar",-9.894762992858888],["pp",-9.895845413208008],["▁method",-9.89692497253418],["▁successful",-9.89700412750244],["tion",-9.898880958557127],["▁release",-9.899920463562012],["▁creating",-9.900403022766112],["▁despre",-9.90141773223877],["esc",-9.90243434906006],["▁eye",-9.902752876281738],["▁apply",-9.905945777893066],["net",-9.906000137329102],["side",-9.906539916992188],["▁ar",-9.906949996948242],["▁platform",-9.90713882446289],["▁touch",-9.907329559326172],["▁towards",-9.90785026550293],["▁match",-9.90822410583496],["▁Black",-9.909344673156738],["▁fall",-9.90961742401123],["▁ground",-9.910234451293944],["▁High",-9.910740852355955],["▁Q",-9.911155700683594],["▁schon",-9.911709785461426],["▁hotel",-9.911751747131348],["▁prices",-9.912031173706056],["▁developed",-9.913411140441896],["uk",-9.913476943969728],["ide",-9.91367244720459],["▁September",-9.91370964050293],["ized",-9.914202690124512],["▁War",-9.91470432281494],["!!",-9.916285514831545],["▁grow",-9.916997909545898],["▁watch",-9.917067527770996],["▁storage",-9.917412757873535],["eau",-9.917513847351074],["can",-9.918373107910156],["▁Get",-9.91952419281006],["▁See",-9.91953182220459],["▁European",-9.919703483581545],["▁language",-9.91982650756836],["ează",-9.920175552368164],["▁court",-9.920334815979004],["▁Why",-9.921106338500977],["▁hear",-9.921342849731444],["▁doar",-9.921804428100586],["lan",-9.92330265045166],["▁Christmas",-9.923810958862305],["▁Web",-9.923871994018556],["vo",-9.92405891418457],["▁sent",-9.924983024597168],["▁businesses",-9.925868034362791],["▁Red",-9.926278114318848],["tel",-9.92637538909912],["▁Ha",-9.926508903503418],["▁wonderful",-9.926653861999512],["ations",-9.926738739013672],["za",-9.92748737335205],["▁22",-9.928659439086914],["▁thinking",-9.92941665649414],["▁became",-9.929733276367188],["▁cool",-9.929835319519045],["▁speed",-9.930370330810549],["mar",-9.930426597595217],["▁--",-9.931743621826172],["▁groups",-9.931920051574709],["▁interested",-9.93198299407959],["ak",-9.93218994140625],["▁60",-9.932672500610352],["▁screen",-9.93370246887207],["▁Design",-9.933789253234863],["▁limited",-9.935648918151855],["▁expected",-9.935959815979004],["▁opportunities",-9.936376571655272],["▁regular",-9.936870574951172],["off",-9.93702220916748],["▁Best",-9.937298774719238],["Re",-9.938436508178713],["▁ihr",-9.938719749450684],["▁Great",-9.938907623291016],["▁employees",-9.93924617767334],["▁custom",-9.939679145812988],["▁multe",-9.940123558044434],["let",-9.940876007080078],["▁benefit",-9.942487716674805],["▁term",-9.942623138427734],["▁bine",-9.942869186401367],["▁deep",-9.94452667236328],["▁August",-9.94526481628418],["▁President",-9.94538116455078],["▁Auf",-9.94585418701172],["▁wish",-9.946924209594728],["▁sometimes",-9.947274208068848],["ari",-9.947793960571287],["▁pressure",-9.948184967041016],["▁ani",-9.94859504699707],["▁trade",-9.94993019104004],["▁firm",-9.950027465820312],["▁comment",-9.95003604888916],["▁November",-9.950242042541504],["▁expect",-9.951102256774902],["▁2012",-9.952491760253906],["▁Ich",-9.95328140258789],["▁relationship",-9.95363998413086],["▁active",-9.954682350158691],["org",-9.954710960388184],["▁heat",-9.956732749938965],["▁wood",-9.95678997039795],["▁notre",-9.957921028137209],["▁function",-9.958330154418944],["▁2.",-9.95909309387207],["▁wedding",-9.960049629211426],["▁starting",-9.96123504638672],["▁Health",-9.961249351501465],["\",",-9.961713790893556],["▁death",-9.962173461914062],["▁pages",-9.962764739990234],["▁vehicle",-9.96293830871582],["▁request",-9.963874816894531],["▁helps",-9.963916778564451],["▁blue",-9.964017868041992],["▁analysis",-9.964414596557615],["▁posted",-9.964544296264648],["▁healthy",-9.964814186096191],["▁contract",-9.964988708496094],["▁•",-9.96526336669922],["▁Each",-9.965293884277344],["▁Fa",-9.966179847717283],["▁dintre",-9.966221809387209],["▁Friday",-9.967202186584473],["▁considered",-9.967992782592772],["cher",-9.96826457977295],["▁quick",-9.968731880187988],["▁understanding",-9.96916389465332],["▁condition",-9.969378471374512],["ization",-9.971049308776855],["▁document",-9.971664428710938],["▁prevent",-9.971890449523926],["▁growing",-9.9725341796875],["▁protection",-9.972620964050291],["▁cat",-9.974002838134766],["▁#",-9.975058555603027],["10",-9.975275039672852],["▁join",-9.9759521484375],["▁serve",-9.976580619812012],["▁blood",-9.977095603942873],["▁July",-9.977341651916504],["▁region",-9.977787971496582],["car",-9.97933578491211],["▁entre",-9.979788780212402],["▁physical",-9.981287002563477],["▁cash",-9.9813232421875],["aux",-9.981823921203612],["ng",-9.982654571533203],["▁stage",-9.98281478881836],["▁seem",-9.983034133911133],["▁definitely",-9.983795166015623],["▁investment",-9.983827590942385],["▁purpose",-9.985441207885742],["▁begin",-9.985486030578612],["®",-9.985495567321776],["▁break",-9.98570156097412],["itate",-9.987293243408203],["▁moving",-9.989288330078123],["▁met",-9.990678787231444],["ize",-9.990833282470703],["▁select",-9.991165161132812],["▁tous",-9.991310119628906],["▁Europe",-9.991639137268066],["@",-9.992724418640137],["▁individuals",-9.993392944335938],["▁Zeit",-9.993524551391602],["gu",-9.995670318603516],["▁unit",-9.995753288269045],["▁noi",-9.996089935302734],["▁places",-9.996171951293944],["all",-9.99632453918457],["▁wait",-9.996755599975586],["▁difference",-9.997234344482422],["▁round",-9.99801540374756],["50",-9.99953842163086],["rie",-9.999545097351074],["▁Et",-9.999933242797852],["20",-10.000725746154783],["▁activity",-10.000792503356934],["е",-10.000866889953612],["▁Windows",-10.001087188720703],["▁produce",-10.001385688781738],["▁keine",-10.00212574005127],["▁Air",-10.002567291259766],["▁January",-10.004890441894531],["▁deux",-10.005081176757812],["▁entry",-10.005208015441896],["king",-10.006500244140623],["▁goals",-10.006736755371094],["▁previous",-10.0077543258667],["▁+",-10.00803565979004],["▁Business",-10.008259773254396],["ont",-10.008552551269531],["▁Sunday",-10.008694648742676],["▁offering",-10.01035976409912],["▁response",-10.011018753051758],["▁surface",-10.011393547058104],["▁Department",-10.01212215423584],["▁exactly",-10.01219081878662],["▁Online",-10.012577056884766],["dem",-10.013803482055664],["ischen",-10.01400661468506],["▁hands",-10.015100479125977],["▁hour",-10.016197204589844],["▁dog",-10.01694679260254],["▁damage",-10.017006874084473],["▁capital",-10.018792152404783],["▁toate",-10.020488739013672],["▁wrong",-10.020674705505373],["unui",-10.022201538085938],["tri",-10.02397918701172],["▁sell",-10.023999214172363],["▁published",-10.024175643920898],["▁families",-10.024675369262695],["▁avoid",-10.025490760803224],["▁Ko",-10.025506019592283],["▁mod",-10.026697158813477],["rat",-10.027653694152832],["▁Make",-10.0299654006958],["▁October",-10.030153274536133],["▁former",-10.031285285949709],["▁Services",-10.03281021118164],["▁felt",-10.033045768737791],["▁selection",-10.033309936523438],["eaza",-10.034177780151367],["gel",-10.034422874450684],["▁Good",-10.035792350769045],["▁actual",-10.0364351272583],["▁gut",-10.036853790283203],["▁gas",-10.03708553314209],["15",-10.038182258605955],["▁structure",-10.038285255432127],["▁act",-10.0386381149292],["▁Zu",-10.038654327392578],["▁creative",-10.039134979248049],["▁Vi",-10.039159774780272],["▁shop",-10.04066276550293],["▁Lo",-10.040735244750977],["şi",-10.042192459106444],["▁mis",-10.042224884033203],["ungen",-10.042301177978516],["▁fan",-10.04240608215332],["▁|",-10.043391227722168],["▁Bei",-10.044037818908691],["▁protect",-10.04454517364502],["▁Na",-10.0447998046875],["q",-10.045693397521973],["ok",-10.04710578918457],["▁California",-10.047263145446776],["▁political",-10.047301292419434],["25",-10.047530174255373],["▁feeling",-10.047913551330566],["▁ces",-10.048321723937988],["▁display",-10.048857688903809],["▁essential",-10.04964542388916],["ând",-10.049971580505373],["▁seine",-10.050551414489746],["▁soft",-10.050915718078612],["ach",-10.05102252960205],["▁happen",-10.051118850708008],["▁Paul",-10.053346633911133],["▁Cu",-10.054024696350098],["house",-10.055376052856444],["ante",-10.05582046508789],["▁easier",-10.056551933288574],["▁sort",-10.0567045211792],["▁Post",-10.057138442993164],["▁accept",-10.05730152130127],["field",-10.05764865875244],["zen",-10.057741165161133],["▁character",-10.057848930358888],["▁beginning",-10.058433532714844],["▁Jesus",-10.058760643005373],["▁weekend",-10.059663772583008],["▁certainly",-10.06114387512207],["▁THE",-10.061254501342772],["▁alle",-10.06189250946045],["▁transport",-10.062220573425291],["▁Saturday",-10.063043594360352],["▁basic",-10.064136505126951],["▁loved",-10.06431770324707],["ros",-10.065333366394045],["▁offered",-10.065996170043944],["▁camera",-10.067024230957031],["▁Green",-10.06789779663086],["ology",-10.069480895996094],["ä",-10.069646835327148],["▁manage",-10.070416450500488],["▁paid",-10.070881843566896],["▁advice",-10.071617126464844],["▁patient",-10.07223415374756],["▁spent",-10.072272300720217],["▁mir",-10.07236671447754],["▁baby",-10.072400093078612],["ö",-10.073193550109863],["▁basis",-10.073338508605955],["▁cancer",-10.073765754699709],["▁Although",-10.07400894165039],["▁gift",-10.074336051940918],["▁3.",-10.074871063232422],["dieser",-10.075157165527344],["▁overall",-10.07520580291748],["▁Sch",-10.075265884399414],["▁Ex",-10.076258659362791],["▁December",-10.07689094543457],["▁released",-10.078214645385742],["▁prior",-10.07900333404541],["▁sowie",-10.081072807312012],["▁club",-10.081326484680176],["▁Street",-10.081535339355469],["▁College",-10.08254623413086],["▁î",-10.083059310913086],["over",-10.083159446716309],["▁gave",-10.08454704284668],["▁truly",-10.084784507751465],["par",-10.084806442260742],["▁Canada",-10.084888458251951],["▁existing",-10.085420608520508],["lie",-10.08633518218994],["▁ganz",-10.086658477783203],["▁setting",-10.087109565734863],["▁supply",-10.08739185333252],["▁college",-10.08754062652588],["▁communication",-10.088407516479492],["▁23",-10.088834762573242],["▁pass",-10.091546058654783],["▁devices",-10.091872215270996],["▁glass",-10.092083930969238],["▁experienced",-10.092395782470703],["▁grand",-10.093363761901855],["▁Po",-10.093396186828612],["▁beyond",-10.094029426574709],["▁format",-10.094165802001951],["▁mon",-10.09461498260498],["▁perform",-10.094635009765623],["sten",-10.095130920410156],["▁1,",-10.096270561218262],["▁Per",-10.096640586853027],["▁sold",-10.097247123718262],["▁rates",-10.0972900390625],["▁regarding",-10.097782135009766],["▁Paris",-10.098291397094728],["▁Dar",-10.099579811096191],["▁challenge",-10.099649429321287],["▁feet",-10.100564002990724],["▁Su",-10.102017402648926],["je",-10.102593421936035],["▁Bank",-10.102627754211426],["ven",-10.103126525878906],["jo",-10.103290557861328],["▁band",-10.10348892211914],["▁delivery",-10.104915618896484],["Vous",-10.104924201965332],["tele",-10.10495376586914],["▁East",-10.105379104614258],["▁pictures",-10.106067657470703],["▁useful",-10.106481552124023],["*",-10.107648849487305],["▁increased",-10.107746124267578],["▁stories",-10.108119010925291],["sion",-10.108280181884766],["bra",-10.108345985412598],["▁brought",-10.108466148376465],["▁effort",-10.109898567199709],["▁payment",-10.11058235168457],["▁heard",-10.110925674438477],["▁played",-10.111245155334473],["▁White",-10.111417770385742],["▁metal",-10.111721992492676],["tal",-10.111754417419434],["▁engine",-10.112006187438965],["▁Club",-10.11218547821045],["ical",-10.114581108093262],["▁effects",-10.115421295166016],["▁degree",-10.115763664245604],["▁bed",-10.1159086227417],["ette",-10.115991592407228],["▁David",-10.11638641357422],["°",-10.117666244506836],["▁Au",-10.117938041687012],["▁Company",-10.11845874786377],["▁player",-10.11938190460205],["▁Today",-10.120569229125977],["▁maintain",-10.12093448638916],["▁minute",-10.121193885803224],["mail",-10.122172355651855],["▁race",-10.122366905212402],["▁comfortable",-10.123887062072754],["▁responsible",-10.124085426330566],["vor",-10.124622344970703],["▁associated",-10.124695777893066],["▁weather",-10.124701499938965],["▁$1",-10.125639915466309],["▁tried",-10.126176834106444],["▁Check",-10.127649307250977],["▁solid",-10.127864837646484],["▁movie",-10.12836456298828],["▁coffee",-10.12874698638916],["board",-10.129073143005373],["▁po",-10.12946605682373],["▁warm",-10.129583358764648],["▁connect",-10.131733894348145],["▁Ad",-10.133807182312012],["work",-10.133859634399414],["mal",-10.13397216796875],["▁Act",-10.134634971618652],["▁achieve",-10.134769439697266],["▁Nach",-10.136604309082031],["www",-10.136669158935549],["term",-10.13672161102295],["▁claim",-10.137251853942873],["▁particularly",-10.138245582580566],["▁cas",-10.13839626312256],["▁furniture",-10.138461112976074],["▁finish",-10.13896369934082],["▁temps",-10.139026641845703],["▁disease",-10.139115333557127],["▁lots",-10.139196395874023],["▁ball",-10.139307975769045],["▁sun",-10.14010238647461],["▁strategy",-10.140498161315918],["bre",-10.140518188476562],["▁mine",-10.141541481018066],["▁Click",-10.141743659973145],["ran",-10.141983032226562],["▁Will",-10.142234802246094],["▁garden",-10.142974853515623],["▁stuff",-10.14359188079834],["▁limit",-10.144641876220703],["▁bottom",-10.14494800567627],["▁shown",-10.144962310791016],["ship",-10.145271301269531],["▁habe",-10.145858764648438],["▁Super",-10.14621925354004],["▁completed",-10.146971702575684],["▁wine",-10.146979331970217],["ische",-10.147262573242188],["▁largest",-10.147466659545898],["▁appropriate",-10.148261070251465],["▁immediately",-10.150248527526855],["▁Hi",-10.152358055114746],["▁trust",-10.152767181396484],["ability",-10.154254913330078],["▁powerful",-10.155101776123049],["▁helping",-10.155620574951172],["▁schedule",-10.155688285827637],["▁correct",-10.155707359313965],["▁transfer",-10.156496047973633],["pre",-10.15665340423584],["▁journey",-10.15688419342041],["pm",-10.157002449035645],["don",-10.158435821533203],["▁highest",-10.159249305725098],["▁finally",-10.15999698638916],["form",-10.160258293151855],["▁extremely",-10.160404205322266],["▁window",-10.16050148010254],["▁Over",-10.162222862243652],["▁remove",-10.162469863891602],["wood",-10.162479400634766],["▁2013",-10.163631439208984],["▁mother",-10.164072036743164],["▁Auto",-10.16436767578125],["▁annual",-10.164615631103516],["▁Star",-10.164834976196287],["▁Di",-10.166138648986816],["о",-10.16711139678955],["▁gold",-10.167129516601562],["tar",-10.167352676391602],["ju",-10.167750358581545],["▁Use",-10.169474601745604],["▁thanks",-10.16960334777832],["▁centre",-10.170127868652344],["▁Australia",-10.170358657836914],["▁estate",-10.170504570007324],["▁eyes",-10.1714448928833],["▁force",-10.171592712402344],["▁income",-10.17395305633545],["▁science",-10.174036026000977],["ori",-10.174230575561523],["▁enter",-10.174851417541504],["▁28",-10.175408363342283],["ire",-10.17568302154541],["▁schools",-10.17579746246338],["▁restaurant",-10.176088333129885],["▁Council",-10.177032470703123],["aus",-10.177885055541992],["▁agree",-10.17905330657959],["▁campaign",-10.179192543029783],["▁Ta",-10.179428100585938],["▁letter",-10.179814338684082],["▁central",-10.179931640625],["▁Because",-10.180054664611816],["▁path",-10.180349349975586],["▁loc",-10.180882453918455],["▁files",-10.182587623596191],["▁population",-10.182705879211426],["▁explore",-10.182723999023438],["▁mid",-10.182734489440918],["▁concept",-10.182748794555664],["▁church",-10.183015823364258],["80",-10.183026313781738],["▁einfach",-10.185834884643556],["▁reasons",-10.186690330505373],["▁determine",-10.186755180358888],["▁February",-10.187095642089844],["▁evidence",-10.18797779083252],["▁sleep",-10.188036918640137],["▁Board",-10.188652992248535],["▁maybe",-10.189635276794434],["▁wasn",-10.189701080322266],["▁Monday",-10.190101623535156],["▁director",-10.190481185913086],["well",-10.190974235534668],["During",-10.191001892089844],["▁sweet",-10.191061973571776],["▁assist",-10.19124984741211],["▁police",-10.191511154174805],["▁repair",-10.191729545593262],["▁techniques",-10.191733360290527],["▁served",-10.191808700561523],["vi",-10.19203758239746],["▁sports",-10.192331314086914],["▁opening",-10.192401885986328],["▁ones",-10.192731857299805],["▁notice",-10.19346046447754],["▁PC",-10.193547248840332],["▁alte",-10.194242477416992],["▁Bi",-10.194340705871582],["▁cold",-10.195606231689451],["▁billion",-10.195794105529783],["▁balance",-10.196361541748049],["cer",-10.196417808532717],["▁nearly",-10.196725845336914],["▁wear",-10.197259902954102],["free",-10.19760799407959],["▁Have",-10.197748184204102],["▁comfort",-10.199211120605469],["▁studies",-10.199225425720217],["▁traffic",-10.199540138244627],["▁item",-10.200214385986328],["▁teaching",-10.200467109680176],["▁turned",-10.201326370239258],["isation",-10.201354026794434],["12",-10.202038764953612],["▁greater",-10.202167510986328],["▁knew",-10.20233154296875],["▁Association",-10.203333854675291],["▁Office",-10.203802108764648],["▁established",-10.20408535003662],["45",-10.20417022705078],["▁Love",-10.204318046569824],["▁changed",-10.204882621765137],["▁pan",-10.205184936523438],["van",-10.20565414428711],["▁Mi",-10.205663681030272],["▁tend",-10.20637321472168],["▁connection",-10.206522941589355],["▁lack",-10.206954002380373],["▁bank",-10.20846462249756],["cat",-10.208720207214355],["▁helped",-10.209071159362791],["▁spot",-10.209417343139648],["▁spring",-10.20974063873291],["▁Wi",-10.210912704467772],["▁Mac",-10.211682319641112],["▁Christ",-10.21201515197754],["▁saying",-10.212835311889648],["▁General",-10.213062286376951],["▁port",-10.213099479675291],["▁Mal",-10.213156700134276],["▁System",-10.213486671447754],["▁According",-10.2152738571167],["▁chiar",-10.21568489074707],["log",-10.21576976776123],["▁mix",-10.215974807739258],["▁Lake",-10.216042518615724],["▁intr",-10.216590881347656],["▁deliver",-10.216793060302734],["mon",-10.216931343078612],["▁Ro",-10.217060089111328],["▁Management",-10.217504501342772],["bri",-10.21871852874756],["▁pieces",-10.218774795532228],["▁announced",-10.218926429748535],["▁Yes",-10.219268798828123],["▁dark",-10.220884323120115],["val",-10.221765518188477],["▁rights",-10.22309684753418],["▁Diese",-10.223100662231444],["ki",-10.223350524902344],["vent",-10.22375774383545],["▁born",-10.22380542755127],["▁muss",-10.224031448364258],["compared",-10.224660873413086],["▁demand",-10.224669456481934],["▁handle",-10.225493431091309],["▁mode",-10.22605800628662],["lic",-10.226137161254885],["▁ahead",-10.226436614990234],["▁sharing",-10.227599143981934],["▁micro",-10.227779388427734],["▁Par",-10.228626251220703],["▁Every",-10.22950553894043],["▁bag",-10.229736328125],["▁daca",-10.22974967956543],["▁Apple",-10.23022174835205],["▁Mark",-10.230239868164062],["▁larger",-10.231284141540527],["eze",-10.231978416442873],["▁progress",-10.232234001159668],["▁stress",-10.232929229736328],["▁cards",-10.23366355895996],["▁driving",-10.233738899230955],["▁dry",-10.233970642089844],["▁relevant",-10.234556198120115],["▁Jo",-10.234825134277344],["▁tree",-10.235036849975586],["▁reported",-10.235770225524902],["ities",-10.23577880859375],["▁tea",-10.235806465148926],["▁although",-10.236145973205566],["▁Research",-10.236261367797852],["▁pool",-10.23691463470459],["▁fin",-10.237163543701172],["▁Und",-10.238130569458008],["▁decide",-10.239217758178713],["▁expert",-10.239344596862791],["rate",-10.239428520202637],["zeit",-10.239971160888672],["▁26",-10.24040412902832],["▁Ka",-10.24056339263916],["▁fix",-10.240666389465332],["igen",-10.240713119506836],["▁direction",-10.241188049316406],["▁star",-10.241661071777344],["▁middle",-10.24188995361328],["▁Ja",-10.241962432861328],["▁Land",-10.24207878112793],["ken",-10.242605209350586],["▁button",-10.242630004882812],["▁rules",-10.242656707763672],["▁également",-10.242706298828123],["▁viel",-10.243158340454102],["▁welcome",-10.243682861328123],["că",-10.243932723999023],["▁Top",-10.245308876037598],["▁allowed",-10.245487213134766],["▁tip",-10.24558448791504],["▁cei",-10.245768547058104],["▁Nous",-10.246004104614258],["té",-10.246850967407228],["▁unei",-10.246903419494627],["▁efforts",-10.247260093688965],["▁note",-10.247719764709473],["▁title",-10.247977256774902],["ric",-10.248047828674316],["berg",-10.248252868652344],["▁ainsi",-10.248576164245604],["▁led",-10.248713493347168],["▁alone",-10.248786926269531],["ward",-10.249215126037598],["▁vie",-10.249323844909668],["▁brain",-10.249427795410156],["light",-10.250100135803224],["▁Court",-10.250598907470703],["set",-10.250869750976562],["▁steps",-10.251251220703123],["pri",-10.251391410827637],["Q",-10.251654624938965],["sti",-10.251938819885254],["▁voice",-10.252121925354004],["▁models",-10.252705574035645],["▁parties",-10.25442886352539],["▁radio",-10.255270957946776],["▁mission",-10.25545883178711],["▁methods",-10.255658149719238],["▁Te",-10.256019592285156],["air",-10.256489753723145],["▁essay",-10.256719589233398],["my",-10.256826400756836],["▁competition",-10.257049560546877],["ses",-10.257447242736816],["▁serious",-10.258724212646484],["▁Ti",-10.258733749389648],["▁Hand",-10.259561538696287],["not",-10.25958251953125],["▁winter",-10.261277198791504],["24",-10.261724472045898],["▁vision",-10.26174545288086],["▁technical",-10.262110710144045],["▁cross",-10.262799263000488],["▁update",-10.262947082519531],["▁Team",-10.263564109802246],["▁evening",-10.264286041259766],["▁experts",-10.26435661315918],["part",-10.264640808105469],["▁wo",-10.26519012451172],["▁App",-10.265729904174805],["▁peu",-10.266267776489258],["▁mich",-10.26630687713623],["▁reports",-10.267001152038574],["▁km",-10.26759433746338],["▁print",-10.2678804397583],["▁Hotel",-10.268101692199709],["▁earlier",-10.268235206604004],["▁uses",-10.26826286315918],["▁menu",-10.26841640472412],["▁miles",-10.26845645904541],["▁classes",-10.268463134765623],["▁mo",-10.268525123596191],["▁loan",-10.2691011428833],["▁host",-10.269192695617676],["▁author",-10.269274711608888],["-1",-10.269434928894045],["▁bun",-10.269940376281738],["19",-10.270011901855469],["uch",-10.270670890808104],["ble",-10.270813941955566],["▁holiday",-10.270859718322754],["los",-10.271894454956056],["▁looked",-10.272663116455078],["▁Test",-10.272759437561035],["▁moved",-10.273000717163086],["▁numbers",-10.273306846618652],["▁covered",-10.273405075073242],["ker",-10.273696899414062],["TM",-10.273768424987791],["▁album",-10.274727821350098],["▁27",-10.27476692199707],["▁când",-10.27523422241211],["▁shopping",-10.275248527526855],["▁Ihr",-10.27531623840332],["▁requires",-10.275786399841309],["▁USA",-10.275909423828123],["000",-10.275951385498049],["▁official",-10.276010513305664],["▁states",-10.27634620666504],["▁tips",-10.276570320129396],["ible",-10.277321815490724],["▁Lu",-10.27756404876709],["ces",-10.278343200683594],["▁figure",-10.27839469909668],["▁Take",-10.278576850891112],["▁după",-10.278687477111816],["▁teams",-10.278980255126951],["▁song",-10.279138565063477],["▁master",-10.279386520385742],["ED",-10.279841423034668],["▁cleaning",-10.280523300170898],["▁drop",-10.280651092529297],["▁primary",-10.2808837890625],["▁Life",-10.28108024597168],["▁carry",-10.281129837036133],["▁initial",-10.28127098083496],["▁encore",-10.281617164611816],["▁Add",-10.281670570373535],["▁woman",-10.282076835632324],["▁Water",-10.282219886779783],["▁advantage",-10.28277587890625],["see",-10.28323459625244],["ré",-10.28334140777588],["▁motor",-10.283479690551758],["mel",-10.2838716506958],["▁finding",-10.284419059753418],["▁plastic",-10.286365509033203],["▁IT",-10.286602973937988],["▁Church",-10.286916732788086],["▁shape",-10.287345886230469],["▁gets",-10.287763595581056],["▁followed",-10.288186073303224],["▁100%",-10.288315773010254],["▁Program",-10.28912353515625],["▁Another",-10.28934383392334],["▁zwei",-10.289522171020508],["▁father",-10.289839744567873],["▁rich",-10.290282249450684],["où",-10.290810585021973],["▁lines",-10.290934562683104],["▁distance",-10.291757583618164],["▁cell",-10.291876792907717],["▁parte",-10.292072296142578],["bit",-10.292445182800291],["▁perhaps",-10.292749404907228],["rii",-10.293590545654297],["▁session",-10.294137954711914],["▁Pentru",-10.294528007507324],["ING",-10.295049667358398],["ants",-10.29547882080078],["▁remain",-10.295543670654297],["13",-10.295588493347168],["▁finished",-10.295763969421388],["bel",-10.298725128173828],["▁organizations",-10.299455642700195],["▁Any",-10.299896240234377],["▁taste",-10.300277709960938],["Whether",-10.300600051879885],["ram",-10.300874710083008],["like",-10.301307678222656],["▁artist",-10.301319122314451],["aire",-10.303369522094728],["▁French",-10.303386688232422],["▁donc",-10.303634643554688],["ow",-10.30386734008789],["▁200",-10.303993225097656],["▁paint",-10.304465293884276],["▁Open",-10.304535865783691],["▁appear",-10.304722785949709],["▁Washington",-10.304765701293944],["▁target",-10.30491828918457],["pir",-10.305578231811523],["▁generally",-10.305987358093262],["▁British",-10.306790351867676],["▁seven",-10.306937217712402],["▁bio",-10.307162284851074],["▁sector",-10.307358741760254],["90",-10.30777359008789],["▁fapt",-10.307881355285645],["▁prefer",-10.308316230773926],["▁partner",-10.308427810668944],["ăm",-10.308547973632812],["▁diverse",-10.308610916137695],["▁onto",-10.309283256530762],["▁refer",-10.309828758239746],["▁Law",-10.310302734375],["▁Ri",-10.310596466064451],["▁critical",-10.310735702514648],["▁copy",-10.310897827148438],["ck",-10.311517715454102],["ix",-10.311732292175291],["tag",-10.311793327331545],["▁Road",-10.311936378479004],["▁concern",-10.312053680419922],["▁maximum",-10.312095642089844],["▁train",-10.312148094177246],["▁într",-10.312189102172852],["ura",-10.313023567199709],["▁Qu",-10.313481330871582],["▁links",-10.313538551330566],["▁audience",-10.313969612121582],["▁foot",-10.31455421447754],["▁Blue",-10.314605712890623],["ification",-10.315386772155762],["▁developing",-10.315847396850586],["▁interior",-10.315876007080078],["=",-10.316556930541992],["▁aceasta",-10.31698989868164],["▁dedicated",-10.317373275756836],["▁movement",-10.317383766174316],["sta",-10.31886863708496],["▁challenges",-10.319018363952637],["inte",-10.319074630737305],["▁Euro",-10.31907558441162],["▁classic",-10.320341110229492],["▁Um",-10.320767402648926],["▁alternative",-10.321407318115234],["mann",-10.321614265441896],["▁Une",-10.322278022766112],["qu",-10.322415351867676],["▁heavy",-10.322434425354004],["▁install",-10.322484970092772],["▁fiind",-10.322504043579102],["▁leaders",-10.323003768920898],["▁views",-10.323019981384276],["▁www",-10.323084831237791],["▁standards",-10.323270797729492],["ong",-10.323580741882324],["40",-10.323833465576172],["▁cm",-10.323848724365234],["▁park",-10.32432460784912],["▁himself",-10.324419021606444],["▁People",-10.324649810791016],["▁separate",-10.324843406677246],["▁secure",-10.325018882751465],["sie",-10.325084686279297],["▁maintenance",-10.325199127197266],["▁encourage",-10.32766056060791],["ein",-10.328139305114746],["▁reviews",-10.328202247619627],["▁Michael",-10.328210830688477],["▁background",-10.328283309936523],["▁therefore",-10.328433990478516],["▁server",-10.328487396240234],["▁dream",-10.328742027282717],["ping",-10.329025268554688],["▁block",-10.329855918884276],["▁2009",-10.330734252929688],["▁facilities",-10.330931663513184],["▁II",-10.33136749267578],["▁attend",-10.33156967163086],["▁cap",-10.33224105834961],["35",-10.332416534423828],["▁steel",-10.332796096801758],["▁shared",-10.333391189575195],["▁doctor",-10.333939552307127],["▁River",-10.33411693572998],["▁Bay",-10.33445644378662],["▁length",-10.335005760192873],["▁jobs",-10.335466384887695],["▁Plus",-10.335992813110352],["▁station",-10.336140632629396],["▁elements",-10.336268424987791],["▁rock",-10.336668014526367],["▁professionals",-10.336670875549316],["cle",-10.336777687072754],["▁dont",-10.336873054504396],["urilor",-10.337142944335938],["▁gain",-10.337271690368652],["▁programme",-10.33754062652588],["▁Cor",-10.338377952575684],["▁leader",-10.338542938232422],["ării",-10.33876895904541],["▁>",-10.339137077331545],["▁task",-10.339471817016602],["▁seeing",-10.339943885803224],["▁statement",-10.34045696258545],["vin",-10.341094017028809],["▁fish",-10.341700553894045],["▁advanced",-10.342403411865234],["▁discuss",-10.342494010925291],["die",-10.342904090881348],["isch",-10.342944145202637],["▁plenty",-10.342947959899902],["▁Hall",-10.343120574951172],["▁Other",-10.343339920043944],["▁homes",-10.344944953918455],["▁Ni",-10.345016479492188],["▁testing",-10.345102310180664],["▁Last",-10.345392227172852],["▁Note",-10.345595359802246],["▁talking",-10.345934867858888],["▁exchange",-10.347042083740234],["▁exercise",-10.347189903259276],["▁cea",-10.347546577453612],["▁wife",-10.34820556640625],["▁Für",-10.348480224609377],["▁Texas",-10.34981918334961],["▁fr",-10.35065746307373],["▁speak",-10.350894927978516],["17",-10.351007461547852],["70",-10.351462364196776],["▁promote",-10.351851463317873],["tul",-10.351990699768066],["apos",-10.35208511352539],["▁Jahr",-10.35214900970459],["▁Trump",-10.35220432281494],["▁ohne",-10.352357864379885],["▁learned",-10.353700637817385],["▁Sp",-10.353803634643556],["▁owner",-10.354275703430176],["mor",-10.354422569274902],["▁fois",-10.354452133178713],["▁meaning",-10.35518741607666],["▁dacă",-10.355249404907228],["nic",-10.355484008789062],["а",-10.355525970458984],["14",-10.355767250061035],["▁driver",-10.356258392333984],["▁Amazon",-10.3567533493042],["▁flow",-10.358469009399414],["▁shot",-10.358726501464844],["▁sous",-10.35914421081543],["▁Gold",-10.359339714050291],["▁straight",-10.359562873840332],["▁conference",-10.359610557556152],["▁peste",-10.359662055969238],["whose",-10.36030101776123],["▁installation",-10.36050796508789],["▁produced",-10.360607147216797],["▁independent",-10.36192512512207],["▁Institute",-10.362021446228027],["▁James",-10.36237335205078],["▁mental",-10.362601280212402],["ara",-10.362798690795898],["ium",-10.363021850585938],["▁husband",-10.36306095123291],["▁guests",-10.36390781402588],["27",-10.364319801330566],["▁Che",-10.364651679992676],["▁Indian",-10.364694595336914],["zer",-10.36478042602539],["▁minimum",-10.364962577819824],["500",-10.36509609222412],["▁sit",-10.36561393737793],["put",-10.36656379699707],["▁avea",-10.36665153503418],["▁ride",-10.367088317871094],["gan",-10.367152214050291],["▁Ke",-10.36747932434082],["book",-10.367515563964844],["ages",-10.368019104003906],["▁presented",-10.368157386779783],["▁Com",-10.36892795562744],["▁Call",-10.369053840637209],["▁fee",-10.369847297668455],["ări",-10.369905471801758],["▁putea",-10.37072467803955],["▁Public",-10.371030807495115],["▁pa",-10.371152877807615],["28",-10.371233940124512],["▁Director",-10.37126350402832],["▁contains",-10.3717622756958],["▁factors",-10.372554779052734],["▁famous",-10.372614860534668],["▁bathroom",-10.373040199279783],["▁core",-10.37353229522705],["▁viele",-10.373610496520996],["▁acum",-10.374361991882324],["▁animal",-10.374407768249512],["▁Ihnen",-10.374425888061523],["▁Find",-10.374545097351074],["▁Fall",-10.37486171722412],["ford",-10.376051902770996],["▁coverage",-10.3765287399292],["▁smart",-10.376830101013184],["ries",-10.376893997192385],["▁memory",-10.3772554397583],["▁dance",-10.377443313598633],["11",-10.37746810913086],["▁communities",-10.377655982971191],["eurs",-10.378050804138184],["▁Florida",-10.378463745117188],["▁sport",-10.379366874694824],["▁bus",-10.37992000579834],["▁colors",-10.379969596862791],["▁affect",-10.380044937133787],["▁score",-10.380183219909668],["▁properties",-10.38050365447998],["18",-10.380593299865724],["▁astfel",-10.381312370300291],["▁beach",-10.382407188415527],["▁friendly",-10.382795333862305],["izing",-10.38288688659668],["▁buying",-10.383146286010742],["▁forget",-10.383195877075195],["este",-10.383198738098145],["▁capacity",-10.38360595703125],["▁lose",-10.383692741394045],["▁listed",-10.38407039642334],["ica",-10.384084701538086],["han",-10.384085655212402],["▁selbst",-10.384390830993652],["▁values",-10.384391784667969],["▁Power",-10.384559631347656],["▁comments",-10.384831428527832],["eux",-10.385346412658691],["ați",-10.385419845581056],["▁context",-10.38571071624756],["liche",-10.385944366455078],["▁keeping",-10.38620662689209],["▁2008",-10.38647174835205],["▁su",-10.386670112609863],["▁biggest",-10.386838912963867],["▁fiecare",-10.387356758117676],["ight",-10.38845157623291],["▁toute",-10.389808654785156],["▁dinner",-10.389827728271484],["bau",-10.390706062316896],["▁Mai",-10.390762329101562],["▁status",-10.390776634216309],["rez",-10.391340255737305],["▁selected",-10.391549110412598],["▁cells",-10.392601013183594],["▁eight",-10.393319129943848],["▁package",-10.393320083618164],["▁scale",-10.39333724975586],["din",-10.39336109161377],["▁Who",-10.393381118774414],["▁century",-10.393399238586426],["▁bi",-10.393516540527344],["▁Africa",-10.39384937286377],["▁http",-10.39413356781006],["▁named",-10.394230842590332],["▁adding",-10.394901275634766],["▁mention",-10.395039558410645],["▁casino",-10.395421981811523],["▁couldn",-10.395624160766602],["▁outdoor",-10.395912170410156],["▁sugar",-10.3960542678833],["▁prepared",-10.396124839782717],["21",-10.396528244018556],["▁Ba",-10.396632194519045],["vers",-10.396697998046877],["ration",-10.396773338317873],["▁ja",-10.397035598754885],["▁aspect",-10.397224426269531],["▁31",-10.397462844848633],["▁treat",-10.397475242614746],["tru",-10.397841453552246],["▁flat",-10.397890090942385],["32",-10.397989273071287],["▁reality",-10.398238182067873],["▁waste",-10.39876937866211],["▁King",-10.399649620056152],["▁drug",-10.39987087249756],["▁operations",-10.400120735168455],["▁aim",-10.40042495727539],["▁fans",-10.400444984436035],["▁vers",-10.400891304016112],["▁plants",-10.400971412658691],["▁Dis",-10.401477813720703],["▁Daten",-10.40151023864746],["être",-10.40267276763916],["▁placed",-10.40326976776123],["▁bon",-10.403977394104004],["beim",-10.4041109085083],["▁slow",-10.40501880645752],["cri",-10.405512809753418],["▁Care",-10.405691146850586],["mes",-10.406211853027344],["26",-10.406257629394531],["box",-10.406330108642578],["▁helpful",-10.406362533569336],["▁documents",-10.406543731689451],["▁visitors",-10.406773567199709],["ture",-10.406862258911133],["▁Menschen",-10.40689182281494],["▁Chi",-10.406975746154783],["▁recipe",-10.40764045715332],["▁kept",-10.40769386291504],["▁Grand",-10.407915115356444],["▁operating",-10.408178329467772],["point",-10.408329010009766],["▁bin",-10.40837287902832],["▁Tri",-10.40845775604248],["Be",-10.408512115478516],["▁experiences",-10.40856647491455],["▁academic",-10.408608436584473],["▁finden",-10.40870475769043],["▁sera",-10.409092903137209],["act",-10.410541534423828],["▁Pa",-10.410907745361328],["▁society",-10.411056518554688],["▁combination",-10.411237716674805],["5%",-10.41182804107666],["▁owners",-10.41188907623291],["▁poor",-10.412039756774902],["▁Robert",-10.412378311157228],["▁military",-10.412964820861816],["▁economy",-10.413033485412598],["▁aware",-10.413055419921877],["rot",-10.413443565368652],["mie",-10.413544654846191],["▁Thursday",-10.414399147033691],["▁2011",-10.41490650177002],["▁fantastic",-10.41554069519043],["▁numerous",-10.415921211242676],["▁fair",-10.4165620803833],["med",-10.416753768920898],["▁welche",-10.416893005371094],["▁fruit",-10.41712760925293],["ku",-10.417325019836426],["▁Social",-10.417583465576172],["▁funds",-10.418157577514648],["▁atunci",-10.418214797973633],["▁Part",-10.418238639831545],["▁Big",-10.418301582336426],["▁2010",-10.419414520263672],["▁detail",-10.419889450073242],["▁Peter",-10.41994285583496],["ani",-10.420196533203123],["▁Wie",-10.420795440673828],["▁Tu",-10.421649932861328],["ear",-10.421706199645996],["▁Wenn",-10.421941757202148],["▁manager",-10.42199993133545],["▁Dan",-10.422409057617188],["▁Pi",-10.42257308959961],["▁wants",-10.422652244567873],["▁Data",-10.42322826385498],["pos",-10.42387580871582],["▁older",-10.423946380615234],["▁Download",-10.424071311950684],["▁Was",-10.424107551574709],["▁corner",-10.424195289611816],["▁president",-10.424199104309082],["mas",-10.424248695373535],["▁smaller",-10.424361228942873],["▁bright",-10.42445945739746],["▁proper",-10.424582481384276],["▁Kinder",-10.424637794494627],["▁Two",-10.424668312072754],["▁award",-10.42471694946289],["▁premier",-10.425211906433104],["▁seek",-10.425646781921388],["▁thank",-10.425662994384766],["▁proud",-10.426509857177734],["▁workers",-10.42677402496338],["▁2000",-10.42697048187256],["▁gone",-10.427482604980469],["▁medium",-10.427693367004396],["▁grade",-10.42777156829834],["▁Ru",-10.427800178527832],["cro",-10.427851676940918],["▁interview",-10.428311347961426],["23",-10.428787231445312],["▁mari",-10.429442405700684],["▁80",-10.42975616455078],["▁Ga",-10.430047035217283],["▁90",-10.431839942932127],["▁anderen",-10.432605743408203],["▁cultural",-10.433018684387209],["but",-10.433144569396973],["rum",-10.433300018310549],["get",-10.43338680267334],["▁pop",-10.433582305908203],["▁Information",-10.433594703674316],["▁press",-10.434972763061523],["▁Project",-10.435359001159668],["▁excited",-10.435755729675291],["▁Saint",-10.43608856201172],["▁England",-10.436192512512209],["▁beauty",-10.43643856048584],["▁agreement",-10.436464309692385],["▁Like",-10.437565803527832],["▁strength",-10.437664985656738],["▁waiting",-10.438165664672852],["и",-10.438270568847656],["Le",-10.438329696655272],["▁residents",-10.43835735321045],["▁Ben",-10.438603401184082],["▁mentioned",-10.439260482788086],["▁etwas",-10.43930721282959],["▁rooms",-10.43934726715088],["▁neue",-10.439501762390137],["▁Microsoft",-10.439726829528809],["▁passed",-10.440205574035645],["▁sea",-10.440893173217772],["▁electric",-10.441244125366213],["▁forms",-10.441384315490724],["▁Central",-10.441597938537598],["▁Lord",-10.442625999450684],["ute",-10.442763328552246],["▁pré",-10.442790031433104],["▁square",-10.44308090209961],["itatea",-10.443451881408691],["▁debt",-10.44375705718994],["▁street",-10.443975448608398],["▁pi",-10.444917678833008],["▁happened",-10.445326805114746],["▁Tuesday",-10.445592880249023],["recht",-10.446094512939451],["▁Eine",-10.44627857208252],["▁Set",-10.446768760681152],["▁federal",-10.4468412399292],["CC",-10.446905136108398],["....",-10.446938514709473],["lig",-10.447463035583496],["▁Christian",-10.44870662689209],["▁truth",-10.449213981628418],["▁map",-10.44972801208496],["▁secret",-10.449979782104492],["▁Chinese",-10.450844764709473],["hol",-10.450895309448242],["▁wrote",-10.451505661010742],["▁hospital",-10.451783180236816],["▁Island",-10.451870918273926],["▁frame",-10.451946258544922],["▁sources",-10.452117919921877],["pan",-10.453242301940918],["▁29",-10.453530311584473],["▁changing",-10.454547882080078],["▁Where",-10.454627990722656],["▁negative",-10.45471477508545],["▁processes",-10.45491886138916],["▁leadership",-10.455029487609863],["▁nos",-10.455195426940918],["▁info",-10.455780029296877],["▁Gu",-10.45595645904541],["▁CO",-10.45605182647705],["▁reference",-10.456884384155272],["▁corporate",-10.457097053527832],["▁characters",-10.457563400268556],["▁dining",-10.4577054977417],["▁becoming",-10.459708213806152],["▁4.",-10.460311889648438],["▁Science",-10.460626602172852],["▁Education",-10.461943626403809],["▁camp",-10.46207046508789],["fall",-10.462146759033203],["▁Auch",-10.462471961975098],["▁topic",-10.462519645690918],["▁influence",-10.463460922241213],["▁70",-10.463892936706545],["▁identify",-10.464459419250488],["▁(19",-10.464646339416504],["care",-10.465216636657717],["ions",-10.466215133666992],["ray",-10.4663724899292],["▁Both",-10.466577529907228],["▁collect",-10.466997146606444],["▁practices",-10.46766757965088],["▁fight",-10.468058586120604],["▁injury",-10.46873664855957],["▁nici",-10.46905517578125],["▁depuis",-10.469563484191896],["▁actions",-10.469609260559082],["▁Wednesday",-10.47089958190918],["▁bill",-10.471086502075195],["▁cheap",-10.471318244934082],["lui",-10.471719741821287],["▁awesome",-10.471731185913086],["tig",-10.472554206848145],["▁expensive",-10.472636222839355],["ceea",-10.472834587097168],["▁exact",-10.472907066345217],["22",-10.473462104797363],["▁avant",-10.47352123260498],["▁fat",-10.47353744506836],["▁spending",-10.474353790283203],["▁designs",-10.47608470916748],["▁damit",-10.4761323928833],["▁comp",-10.47619342803955],["▁whatever",-10.476434707641602],["▁Light",-10.476442337036133],["▁quarter",-10.47680377960205],["hand",-10.477301597595217],["▁connected",-10.477584838867188],["▁technologies",-10.47772216796875],["ges",-10.477808952331545],["▁shower",-10.478998184204102],["▁500",-10.47923469543457],["▁Time",-10.479436874389648],["▁zone",-10.480525970458984],["▁vote",-10.480624198913574],["▁andere",-10.480871200561523],["▁otherwise",-10.48098850250244],["tur",-10.481294631958008],["▁happens",-10.481504440307615],["hin",-10.481597900390623],["▁volume",-10.48216152191162],["▁thousands",-10.482391357421877],["war",-10.482551574707031],["▁Play",-10.482900619506836],["▁temperature",-10.48371410369873],["▁industrial",-10.483830451965332],["▁fuel",-10.483915328979492],["100",-10.48409366607666],["top",-10.484210014343262],["kin",-10.484312057495115],["▁efficient",-10.484414100646973],["teil",-10.484525680541992],["alt",-10.484578132629396],["▁monde",-10.48483657836914],["▁Ra",-10.484899520874023],["▁bedroom",-10.485103607177734],["▁showing",-10.485316276550291],["▁continued",-10.485490798950195],["▁Plan",-10.48552131652832],["▁assistance",-10.486014366149902],["▁discover",-10.48622989654541],["▁Year",-10.486238479614258],["▁applied",-10.486433029174805],["▁audio",-10.48755931854248],["▁thus",-10.487645149230955],["▁permet",-10.48806095123291],["▁fashion",-10.488532066345217],["cra",-10.488645553588867],["ious",-10.48870086669922],["▁focused",-10.489258766174316],["16",-10.48930549621582],["▁arm",-10.489364624023438],["▁Their",-10.489789962768556],["▁Foundation",-10.49022388458252],["▁majority",-10.49022388458252],["▁wind",-10.490785598754885],["▁bought",-10.491056442260742],["▁factor",-10.491918563842772],["▁opened",-10.49213695526123],["tern",-10.492374420166016],["▁cars",-10.492597579956056],["▁exciting",-10.492691040039062],["▁affordable",-10.493510246276855],["ches",-10.493563652038574],["▁panel",-10.493720054626465],["▁caused",-10.493793487548828],["▁travail",-10.493998527526855],["▁roof",-10.494073867797852],["▁enable",-10.494202613830566],["▁toward",-10.494491577148438],["▁Development",-10.494688987731934],["▁foreign",-10.495308876037598],["avi",-10.495320320129396],["long",-10.495328903198242],["De",-10.49578857421875],["▁Mon",-10.49588394165039],["▁Va",-10.495942115783691],["AP",-10.496097564697266],["▁asta",-10.49720573425293],["▁prepare",-10.497220993041992],["▁German",-10.49726104736328],["▁Centre",-10.497325897216797],["ère",-10.49736785888672],["▁fear",-10.49753761291504],["▁Este",-10.497878074645996],["▁Des",-10.49793529510498],["▁Kon",-10.499308586120604],["á",-10.499866485595703],["stand",-10.500805854797363],["▁Real",-10.500842094421388],["lichen",-10.50098705291748],["▁Beach",-10.501455307006836],["▁expertise",-10.50185775756836],["▁route",-10.502445220947266],["▁nation",-10.502551078796388],["▁snow",-10.503022193908691],["▁articles",-10.503127098083496],["▁Wood",-10.504426956176758],["▁operation",-10.50494384765625],["▁passion",-10.505215644836426],["▁cand",-10.505690574645996],["haus",-10.505701065063477],["OR",-10.505711555480955],["▁senior",-10.506511688232422],["▁becomes",-10.506546020507812],["▁sounds",-10.506878852844238],["▁enjoyed",-10.50704574584961],["▁gegen",-10.507533073425291],["▁courses",-10.507919311523438],["▁absolutely",-10.508257865905762],["tim",-10.508264541625977],["uff",-10.508516311645508],["▁moins",-10.50860595703125],["▁TO",-10.509060859680176],["▁fabric",-10.509267807006836],["poli",-10.509326934814451],["▁Bre",-10.509761810302734],["▁bo",-10.509916305541992],["▁Elle",-10.510469436645508],["bu",-10.512336730957031],["▁participants",-10.512401580810549],["stone",-10.512794494628906],["ties",-10.51366138458252],["▁listen",-10.513700485229492],["▁Spiel",-10.513752937316896],["pot",-10.513872146606444],["▁selling",-10.514358520507812],["▁geht",-10.514680862426758],["▁mini",-10.515146255493164],["▁trans",-10.515408515930176],["▁ingredients",-10.515642166137695],["auf",-10.515671730041504],["▁orice",-10.51595401763916],["▁Next",-10.516300201416016],["▁cream",-10.516756057739258],["▁edge",-10.516973495483398],["▁recommended",-10.517022132873535],["▁Form",-10.517277717590332],["▁processing",-10.51746940612793],["vert",-10.517709732055664],["▁described",-10.518362998962402],["▁installed",-10.51884937286377],["▁managed",-10.51895236968994],["▁electronic",-10.518966674804688],["▁performed",-10.519064903259276],["▁raise",-10.519098281860352],["▁imagine",-10.519281387329102],["down",-10.51952838897705],["▁fond",-10.519978523254396],["▁Inter",-10.520434379577637],["▁Mc",-10.520550727844238],["▁Dans",-10.520679473876951],["istic",-10.520966529846191],["▁miss",-10.521052360534668],["sur",-10.521062850952148],["▁Col",-10.521879196166992],["cut",-10.522021293640137],["▁dupa",-10.522160530090332],["▁Twitter",-10.522604942321776],["▁bowl",-10.523721694946287],["▁remains",-10.5237455368042],["▁Jan",-10.524046897888184],["▁smooth",-10.524162292480469],["▁fees",-10.524415969848633],["▁aid",-10.524494171142578],["▁presence",-10.524827003479004],["▁Android",-10.52499771118164],["▁decisions",-10.52539348602295],["▁names",-10.5254487991333],["▁Music",-10.525546073913574],["▁innovative",-10.525578498840332],["▁Tom",-10.525997161865234],["▁spread",-10.526165962219238],["▁lovely",-10.526222229003906],["▁daughter",-10.526397705078123],["US",-10.527050971984863],["▁facility",-10.52710247039795],["▁peace",-10.527105331420898],["▁department",-10.527277946472168],["▁weiter",-10.527591705322266],["▁Sun",-10.527756690979004],["▁fund",-10.527772903442385],["▁2018.",-10.52792739868164],["▁discussion",-10.528186798095703],["75",-10.528799057006836],["EC",-10.529126167297363],["▁lunch",-10.529144287109377],["▁videos",-10.52927017211914],["05",-10.531253814697266],["ige",-10.53126621246338],["▁parking",-10.531564712524414],["▁relationships",-10.531732559204102],["▁George",-10.532986640930176],["▁teachers",-10.53299617767334],["room",-10.533458709716797],["▁Tra",-10.533605575561523],["▁Sam",-10.533651351928713],["▁properly",-10.535590171813965],["▁Book",-10.535629272460938],["▁CA",-10.536957740783691],["▁calls",-10.53756046295166],["▁stat",-10.538175582885742],["ux",-10.538220405578612],["▁soit",-10.538439750671388],["▁Community",-10.538684844970703],["▁Jahren",-10.538714408874512],["▁increasing",-10.539575576782228],["▁civil",-10.540184020996094],["app",-10.540573120117188],["▁35",-10.540589332580566],["▁rise",-10.540600776672363],["▁dabei",-10.540989875793455],["▁studio",-10.541803359985352],["▁policies",-10.542054176330566],["▁agent",-10.542055130004885],["▁Before",-10.542601585388184],["▁Cal",-10.543017387390137],["▁2005",-10.543404579162598],["▁sample",-10.543777465820312],["▁manner",-10.54518699645996],["wing",-10.54521369934082],["stra",-10.545552253723145],["▁fel",-10.545793533325195],["▁Show",-10.545952796936035],["▁scene",-10.54656982421875],["mic",-10.546764373779297],["nom",-10.546995162963867],["▁typically",-10.547088623046877],["▁pair",-10.547104835510254],["▁detailed",-10.54739475250244],["▁Work",-10.547422409057615],["▁cities",-10.547451972961426],["▁Rock",-10.54749584197998],["▁Gar",-10.547906875610352],["▁serving",-10.548352241516112],["▁machen",-10.548521995544434],["▁trees",-10.54888916015625],["▁accident",-10.549199104309082],["▁cloud",-10.54920482635498],["▁animals",-10.549297332763672],["▁Den",-10.549897193908691],["▁Wa",-10.54990291595459],["▁suggest",-10.550220489501951],["putting",-10.550407409667969],["▁suite",-10.550434112548828],["▁clearly",-10.55084991455078],["▁net",-10.551287651062012],["▁funding",-10.551506996154783],["▁salt",-10.551935195922852],["▁Men",-10.552119255065918],["ped",-10.552419662475586],["▁Food",-10.553142547607422],["▁leaving",-10.553544998168944],["▁Government",-10.554243087768556],["ick",-10.554381370544434],["▁seat",-10.555121421813965],["▁Los",-10.555183410644531],["▁teacher",-10.555587768554688],["▁iPhone",-10.555693626403809],["▁300",-10.55612087249756],["▁commitment",-10.556180000305176],["▁aspects",-10.556498527526855],["▁previously",-10.55711555480957],["▁cent",-10.5572509765625],["▁Vo",-10.55734157562256],["▁artists",-10.557963371276855],["▁runs",-10.558130264282228],[">",-10.558155059814451],["▁Gi",-10.558273315429688],["▁mar",-10.5585355758667],["!!!",-10.558544158935549],["▁Media",-10.55894374847412],["▁feedback",-10.559109687805176],["▁resolution",-10.559117317199709],["IN",-10.55915641784668],["▁wurden",-10.55952262878418],["▁busy",-10.559832572937012],["▁adult",-10.5600004196167],["29",-10.560487747192385],["elles",-10.561375617980955],["▁closed",-10.561762809753418],["▁trouble",-10.561767578125],["▁rent",-10.561984062194824],["lot",-10.56224536895752],["▁importance",-10.562314987182615],["▁units",-10.56257438659668],["Pro",-10.562713623046877],["▁provider",-10.563005447387695],["▁visual",-10.563288688659668],["IT",-10.563385009765623],["▁diet",-10.563733100891112],["▁appearance",-10.563932418823242],["pin",-10.564576148986816],["▁Din",-10.564760208129885],["▁eating",-10.565516471862791],["Fi",-10.565762519836426],["ball",-10.565765380859377],["är",-10.565861701965332],["ney",-10.565878868103027],["▁records",-10.566070556640623],["▁Fi",-10.566180229187012],["▁faut",-10.566329002380373],["▁CD",-10.56680393218994],["ign",-10.566930770874023],["▁vă",-10.566996574401855],["▁agency",-10.567153930664062],["ierung",-10.567323684692385],["▁Back",-10.56736183166504],["▁windows",-10.567545890808104],["▁pull",-10.567888259887695],["ash",-10.567959785461426],["▁profit",-10.568593978881836],["▁brings",-10.568605422973633],["▁Committee",-10.569122314453123],["▁girl",-10.569174766540527],["▁vehicles",-10.569372177124023],["▁Hier",-10.569567680358888],["ES",-10.569639205932615],["până",-10.569880485534668],["▁Kunden",-10.570380210876465],["pen",-10.570462226867676],["▁explain",-10.570505142211914],["▁cadru",-10.570760726928713],["▁attack",-10.571100234985352],["▁markets",-10.571115493774414],["▁claims",-10.571340560913086],["▁walking",-10.571385383605955],["▁pouv",-10.571528434753418],["low",-10.571642875671388],["▁showed",-10.572114944458008],["▁principal",-10.57211971282959],["▁lucru",-10.572144508361816],["▁precum",-10.572712898254396],["TA",-10.573094367980955],["▁partners",-10.573104858398438],["▁exist",-10.57313632965088],["▁internal",-10.57334041595459],["hen",-10.573945045471191],["▁Master",-10.573966979980469],["unless",-10.574013710021973],["▁doubt",-10.574721336364746],["$",-10.574785232543944],["▁Long",-10.574888229370115],["▁leaves",-10.574907302856444],["allowing",-10.575063705444336],["pol",-10.575272560119627],["▁Up",-10.575491905212402],["▁Contact",-10.576093673706056],["▁practical",-10.57708740234375],["▁suit",-10.57758903503418],["▁Site",-10.577656745910645],["▁formation",-10.57768726348877],["▁signal",-10.57821559906006],["▁approximately",-10.578414916992188],["▁ourselves",-10.578497886657717],["▁colour",-10.578519821166992],["▁species",-10.578530311584473],["▁advance",-10.578753471374512],["▁PM",-10.57891845703125],["ans",-10.579121589660645],["▁locations",-10.579397201538086],["vous",-10.579601287841797],["▁updated",-10.579636573791504],["▁faith",-10.579673767089844],["mus",-10.579740524291992],["▁stores",-10.579863548278809],["heim",-10.580127716064451],["▁suitable",-10.580558776855469],["▁continues",-10.580703735351562],["▁fac",-10.581133842468262],["ever",-10.581156730651855],["▁Bill",-10.581195831298828],["▁chose",-10.58121109008789],["▁inform",-10.581228256225586],["▁environmental",-10.581427574157717],["▁responsibility",-10.58188533782959],["99",-10.582542419433594],["▁competitive",-10.583723068237305],["▁strategies",-10.583903312683104],["▁toujours",-10.584270477294922],["tive",-10.58430290222168],["▁automatically",-10.585600852966309],["▁dress",-10.585609436035156],["▁Minister",-10.58562469482422],["har",-10.586076736450195],["▁Start",-10.586249351501465],["▁=",-10.586563110351562],["▁pattern",-10.58659553527832],["tier",-10.58676528930664],["▁pays",-10.587034225463867],["▁profile",-10.58725357055664],["▁raised",-10.587263107299805],["ange",-10.587288856506348],["▁drink",-10.587762832641602],["▁element",-10.588042259216309],["▁landscape",-10.58875560760498],["▁Tag",-10.589073181152344],["▁cheese",-10.589590072631836],["ific",-10.590009689331056],["▁Stadt",-10.590181350708008],["39",-10.591398239135742],["▁launch",-10.592113494873049],["▁wouldn",-10.592150688171388],["AS",-10.592202186584473],["▁push",-10.593059539794922],["▁mill",-10.59345245361328],["▁mass",-10.593647003173828],["▁category",-10.593790054321287],["sondern",-10.594050407409668],["col",-10.594111442565918],["▁climate",-10.594313621520996],["lier",-10.594437599182127],["▁slightly",-10.595514297485352],["95",-10.596519470214844],["ace",-10.596612930297852],["▁domain",-10.597633361816406],["kan",-10.598306655883787],["▁feed",-10.598485946655272],["▁Live",-10.598837852478027],["▁Mais",-10.599113464355469],["▁après",-10.599365234375],["▁village",-10.59941577911377],["▁hatte",-10.59968090057373],["▁joined",-10.599881172180176],["▁Museum",-10.600311279296877],["head",-10.600855827331545],["▁draw",-10.6009521484375],["▁concerns",-10.600966453552246],["ER",-10.601505279541016],["▁technique",-10.601648330688477],["▁Bio",-10.601861000061035],["▁Sea",-10.601881980895996],["▁@",-10.601927757263184],["wer",-10.6021146774292],["▁battery",-10.602462768554688],["▁mostly",-10.60267448425293],["▁familiar",-10.602680206298828],["▁Sub",-10.602689743041992],["▁delicious",-10.603222846984863],["doch",-10.60326099395752],["60",-10.603395462036133],["▁carte",-10.603611946105955],["▁avut",-10.60414695739746],["▁premium",-10.60460376739502],["▁attempt",-10.60470485687256],["▁Über",-10.60473346710205],["▁combined",-10.604935646057127],["lement",-10.604947090148926],["▁voi",-10.605031967163086],["▁wonder",-10.605376243591309],["▁failure",-10.606106758117676],["which",-10.60614776611328],["esti",-10.606316566467283],["31",-10.606547355651855],["▁sta",-10.606734275817873],["▁transform",-10.60673999786377],["▁license",-10.606743812561035],["▁depending",-10.60675811767578],["▁specifically",-10.606782913208008],["▁OF",-10.60693645477295],["band",-10.606959342956545],["▁Sport",-10.60731315612793],["list",-10.607434272766112],["▁Tour",-10.60753059387207],["▁Israel",-10.60756492614746],["▁filled",-10.607722282409668],["▁manual",-10.60776138305664],["▁watching",-10.60862159729004],["▁rule",-10.608877182006836],["mat",-10.60901927947998],["▁notes",-10.609585762023926],["▁Oh",-10.60960578918457],["▁bereits",-10.609634399414062],["▁foundation",-10.60991668701172],["▁vital",-10.610146522521973],["▁lassen",-10.610747337341309],["▁cât",-10.611162185668944],["▁shipping",-10.611433029174805],["▁registered",-10.611513137817385],["▁jour",-10.612669944763184],["▁island",-10.61276626586914],["▁sets",-10.61306858062744],["▁football",-10.613683700561523],["▁EU",-10.61386013031006],["▁stone",-10.614019393920898],["▁Press",-10.614699363708496],["▁adapt",-10.615066528320312],["ised",-10.61542510986328],["▁thoughts",-10.615434646606444],["▁doors",-10.615851402282717],["€",-10.615954399108888],["▁components",-10.616040229797363],["rig",-10.616332054138184],["▁generation",-10.616585731506348],["▁guess",-10.616700172424316],["cker",-10.61694049835205],["▁realize",-10.617207527160645],["▁Roman",-10.617310523986816],["▁contre",-10.617693901062012],["▁Out",-10.617938995361328],["▁IN",-10.619051933288574],["cip",-10.619085311889648],["59",-10.619330406188965],["▁enhance",-10.619768142700195],["▁battle",-10.61982250213623],["▁monitor",-10.619863510131836],["▁Martin",-10.62045955657959],["▁websites",-10.620461463928224],["▁DE",-10.620599746704102],["▁Festival",-10.620951652526855],["ân",-10.62131118774414],["▁Place",-10.621419906616213],["▁rare",-10.621554374694824],["această",-10.621726989746094],["▁sollte",-10.621731758117676],["▁Read",-10.621816635131836],["ware",-10.622169494628906],["Those",-10.622671127319336],["ende",-10.623543739318848],["▁prix",-10.623835563659668],["▁roman",-10.624101638793944],["▁creation",-10.624224662780762],["▁confidence",-10.624552726745604],["▁Japan",-10.624638557434082],["▁rain",-10.624942779541016],["▁guys",-10.62518310546875],["▁south",-10.625236511230469],["▁trading",-10.625646591186523],["▁€",-10.626100540161133],["▁Film",-10.626341819763184],["▁pana",-10.627065658569336],["▁asemenea",-10.627066612243652],["36",-10.627190589904783],["▁instance",-10.627884864807127],["cou",-10.629385948181152],["▁nun",-10.630074501037598],["▁Pass",-10.630390167236328],["Cette",-10.630579948425291],["▁Network",-10.630876541137695],["▁prime",-10.631010055541992],["▁spiritual",-10.632098197937012],["▁tough",-10.633030891418455],["▁AND",-10.633086204528809],["▁Cat",-10.633601188659668],["▁boat",-10.633611679077148],["▁leads",-10.634864807128906],["▁Germany",-10.63509750366211],["▁valuable",-10.635635375976562],["57",-10.635892868041992],["lect",-10.636148452758787],["▁distribution",-10.636445045471191],["dar",-10.636518478393556],["▁Manager",-10.637701988220217],["cha",-10.637725830078123],["▁obtain",-10.637741088867188],["GB",-10.637908935546877],["▁unor",-10.638079643249512],["schaft",-10.63860321044922],["▁zwischen",-10.638723373413086],["▁winning",-10.639172554016112],["▁suis",-10.639811515808104],["58",-10.640130996704102],["▁Party",-10.640372276306152],["▁ceva",-10.640416145324709],["▁comprehensive",-10.640684127807615],["▁aceste",-10.64072608947754],["▁committed",-10.64072608947754],["▁Hu",-10.641382217407228],["ţ",-10.64149284362793],["▁north",-10.64202117919922],["werk",-10.642542839050291],["▁interface",-10.642794609069824],["▁Valley",-10.64281177520752],["▁anywhere",-10.64281177520752],["▁Only",-10.642851829528809],["TE",-10.643295288085938],["hui",-10.6436767578125],["bus",-10.643951416015623],["vis",-10.6439790725708],["▁Society",-10.645116806030272],["▁reliable",-10.64556884765625],["▁quelques",-10.64563274383545],["tech",-10.646187782287598],["ual",-10.646377563476562],["▁educational",-10.646418571472168],["serv",-10.646490097045898],["▁opinion",-10.646628379821776],["▁appears",-10.646702766418455],["▁count",-10.646795272827148],["irea",-10.646981239318848],["ban",-10.647504806518556],["▁45",-10.647530555725098],["▁contain",-10.647661209106444],["ost",-10.647663116455078],["▁anul",-10.647706031799316],["rien",-10.648159980773926],["gra",-10.648360252380373],["▁counter",-10.64894676208496],["-3",-10.65041160583496],["▁resource",-10.650463104248049],["▁Wo",-10.6505126953125],["▁posts",-10.65061855316162],["▁employee",-10.651320457458496],["rol",-10.651863098144531],["▁ended",-10.651969909667969],["met",-10.653080940246582],["▁meine",-10.653165817260742],["▁reached",-10.653368949890137],["gri",-10.653716087341309],["▁Bra",-10.65374755859375],["▁conduct",-10.654294967651367],["▁housing",-10.654422760009766],["▁tickets",-10.654792785644531],["▁database",-10.655674934387209],["IL",-10.656150817871094],["▁perspective",-10.656359672546388],["▁Har",-10.656404495239258],["▁error",-10.656549453735352],["▁meal",-10.656569480895996],["▁hearing",-10.657238006591797],["▁transition",-10.657302856445312],["▁browser",-10.657609939575195],["▁supported",-10.657609939575195],["▁starts",-10.658814430236816],["țe",-10.658902168273926],["▁adults",-10.658905029296877],["▁România",-10.65917682647705],["dra",-10.659884452819824],["▁worry",-10.660222053527832],["▁avoir",-10.660497665405272],["▁regional",-10.660507202148438],["▁min",-10.660722732543944],["▁Does",-10.660806655883787],["▁Keep",-10.661200523376465],["rom",-10.661237716674805],["sco",-10.661320686340332],["tem",-10.661898612976074],["▁Old",-10.661954879760742],["▁Under",-10.662552833557127],["▁Commission",-10.662557601928713],["▁Bau",-10.6632661819458],["▁News",-10.663358688354492],["▁mois",-10.663444519042969],["▁respond",-10.66356372833252],["▁alles",-10.663878440856934],["▁chair",-10.664475440979004],["▁ho",-10.664854049682615],["right",-10.664908409118652],["▁totally",-10.665532112121582],["gle",-10.665534973144531],["▁32",-10.665604591369627],["66",-10.665664672851562],["town",-10.665902137756348],["Ch",-10.666261672973633],["▁gr",-10.66629695892334],["▁garage",-10.66632843017578],["ții",-10.666495323181152],["▁Union",-10.667136192321776],["ică",-10.667343139648438],["▁2,",-10.668437004089355],["▁reflect",-10.669163703918455],["▁retail",-10.669388771057127],["▁unde",-10.669605255126951],["▁accessible",-10.670262336730955],["water",-10.67059326171875],["▁regard",-10.670710563659668],["▁logo",-10.671489715576172],["▁inspired",-10.671518325805664],["▁Wall",-10.671859741210938],["▁Ste",-10.672093391418455],["▁asking",-10.672179222106934],["▁Journal",-10.673028945922852],["▁Teil",-10.674042701721191],["▁collaboration",-10.674185752868652],["▁acid",-10.674266815185549],["▁Fund",-10.674382209777832],["▁spirit",-10.6744384765625],["despite",-10.674457550048828],["▁delivered",-10.674821853637695],["▁girls",-10.675374984741213],["▁Look",-10.675896644592283],["rant",-10.675949096679688],["▁District",-10.67646026611328],["▁rental",-10.676709175109863],["▁spune",-10.676733016967772],["els",-10.677544593811035],["▁permanent",-10.677659034729004],["▁iron",-10.677709579467772],["▁Thomas",-10.677745819091797],["EL",-10.678071022033691],["▁except",-10.678074836730955],["▁catch",-10.678366661071776],["▁providers",-10.678375244140623],["▁2006",-10.67843532562256],["▁chat",-10.679931640625],["▁emergency",-10.68028163909912],["gre",-10.68030834197998],["site",-10.680888175964355],["▁missing",-10.68089485168457],["abil",-10.680914878845217],["▁Hill",-10.68099594116211],["urs",-10.681312561035156],["▁plusieurs",-10.681716918945312],["▁birthday",-10.681726455688477],["DS",-10.682019233703612],["ersten",-10.682381629943848],["▁5.",-10.68252944946289],["▁library",-10.68333911895752],["▁earth",-10.683515548706056],["CI",-10.683645248413086],["▁lighting",-10.684442520141602],["▁fixed",-10.684879302978516],["tori",-10.684891700744627],["▁replace",-10.684995651245115],["▁administration",-10.68507480621338],["leurs",-10.685229301452637],["▁meat",-10.686142921447754],["▁songs",-10.686662673950195],["▁confirm",-10.686866760253906],["▁rapid",-10.68698787689209],["▁Special",-10.68699550628662],["▁holding",-10.687115669250488],["▁honor",-10.687271118164062],["▁Market",-10.68740940093994],["La",-10.687535285949709],["▁measure",-10.68776035308838],["▁guarantee",-10.68785572052002],["▁switch",-10.68813419342041],["▁extensive",-10.688294410705566],["▁Neu",-10.688674926757812],["avez",-10.688901901245115],["▁protein",-10.688984870910645],["▁infrastructure",-10.689454078674316],["▁functions",-10.689494132995604],["▁cont",-10.689496040344238],["row",-10.689760208129885],["star",-10.689773559570312],["▁Port",-10.690192222595217],["Using",-10.690336227416992],["▁faster",-10.690557479858398],["44",-10.691168785095217],["▁measures",-10.691615104675291],["▁celor",-10.69186019897461],["▁exam",-10.69189739227295],["200",-10.69202995300293],["î",-10.692545890808104],["▁conversation",-10.692832946777344],["▁brands",-10.692959785461426],["▁Code",-10.69359016418457],["▁Website",-10.693748474121094],["OS",-10.693782806396484],["▁alors",-10.693822860717772],["▁organ",-10.694032669067385],["▁removed",-10.694823265075684],["▁Head",-10.694905281066896],["▁Cha",-10.694908142089844],["▁visiting",-10.694928169250488],["▁wild",-10.694928169250488],["▁seit",-10.69496250152588],["49",-10.695109367370604],["▁organic",-10.69539737701416],["aţi",-10.695775032043455],["▁kit",-10.695947647094728],["68",-10.695959091186523],["▁flowers",-10.696124076843262],["▁appreciate",-10.697006225585938],["▁dead",-10.697439193725586],["▁Fire",-10.697539329528809],["▁cela",-10.697591781616213],["▁Ph",-10.697633743286133],["▁arrive",-10.697921752929688],["▁purposes",-10.698213577270508],["▁qualité",-10.698226928710938],["▁restaurants",-10.698478698730469],["▁advertising",-10.698541641235352],["cur",-10.69855785369873],["▁ça",-10.698973655700684],["▁introduced",-10.699088096618652],["▁returned",-10.699111938476562],["▁desire",-10.699511528015137],["▁soul",-10.699983596801758],["▁Technology",-10.699994087219238],[");",-10.70016384124756],["▁Royal",-10.700282096862791],["tant",-10.70068645477295],["▁possibly",-10.700702667236328],["▁consumers",-10.700812339782717],["▁doua",-10.70097541809082],["ified",-10.70097827911377],["▁Award",-10.70114803314209],["toutes",-10.70130443572998],["▁meant",-10.70132541656494],["ezi",-10.701616287231444],["▁plu",-10.70176601409912],["ţii",-10.7021484375],["▁talent",-10.702789306640623],["▁Security",-10.703309059143066],["arii",-10.70335292816162],["▁zi",-10.703455924987791],["▁Shop",-10.703667640686035],["▁breakfast",-10.704107284545898],["▁trial",-10.704485893249512],["ami",-10.704936981201172],["▁register",-10.70530128479004],["unserer",-10.705646514892578],["▁solar",-10.705697059631348],["▁deals",-10.70591926574707],["▁Ku",-10.7059326171875],["To",-10.706186294555664],["bat",-10.70680046081543],["MC",-10.70701026916504],["▁Global",-10.707018852233888],["у",-10.707405090332031],["▁nor",-10.707818984985352],["▁milk",-10.707868576049805],["▁choices",-10.708206176757812],["»",-10.7086763381958],["▁Sur",-10.708695411682127],["more",-10.708739280700684],["48",-10.709024429321287],["67",-10.709375381469728],["▁replacement",-10.709942817687988],["34",-10.710440635681152],["▁chocolate",-10.710485458374023],["▁Family",-10.71059513092041],["This",-10.71122932434082],["▁novel",-10.711435317993164],["▁Chicago",-10.711563110351562],["▁participate",-10.71166706085205],["▁trei",-10.712727546691896],["▁monthly",-10.713729858398438],["▁survey",-10.713977813720703],["▁End",-10.714285850524902],["▁Medical",-10.71442699432373],["autres",-10.714678764343262],["rich",-10.714698791503906],["▁bike",-10.714703559875488],["▁eventually",-10.714717864990234],["▁HD",-10.714722633361816],["bil",-10.714744567871094],["cent",-10.714902877807615],["▁afin",-10.715676307678224],["▁surgery",-10.716160774230955],["▁sin",-10.716455459594728],["▁manufacturing",-10.716955184936523],["▁consumer",-10.717245101928713],["system",-10.71730613708496],["▁object",-10.717400550842283],["▁Ju",-10.717422485351562],["ered",-10.7178373336792],["rac",-10.718070030212402],["▁clinical",-10.718664169311523],["▁dollars",-10.719761848449709],["▁chain",-10.71994686126709],["▁afternoon",-10.720196723937988],["▁ligne",-10.720422744750977],["▁accounts",-10.721806526184082],["ving",-10.722037315368652],["▁Australian",-10.72240924835205],["38",-10.722542762756348],["▁persoane",-10.72258472442627],["▁grande",-10.722668647766112],["▁Report",-10.723472595214844],["▁revenue",-10.72364902496338],["▁spre",-10.723760604858398],["▁cutting",-10.7239990234375],["▁approved",-10.724133491516112],["▁glad",-10.724188804626465],["chaque",-10.724395751953123],["win",-10.724435806274414],["▁waren",-10.724733352661133],["▁launched",-10.725071907043455],["▁layer",-10.725645065307615],["▁airport",-10.725716590881348],["▁effectively",-10.72572135925293],["▁coach",-10.725946426391602],["dé",-10.726130485534668],["LE",-10.72627067565918],["▁müssen",-10.726386070251465],["plan",-10.726641654968262],["dan",-10.72670555114746],["55",-10.726786613464355],["bringing",-10.726895332336426],["▁$2",-10.726995468139648],["nce",-10.727181434631348],["▁inspiration",-10.728177070617676],["You",-10.728657722473145],["▁soll",-10.729095458984377],["▁seemed",-10.729595184326172],["▁flight",-10.729687690734863],["▁prima",-10.729883193969728],["▁Welt",-10.73012351989746],["▁jetzt",-10.73031520843506],["ky",-10.730428695678713],["▁Western",-10.73054027557373],["▁label",-10.730600357055664],["▁möglich",-10.73081111907959],["▁input",-10.730862617492676],["▁laws",-10.730995178222656],["▁personnes",-10.731708526611328],["▁paying",-10.731731414794922],["▁Uhr",-10.73173713684082],["▁Mary",-10.731745719909668],["pur",-10.73190689086914],["▁covers",-10.732133865356444],["▁throw",-10.73252296447754],["▁Tor",-10.733281135559082],["▁bat",-10.73355484008789],["▁Gr",-10.73373031616211],["▁farm",-10.73376178741455],["▁improved",-10.733843803405762],["▁fără",-10.734286308288574],["▁theme",-10.73437213897705],["pens",-10.734865188598633],["▁Cup",-10.734975814819336],["▁settings",-10.735114097595217],["▁hire",-10.735234260559082],["▁massive",-10.735248565673828],["▁generate",-10.735405921936035],["▁earn",-10.735837936401367],["▁tab",-10.736431121826172],["For",-10.736616134643556],["gang",-10.736891746520996],["▁hin",-10.73709487915039],["▁roll",-10.73711395263672],["▁engagement",-10.737157821655272],["▁signed",-10.737177848815918],["▁League",-10.737323760986328],["▁registration",-10.73793125152588],["▁première",-10.738763809204102],["isse",-10.73896598815918],["▁university",-10.739027976989746],["ell",-10.739157676696776],["▁nou",-10.739169120788574],["rog",-10.739191055297852],["▁sitting",-10.739206314086914],["▁cazul",-10.739571571350098],["▁surrounding",-10.73983383178711],["▁Asia",-10.740357398986816],["▁bath",-10.740825653076172],["hal",-10.740923881530762],["▁plate",-10.741026878356934],["▁tests",-10.741151809692385],["▁presentation",-10.741156578063965],["▁chicken",-10.741501808166504],["▁Val",-10.741586685180664],["ably",-10.74166488647461],["▁magazine",-10.741697311401367],["▁Maybe",-10.74187183380127],["▁sauce",-10.742673873901367],["TC",-10.742887496948242],["▁exclusive",-10.74296760559082],["86",-10.74306869506836],["▁teeth",-10.743474960327148],["▁regularly",-10.743524551391602],["sed",-10.743824005126951],["gro",-10.744174003601074],["He",-10.744211196899414],["▁2017.",-10.744302749633787],["▁template",-10.74489688873291],["▁gleich",-10.744938850402832],["bal",-10.745061874389648],["▁African",-10.74511432647705],["în",-10.745231628417969],["▁rep",-10.74543571472168],["▁beat",-10.74588394165039],["▁deck",-10.746064186096191],["▁intended",-10.746221542358398],["▁para",-10.74651336669922],["▁IP",-10.746712684631348],["▁bra",-10.746881484985352],["▁forces",-10.746966361999512],["▁routine",-10.747184753417969],["▁Jahre",-10.747758865356444],["▁Bad",-10.74797534942627],["▁drivers",-10.748074531555176],["▁updates",-10.748095512390137],["▁elegant",-10.748279571533203],["▁external",-10.74844455718994],["▁engineering",-10.748819351196287],["ender",-10.749544143676758],["table",-10.749755859375],["inter",-10.749878883361816],["▁Romania",-10.749948501586914],["▁zile",-10.750468254089355],["▁luxury",-10.750570297241213],["▁calling",-10.750750541687012],["▁cooking",-10.75101375579834],["▁component",-10.75114631652832],["wan",-10.75121021270752],["schen",-10.751212120056152],["▁birth",-10.751242637634276],["asupra",-10.751349449157717],["Co",-10.751471519470217],["▁opt",-10.75153923034668],["▁discovered",-10.751860618591309],["▁teach",-10.752084732055664],["▁Son",-10.75234317779541],["▁guest",-10.752384185791016],["▁dogs",-10.752695083618164],["▁2003",-10.752745628356934],["▁behavior",-10.752750396728516],["pé",-10.7529935836792],["63",-10.75316333770752],["▁Human",-10.753702163696287],["▁expression",-10.754800796508787],["▁nevoie",-10.75493621826172],["▁recherche",-10.75528621673584],["ging",-10.755767822265623],["related",-10.755948066711426],["▁discount",-10.756040573120115],["▁Brown",-10.756054878234863],["▁Such",-10.756107330322266],["▁Ve",-10.757149696350098],["▁height",-10.757265090942385],["clo",-10.75741481781006],["▁incredible",-10.757912635803224],["▁bas",-10.757916450500488],["▁mă",-10.75798225402832],["▁purchased",-10.758240699768066],["▁compte",-10.75831127166748],["▁instructions",-10.758537292480469],["▁Instead",-10.75866985321045],["▁output",-10.758706092834473],["▁mom",-10.758886337280272],["DR",-10.759828567504885],["89",-10.760168075561523],["▁reduced",-10.760621070861816],["98",-10.7606840133667],["▁constant",-10.760879516601562],["▁therapy",-10.762417793273926],["▁capable",-10.762757301330566],["mark",-10.763265609741213],["▁Sometimes",-10.76332950592041],["▁joy",-10.763419151306152],["▁perfectly",-10.763589859008787],["▁painting",-10.763704299926758],["avait",-10.763765335083008],["▁Sha",-10.764384269714355],["▁dat",-10.764463424682615],["▁produits",-10.764479637145996],["tric",-10.76456356048584],["ierte",-10.765153884887695],["▁Smith",-10.765836715698242],["▁trebui",-10.766264915466309],["▁beaucoup",-10.766630172729492],["▁chosen",-10.767189025878906],["▁cre",-10.76732063293457],["▁complet",-10.767341613769531],["▁Ltd",-10.76759910583496],["▁recovery",-10.76781940460205],["▁district",-10.768423080444336],["78",-10.768640518188477],["▁Unter",-10.76872730255127],["▁schnell",-10.768729209899902],["▁apart",-10.768943786621094],["▁phase",-10.76894760131836],["▁seeking",-10.769091606140137],["▁mark",-10.76914882659912],["▁pet",-10.76923370361328],["▁PDF",-10.769296646118164],["▁efficiency",-10.769577980041504],["▁buildings",-10.769611358642578],["69",-10.769723892211914],["▁sens",-10.769858360290527],["▁Video",-10.770115852355955],["▁destination",-10.770181655883787],["▁female",-10.770319938659668],["▁supporting",-10.770674705505373],["▁signs",-10.77077865600586],["▁appeal",-10.770784378051758],["76",-10.77110481262207],["▁favourite",-10.771612167358398],["ock",-10.771702766418455],["▁readers",-10.771757125854492],["▁Did",-10.771868705749512],["rou",-10.772045135498049],["PA",-10.77222728729248],["▁Jean",-10.772480964660645],["▁Em",-10.772586822509766],["pass",-10.77280330657959],["▁Zi",-10.773090362548828],["▁între",-10.773261070251465],["▁fly",-10.773427963256836],["mos",-10.773666381835938],["▁emotional",-10.773860931396484],["asse",-10.774768829345703],["▁sessions",-10.775086402893066],["▁symptoms",-10.77564811706543],["▁died",-10.776217460632324],["▁seconds",-10.776628494262695],["▁procedure",-10.777206420898438],["▁express",-10.777420997619627],["▁două",-10.77788543701172],["▁valid",-10.778393745422363],["▁euro",-10.7788667678833],["▁interests",-10.779032707214355],["Having",-10.779237747192385],["▁hundreds",-10.779669761657717],["grad",-10.780023574829102],["▁neuen",-10.780084609985352],["▁cook",-10.780552864074709],["▁pur",-10.780834197998049],["▁charges",-10.781024932861328],["sche",-10.78118896484375],["▁smile",-10.781468391418455],["▁festival",-10.781611442565918],["cho",-10.781672477722168],["▁£",-10.781937599182127],["cht",-10.78201675415039],["▁macht",-10.782021522521973],["▁Wasser",-10.782028198242188],["▁Cap",-10.78226375579834],["▁Learn",-10.78274154663086],["▁load",-10.783162117004396],["▁aici",-10.783225059509276],["▁Ch",-10.784143447875977],["▁cycle",-10.784223556518556],["▁carried",-10.784337997436523],["▁jusqu",-10.784517288208008],["stein",-10.78505802154541],["ski",-10.78513240814209],["cap",-10.78579330444336],["▁Bal",-10.785852432250977],["▁minor",-10.786053657531738],["77",-10.786175727844238],["▁considering",-10.78632640838623],["innen",-10.78644847869873],["▁greatest",-10.787055015563965],["▁Training",-10.787137031555176],["08",-10.787307739257812],["▁significantly",-10.787607192993164],["gé",-10.787728309631348],["▁dumpster",-10.78835105895996],["▁allem",-10.788930892944336],["▁bonus",-10.7889404296875],["▁guy",-10.789036750793455],["fel",-10.78904914855957],["▁lifestyle",-10.789241790771484],["▁Bro",-10.78961181640625],["▁implement",-10.789687156677246],["lock",-10.790046691894531],["▁Earth",-10.790142059326172],["kar",-10.790733337402344],["▁invest",-10.790833473205566],["▁river",-10.790933609008787],["▁accurate",-10.791494369506836],["▁mu",-10.791579246520996],["▁celebrate",-10.792119979858398],["▁ran",-10.79256820678711],["▁bigger",-10.792988777160645],["▁Mer",-10.793476104736328],["▁millions",-10.793486595153809],["▁partie",-10.793563842773438],["▁dazu",-10.793951988220217],["▁Full",-10.794130325317385],["gie",-10.794207572937012],["bot",-10.794373512268066],["roll",-10.79472827911377],["▁Women",-10.795303344726562],["▁compare",-10.796135902404783],["▁van",-10.796503067016602],["▁apps",-10.796521186828612],["PC",-10.79705047607422],["▁drei",-10.79736042022705],["▁maison",-10.797588348388672],["▁knows",-10.797712326049805],["rid",-10.797972679138184],["62",-10.798396110534668],["class",-10.798508644104004],["▁chez",-10.798669815063477],["char",-10.798828125],["88",-10.798989295959473],["▁cast",-10.79948902130127],["▁examples",-10.79973030090332],["▁Therefore",-10.799823760986328],["▁topics",-10.799941062927246],["with",-10.80013656616211],["▁Anti",-10.800555229187012],["how",-10.800620079040527],["▁whom",-10.80094051361084],["▁Deutschland",-10.801124572753906],["tine",-10.80113697052002],["▁CEO",-10.801224708557127],["▁truck",-10.801350593566896],["▁Which",-10.8015718460083],["erie",-10.802017211914062],["fect",-10.802069664001465],["bou",-10.8026762008667],["▁(1",-10.802818298339844],["sum",-10.802980422973633],["▁bonne",-10.803068161010742],["▁remaining",-10.80321216583252],["▁equal",-10.803543090820312],["▁engage",-10.803561210632324],["▁RE",-10.80384922027588],["style",-10.804182052612305],["▁urma",-10.80433750152588],["▁Grund",-10.80496883392334],["ür",-10.8051176071167],["▁font",-10.805353164672852],["▁assets",-10.805916786193848],["AL",-10.806102752685549],["▁rear",-10.80635929107666],["▁contemporary",-10.80646800994873],["▁occur",-10.8067045211792],["rated",-10.806941986083984],["▁tight",-10.807088851928713],["▁machines",-10.807921409606934],["▁0.",-10.808456420898438],["▁Aber",-10.808470726013184],["sol",-10.808517456054688],["rü",-10.80858039855957],["▁2007",-10.80947971343994],["gg",-10.809488296508787],["▁unul",-10.809691429138184],["▁était",-10.809908866882324],["▁capture",-10.809980392456056],["▁command",-10.81003761291504],["▁wire",-10.810425758361816],["▁shift",-10.810762405395508],["▁bread",-10.81084156036377],["▁causes",-10.810937881469728],["PI",-10.810938835144045],["SC",-10.811086654663086],["▁lights",-10.811190605163574],["▁lived",-10.811293601989746],["mul",-10.811446189880373],["▁Cur",-10.811917304992676],["▁Richard",-10.811973571777344],["37",-10.81263828277588],["▁cup",-10.812737464904783],["▁fields",-10.812983512878418],["▁crusher",-10.813389778137209],["65",-10.81377410888672],["avons",-10.813822746276855],["▁gear",-10.813835144042969],["▁standing",-10.813844680786133],["▁thick",-10.81445026397705],["aff",-10.81513214111328],["ments",-10.815434455871582],["▁conflict",-10.815728187561035],["ität",-10.815825462341309],["▁worse",-10.816295623779297],["SE",-10.816332817077637],["imi",-10.81645965576172],["▁dating",-10.817033767700195],["Do",-10.817073822021484],["▁flexible",-10.817093849182127],["ologie",-10.817131996154783],["SU",-10.817200660705566],["▁contribute",-10.817306518554688],["▁denn",-10.817428588867188],["▁appointment",-10.81746768951416],["▁ticket",-10.817523002624512],["bed",-10.81789207458496],["▁2019.",-10.817936897277832],["▁tasks",-10.81871223449707],["▁carbon",-10.818734169006348],["▁situations",-10.819400787353516],["MA",-10.819402694702148],["▁portion",-10.819498062133787],["▁urban",-10.819585800170898],["▁Canadian",-10.819805145263672],["▁Bur",-10.819937705993652],["▁pack",-10.81995964050293],["▁effet",-10.819992065429688],["▁Ball",-10.82008171081543],["▁timpul",-10.82014274597168],["▁owned",-10.82021141052246],["▁surprise",-10.82041358947754],["▁Mu",-10.820582389831545],["▁decades",-10.821001052856444],["▁affected",-10.821728706359863],["▁proven",-10.821732521057127],["▁Fe",-10.821990966796877],["zy",-10.82204246520996],["42",-10.822175979614258],["▁trend",-10.8223876953125],["▁autres",-10.82262897491455],["No",-10.823028564453123],["▁nine",-10.823565483093262],["ON",-10.82376480102539],["NE",-10.82395362854004],["oli",-10.824359893798828],["▁Daniel",-10.824434280395508],["▁spa",-10.824939727783203],["▁messages",-10.825084686279297],["PS",-10.825183868408203],["47",-10.825703620910645],["▁doch",-10.826032638549805],["▁improvement",-10.826187133789062],["▁mountain",-10.826350212097168],["▁Room",-10.826451301574709],["▁edition",-10.826546669006348],["▁musical",-10.826712608337402],["CP",-10.827024459838867],["▁Mill",-10.827027320861816],["▁steht",-10.827740669250488],["▁determined",-10.828083038330078],["you",-10.828392028808594],["weg",-10.828554153442385],["▁Digital",-10.828624725341797],["▁filter",-10.828903198242188],["▁youth",-10.829047203063965],["▁assessment",-10.829301834106444],["▁butter",-10.829370498657228],["▁Watch",-10.829427719116213],["▁zusammen",-10.829471588134766],["▁View",-10.82960605621338],["09",-10.829649925231934],["▁sole",-10.829816818237305],[".00",-10.830018997192385],["33",-10.83015251159668],["▁export",-10.830229759216309],["ery",-10.830373764038086],["▁zurück",-10.830426216125488],["▁walls",-10.83048152923584],["▁recognize",-10.8306884765625],["law",-10.830801963806152],["▁parent",-10.83086395263672],["ST",-10.831357955932615],["▁description",-10.831669807434082],["MS",-10.831887245178224],["SM",-10.83189582824707],["▁Finally",-10.83194065093994],["▁hardware",-10.831965446472168],["ident",-10.832464218139648],["▁brown",-10.832566261291504],["▁kinds",-10.832950592041016],["▁Arts",-10.83297061920166],["▁concert",-10.83341121673584],["▁sec",-10.83342456817627],["▁represent",-10.83351230621338],["▁institutions",-10.83359718322754],["▁fur",-10.833998680114746],["▁Support",-10.83403205871582],["87",-10.834076881408691],["▁ease",-10.834178924560549],["▁feels",-10.834218978881836],["▁sheet",-10.834342002868652],["▁Though",-10.83437442779541],["▁propose",-10.834381103515623],["▁personnel",-10.834409713745115],["bie",-10.834794044494627],["▁contest",-10.834836959838867],["▁successfully",-10.835152626037598],["▁direkt",-10.835397720336914],["bietet",-10.835597038269045],["▁submit",-10.835888862609863],["▁sicher",-10.835919380187988],["▁Personal",-10.83607006072998],["94",-10.836341857910156],["61",-10.836400985717772],["▁Very",-10.836540222167969],["bol",-10.836603164672852],["▁ha",-10.83708953857422],["▁channel",-10.8372220993042],["mut",-10.837289810180664],["▁mouth",-10.837342262268066],["▁vast",-10.837395668029783],["▁Ob",-10.837569236755373],["lit",-10.83763313293457],["▁poly",-10.837878227233888],["▁trained",-10.838102340698242],["▁specialist",-10.838122367858888],["UL",-10.83822250366211],["▁seiner",-10.838336944580078],["SS",-10.838627815246582],["▁vacation",-10.838672637939451],["▁resume",-10.839157104492188],["▁constantly",-10.839717864990234],["▁treated",-10.83986759185791],["▁150",-10.840936660766602],["▁native",-10.841246604919434],["▁Russian",-10.84132957458496],["▁patterns",-10.841371536254885],["▁knowing",-10.841670989990234],["▁Pan",-10.841682434082031],["peri",-10.841848373413086],["aci",-10.841864585876465],["▁answers",-10.842114448547363],["▁heute",-10.842985153198242],["93",-10.843056678771973],["▁Winter",-10.844083786010742],["▁yes",-10.844173431396484],["SP",-10.844185829162598],["].",-10.844388008117676],["▁kein",-10.844862937927246],["▁introduce",-10.8450927734375],["-4",-10.84555435180664],["▁shoot",-10.845762252807615],["AR",-10.84576416015625],["▁receiving",-10.845864295959473],["▁intre",-10.84702205657959],["▁appeared",-10.84708023071289],["▁brother",-10.84732151031494],["▁extend",-10.847765922546388],["▁fara",-10.848737716674805],["▁kommt",-10.848876953125],["ali",-10.848913192749023],["▁numai",-10.849047660827637],["▁scientific",-10.84913158416748],["▁virtual",-10.849145889282228],["▁Ac",-10.849513053894045],["▁procedures",-10.849631309509276],["▁silver",-10.849821090698242],["▁leather",-10.849979400634766],["DA",-10.85014820098877],["▁executive",-10.850263595581056],["▁officials",-10.850496292114258],["▁agencies",-10.850503921508787],["▁Software",-10.850540161132812],["▁cor",-10.850690841674805],["Con",-10.850741386413574],["▁log",-10.851066589355469],["ț",-10.851147651672363],["02",-10.851195335388184],["▁7.",-10.85245132446289],["▁accepted",-10.852483749389648],["▁Berlin",-10.852538108825684],["ID",-10.852582931518556],["cot",-10.852788925170898],["▁employment",-10.85279941558838],["run",-10.853020668029783],["▁identified",-10.853178977966309],["96",-10.853887557983398],["▁déjà",-10.853944778442385],["▁cuisine",-10.853952407836914],["turi",-10.854070663452148],["▁Japanese",-10.85431671142578],["▁golf",-10.854514122009276],["▁Ki",-10.854787826538086],["▁carefully",-10.854863166809082],["▁remote",-10.854973793029783],["▁2018,",-10.855148315429688],["▁sus",-10.855154991149902],["tique",-10.85529327392578],["▁residential",-10.855695724487305],["97",-10.855809211730955],["▁Spring",-10.855908393859863],["▁Marketing",-10.856186866760254],["▁Control",-10.85630989074707],["var",-10.85634422302246],["▁historical",-10.8563814163208],["▁freedom",-10.856423377990724],["sure",-10.856426239013672],["▁broken",-10.856796264648438],["▁criminal",-10.85694980621338],["▁innovation",-10.857075691223145],["▁Italian",-10.857192039489746],["sper",-10.857282638549805],["▁cake",-10.857653617858888],["▁candidates",-10.857894897460938],["▁sizes",-10.858267784118652],["pel",-10.85836696624756],["▁frequently",-10.85889720916748],["▁planet",-10.859138488769531],["▁writer",-10.859519958496094],["1,",-10.859569549560549],["uvent",-10.85959529876709],["▁awareness",-10.859807968139648],["name",-10.859954833984377],["▁Children",-10.859980583190918],["▁relatively",-10.860311508178713],["▁pu",-10.860321998596191],["▁quiet",-10.86038875579834],["▁planned",-10.860716819763184],["▁election",-10.861419677734377],["▁6.",-10.861761093139648],["▁broad",-10.861772537231444],["▁skill",-10.861835479736328],["▁reasonable",-10.862037658691406],["▁Fort",-10.86228370666504],["▁aceea",-10.862407684326172],["▁arrived",-10.86263370513916],["▁payments",-10.862680435180664],["ack",-10.862700462341309],["▁Ort",-10.863354682922363],["▁investors",-10.863364219665527],["▁operate",-10.86351203918457],["ME",-10.86355686187744],["dic",-10.863683700561523],["▁foods",-10.863731384277344],["▁stick",-10.863831520080566],["▁agents",-10.86412525177002],["▁crowd",-10.864175796508787],["▁Students",-10.86448097229004],["▁concerned",-10.864609718322754],["test",-10.864740371704102],["▁designer",-10.865334510803224],["▁Conference",-10.865593910217283],["▁saving",-10.86610507965088],["▁recorded",-10.866422653198242],["▁proposed",-10.866564750671388],["▁ship",-10.86657428741455],["▁cred",-10.867274284362791],["▁Ci",-10.867440223693848],["RE",-10.867619514465332],["▁tradition",-10.867753982543944],["▁worldwide",-10.867779731750488],["64",-10.867944717407228],["▁television",-10.867989540100098],["▁projet",-10.868102073669434],["ency",-10.868487358093262],["▁struggle",-10.86851406097412],["▁twice",-10.868955612182615],["▁Off",-10.869234085083008],["▁begins",-10.869577407836914],["key",-10.869794845581056],["▁Table",-10.86996364593506],["▁demande",-10.870177268981934],["▁liquid",-10.870441436767578],["meter",-10.870684623718262],["▁2001",-10.871190071105955],["▁willing",-10.871660232543944],["▁medicine",-10.871707916259766],["▁expand",-10.871747970581056],["▁2004",-10.871804237365724],["▁2002",-10.87201690673828],["▁accord",-10.872292518615724],["▁Chris",-10.872446060180664],["▁prove",-10.872543334960938],["ston",-10.872740745544434],["mettre",-10.872800827026367],["▁moments",-10.873537063598633],["tik",-10.87368392944336],["such",-10.874055862426758],["2.",-10.874431610107422],["▁UN",-10.874561309814451],["▁jump",-10.874737739562988],["▁dish",-10.87539291381836],["▁Key",-10.87566375732422],["▁challenging",-10.875975608825684],["▁domestic",-10.876410484313965],["▁impressive",-10.876752853393556],["iger",-10.877022743225098],["▁Ram",-10.877157211303713],["▁doit",-10.877263069152832],["▁concrete",-10.87734317779541],["▁Unternehmen",-10.877397537231444],["▁LED",-10.877429008483888],["▁trouver",-10.877533912658691],["▁fundamental",-10.877875328063965],["▁implementation",-10.878121376037598],["85",-10.878247261047363],["▁hosting",-10.87856388092041],["▁Game",-10.878691673278809],["▁taught",-10.878981590270996],["tung",-10.879016876220703],["ront",-10.87940502166748],["▁shoes",-10.879639625549316],["79",-10.8797607421875],["▁stunning",-10.879778861999512],["▁Congress",-10.880142211914062],["▁Ent",-10.880278587341309],["▁Wer",-10.880607604980469],["▁alt",-10.880608558654783],["ör",-10.880699157714844],["▁calm",-10.8808012008667],["46",-10.881132125854492],["▁Daca",-10.881404876708984],["71",-10.881938934326172],["▁Dec",-10.88239288330078],["▁Fo",-10.882437705993652],["▁defense",-10.88313102722168],["▁expectations",-10.883166313171388],["▁Alle",-10.88318920135498],["▁brief",-10.883691787719728],["▁Hospital",-10.883975982666016],["▁sides",-10.884121894836426],["▁yellow",-10.884140014648438],["lei",-10.88451862335205],["▁speaking",-10.884589195251465],["▁crucial",-10.885198593139648],["▁Town",-10.8854341506958],["▁married",-10.885574340820312],["▁acesta",-10.885583877563477],["▁noted",-10.885611534118652],["▁Word",-10.885659217834473],["▁conducted",-10.885963439941406],["▁decor",-10.886249542236328],["kon",-10.88656520843506],["▁supplies",-10.8866605758667],["▁adventure",-10.886691093444824],["▁exhibition",-10.887163162231444],["heit",-10.887300491333008],["▁36",-10.88744831085205],["eria",-10.887505531311035],["ines",-10.887551307678224],["ological",-10.887582778930664],["quel",-10.88806438446045],["▁Van",-10.88825511932373],["-19",-10.88853645324707],["2,",-10.888566970825195],["▁Band",-10.888989448547363],["▁soil",-10.889184951782228],["▁Tim",-10.889599800109863],["▁NOT",-10.88968563079834],["▁pilot",-10.889753341674805],["▁Sh",-10.889774322509766],["Ho",-10.890361785888672],["CA",-10.890509605407717],["▁Eu",-10.890745162963867],["▁committee",-10.890829086303713],["▁Store",-10.891075134277344],["▁joint",-10.89111614227295],["▁Op",-10.891315460205078],["▁Jack",-10.891985893249512],["quality",-10.89216423034668],["▁Has",-10.892489433288574],["▁wenig",-10.892507553100586],["hood",-10.892545700073242],["▁Class",-10.892582893371582],["rus",-10.892773628234863],["▁grown",-10.89294719696045],["▁About",-10.893518447875977],["▁sum",-10.893942832946776],["▁Fair",-10.893946647644045],["SA",-10.894149780273438],["92",-10.894185066223145],["▁fourth",-10.894354820251465],["▁featured",-10.894384384155272],["▁Pen",-10.89444637298584],["▁natürlich",-10.894885063171388],["ched",-10.894901275634766],["▁ban",-10.895112991333008],["anne",-10.89522647857666],["▁theory",-10.895413398742676],["bin",-10.895438194274902],["iers",-10.895819664001465],["▁strategic",-10.895903587341309],["▁jours",-10.895956039428713],["▁communicate",-10.896124839782717],["▁pin",-10.896320343017578],["▁Bon",-10.89721393585205],["kom",-10.897290229797363],["-5",-10.89817714691162],["▁degrees",-10.898643493652344],["▁entertainment",-10.899014472961426],["ară",-10.899248123168944],["ales",-10.899425506591797],["▁pendant",-10.89954662322998],["▁Series",-10.899575233459473],["▁holds",-10.899592399597168],["▁Mini",-10.899828910827637],["▁Obama",-10.899898529052734],["▁conform",-10.900163650512695],["-10",-10.900216102600098],["▁preparation",-10.9009370803833],["▁autre",-10.90105152130127],["▁mortgage",-10.901155471801758],["▁Kan",-10.901508331298828],["▁typical",-10.901538848876951],["01",-10.901711463928224],["▁Review",-10.901862144470217],["▁laptop",-10.902127265930176],["CR",-10.902610778808594],["▁thread",-10.90265941619873],["BS",-10.902661323547363],["▁upper",-10.902700424194336],["▁searching",-10.902932167053224],["▁pen",-10.90321445465088],["▁Middle",-10.90333080291748],["73",-10.903359413146973],["▁leg",-10.903650283813477],["onic",-10.904272079467772],["IS",-10.904356956481934],["▁Kar",-10.904623985290527],["anz",-10.9046630859375],["▁circuit",-10.904901504516602],["▁Casino",-10.905384063720703],["07",-10.90584659576416],["▁petit",-10.905906677246094],["TV",-10.905978202819824],["level",-10.906311988830566],["▁Point",-10.906312942504885],["rau",-10.906474113464355],["▁cabinet",-10.906991958618164],["▁failed",-10.907042503356934],["▁stated",-10.907126426696776],["LA",-10.907461166381836],["▁privacy",-10.907596588134766],["vol",-10.907901763916016],["ativ",-10.908151626586914],["▁matters",-10.908210754394531],["▁Mor",-10.908555030822754],["▁Ur",-10.90860652923584],["view",-10.908968925476074],["▁consultation",-10.90921688079834],["TS",-10.909296989440918],["▁apartment",-10.909412384033203],["▁integrated",-10.909425735473633],["74",-10.909669876098633],["▁Through",-10.909710884094238],["▁kick",-10.909798622131348],["▁perioada",-10.90993881225586],["▁entirely",-10.909953117370604],["▁impossible",-10.91015911102295],["▁consideration",-10.910268783569336],["▁Alt",-10.91054916381836],["▁Come",-10.911089897155762],["▁outstanding",-10.911276817321776],["83",-10.911727905273438],["▁prezent",-10.911859512329102],["▁Local",-10.911993980407717],["▁Camp",-10.912056922912598],["▁bear",-10.912067413330078],["enden",-10.91226291656494],["life",-10.91236686706543],["▁Haus",-10.912516593933104],["▁William",-10.912644386291504],["“,",-10.912665367126465],["▁Instagram",-10.91285514831543],["▁solve",-10.913195610046388],["▁Ze",-10.91343116760254],["▁everyday",-10.91357135772705],["bla",-10.913615226745604],["eng",-10.913662910461426],["ough",-10.914246559143066],["84",-10.914483070373535],["?\"",-10.914599418640137],["rely",-10.91476821899414],["TH",-10.914841651916504],["lang",-10.91511058807373],["82",-10.915817260742188],["▁removal",-10.91589641571045],["ală",-10.915956497192385],["▁circumstances",-10.916097640991213],["ente",-10.91622257232666],["▁lieu",-10.91645336151123],["▁2016.",-10.91710376739502],["▁ales",-10.91734218597412],["▁pure",-10.917482376098633],["▁choosing",-10.917590141296388],["▁Russia",-10.917698860168455],["amp",-10.91770362854004],["▁Santa",-10.91788387298584],["▁happening",-10.918203353881836],["▁crew",-10.91822338104248],["▁lei",-10.91855239868164],["IP",-10.91858196258545],["RO",-10.919425964355469],["▁resort",-10.919514656066896],["ened",-10.919689178466797],["MB",-10.920031547546388],["▁styles",-10.920052528381348],["▁dernier",-10.920533180236816],["uck",-10.920699119567873],["▁Guide",-10.920710563659668],["fic",-10.92096996307373],["▁fitness",-10.921977996826172],["▁healthcare",-10.92223072052002],["mol",-10.92237663269043],["▁vis",-10.922721862792969],["▁atmosphere",-10.922972679138184],["▁motion",-10.92298984527588],["▁closer",-10.923114776611328],["▁SA",-10.92335319519043],["▁default",-10.92337131500244],["▁architecture",-10.923471450805664],["iile",-10.923528671264648],["zel",-10.923675537109377],["cla",-10.92387866973877],["OP",-10.924382209777832],["▁west",-10.924965858459473],["▁Energy",-10.925613403320312],["▁positions",-10.925777435302734],["▁contrast",-10.925885200500488],["▁serves",-10.92605972290039],["cup",-10.926340103149414],["▁rose",-10.926485061645508],["pers",-10.92664623260498],["▁noise",-10.926846504211426],["mont",-10.92690658569336],["#",-10.927061080932615],["lies",-10.927326202392578],["pat",-10.92771816253662],["IC",-10.927956581115724],["arc",-10.927989959716797],["▁winner",-10.928524017333984],["tent",-10.928732872009276],["▁Preis",-10.929106712341309],["▁vin",-10.929254531860352],["blo",-10.92929458618164],["ție",-10.929520606994627],["▁OR",-10.930315017700195],["▁Buch",-10.930798530578612],["▁nearby",-10.931190490722656],["▁meetings",-10.93129062652588],["▁48",-10.93146514892578],["▁quand",-10.93152904510498],["▁usual",-10.931936264038086],["▁weitere",-10.932539939880373],["▁caught",-10.932571411132812],["▁issued",-10.932626724243164],["ști",-10.932896614074709],["upcoming",-10.933232307434082],["▁agreed",-10.933233261108398],["place",-10.933353424072266],["▁Brand",-10.93344497680664],["▁relation",-10.933969497680664],["▁atât",-10.934090614318848],["▁Tre",-10.934176445007324],["▁lors",-10.934438705444336],["▁adopt",-10.934452056884766],["▁celui",-10.93458366394043],["cken",-10.93505859375],["▁partnership",-10.935284614562988],["?”",-10.935376167297363],["▁ba",-10.935746192932127],["▁ID",-10.935832023620604],["▁consistent",-10.935835838317873],["▁Ya",-10.935941696166992],["▁Academy",-10.936182022094728],["cial",-10.936230659484863],["1%",-10.936366081237791],["▁mise",-10.936684608459473],["▁gute",-10.936728477478027],["gli",-10.936939239501951],["▁Bu",-10.937679290771484],["▁reduction",-10.937917709350586],["acy",-10.93812656402588],["aga",-10.938161849975586],["▁Sc",-10.938273429870604],["▁Informationen",-10.938308715820312],["▁kommen",-10.938352584838867],["press",-10.93837833404541],["▁bridge",-10.938379287719728],["▁qualified",-10.938671112060549],["position",-10.93882179260254],["▁combat",-10.93893337249756],["!\"",-10.938993453979492],["eva",-10.939217567443848],["oase",-10.939380645751951],["▁inner",-10.939410209655762],["▁loans",-10.939720153808594],["made",-10.939786911010742],["▁Mexico",-10.93993091583252],["▁formal",-10.940092086791992],["▁fell",-10.94021987915039],["91",-10.940524101257324],["▁campus",-10.9407320022583],["ienne",-10.940869331359863],["▁framework",-10.94105339050293],["ncing",-10.941157341003418],["▁Para",-10.941222190856934],["▁password",-10.941298484802246],["▁sei",-10.94142246246338],["▁Cross",-10.941532135009766],["▁Ten",-10.94187355041504],["bank",-10.941887855529783],["▁gun",-10.94200038909912],["ient",-10.942021369934082],["▁usage",-10.942176818847656],["▁(2",-10.942278861999512],["Gra",-10.942320823669434],["▁prea",-10.94253158569336],["▁Als",-10.942619323730469],["▁finance",-10.942638397216797],["tate",-10.942665100097656],["ition",-10.942703247070312],["▁regulations",-10.942741394042969],["▁Professional",-10.943001747131348],["▁pl",-10.94336986541748],["▁SEO",-10.943472862243652],["▁trecut",-10.943487167358398],["▁aller",-10.943509101867676],["▁violence",-10.943986892700195],["▁membership",-10.944117546081545],["▁picked",-10.944162368774414],["▁collected",-10.9443359375],["▁extended",-10.944449424743652],["▁religious",-10.944661140441896],["▁salle",-10.944767951965332],["RA",-10.944781303405762],["▁blend",-10.945232391357422],["▁Min",-10.94532299041748],["kal",-10.945887565612791],["▁featuring",-10.945902824401855],["▁researchers",-10.946263313293455],["▁Search",-10.946558952331545],["CE",-10.946675300598145],["▁recognized",-10.94682502746582],["▁semi",-10.94692611694336],["▁exposure",-10.94718074798584],["grew",-10.947466850280762],["▁candidate",-10.948250770568848],["▁shares",-10.948908805847168],["▁edit",-10.949745178222656],["CS",-10.949905395507812],["▁Cl",-10.950240135192873],["▁Enjoy",-10.951438903808594],["▁hurt",-10.951482772827148],["▁bottle",-10.951593399047852],["▁Buy",-10.95159912109375],["▁superior",-10.95228672027588],["▁missed",-10.95242404937744],["▁workshop",-10.952433586120604],["action",-10.952437400817873],["ple",-10.952699661254885],["▁Schul",-10.952814102172852],["▁houses",-10.953080177307127],["▁2017,",-10.953569412231444],["▁killed",-10.953750610351562],["▁calendar",-10.954306602478027],["▁Mike",-10.954597473144531],["FA",-10.954627990722656],["nut",-10.95487117767334],["▁establish",-10.955140113830566],["▁alcohol",-10.95514965057373],["▁closely",-10.955170631408691],["▁MA",-10.955381393432615],["pul",-10.955389022827148],["▁defined",-10.955666542053224],["aires",-10.955692291259766],["▁Shi",-10.955703735351562],["▁plays",-10.956303596496582],["▁sister",-10.95690631866455],["▁cable",-10.957179069519045],["▁desk",-10.957215309143066],["▁apoi",-10.957738876342772],["▁identity",-10.95785140991211],["▁stars",-10.957931518554688],["▁fata",-10.958008766174316],["▁obvious",-10.958330154418944],["▁dental",-10.95843505859375],["AM",-10.958802223205566],["▁sharp",-10.95881175994873],["duc",-10.959053993225098],["▁manufacturer",-10.95914077758789],["!)",-10.959270477294922],["▁objects",-10.959720611572266],["▁Ag",-10.959989547729492],["referred",-10.960195541381836],["▁Ak",-10.960308074951172],["burg",-10.960360527038574],["▁nouveau",-10.960854530334473],["▁Pal",-10.960994720458984],["▁Arbeits",-10.961280822753906],["▁personally",-10.961288452148438],["▁Dé",-10.961292266845703],["▁import",-10.961688041687012],["▁justice",-10.961913108825684],["▁photography",-10.962705612182615],["▁portfolio",-10.962841987609863],["56",-10.96314525604248],["▁nouvelle",-10.963293075561523],["▁oven",-10.964197158813477],["▁400",-10.964272499084473],["▁mixed",-10.964395523071287],["▁relax",-10.964427947998049],["▁imp",-10.964703559875488],["▁».",-10.964734077453612],["▁mail",-10.964777946472168],["rage",-10.964861869812012],["nos",-10.964974403381348],["▁drugs",-10.965195655822754],["▁jede",-10.965211868286133],["▁einige",-10.965232849121094],["▁8.",-10.965325355529783],["ters",-10.965412139892578],["▁electrical",-10.965432167053224],["▁puis",-10.96583652496338],["▁films",-10.965903282165527],["41",-10.966036796569824],["▁moral",-10.966398239135742],["lage",-10.966402053833008],["▁spaces",-10.966415405273438],["▁Ed",-10.96646213531494],["▁classroom",-10.966588020324709],["▁große",-10.966588973999023],["▁baza",-10.96688747406006],["face",-10.967308044433594],["▁informed",-10.967333793640137],["▁improving",-10.967477798461914],["▁guidance",-10.967880249023438],["▁gallery",-10.96800708770752],["cular",-10.968046188354492],["53",-10.968094825744627],["Despite",-10.968238830566406],["▁forme",-10.968304634094238],["▁système",-10.96841526031494],["▁Win",-10.968494415283203],["▁Small",-10.96853733062744],["▁Mobile",-10.968564987182615],["▁tape",-10.96860694885254],["▁erhalten",-10.968914985656738],["▁movies",-10.968928337097168],["▁Unfortunately",-10.968963623046877],["▁Looking",-10.96945858001709],["▁guard",-10.969584465026855],["▁pr",-10.969820976257324],["▁confident",-10.96988582611084],["BA",-10.970229148864746],["bas",-10.970272064208984],["hum",-10.97050666809082],["ular",-10.9705171585083],["▁Still",-10.970593452453612],["▁flavor",-10.970656394958496],["▁boost",-10.970773696899414],["▁division",-10.970842361450195],["ising",-10.971006393432615],["▁monitoring",-10.971044540405272],["▁Sen",-10.97105884552002],["▁https",-10.971527099609377],["mainly",-10.971735000610352],["play",-10.972251892089844],["▁dynamic",-10.972357749938965],["▁coup",-10.972370147705078],["▁carpet",-10.972561836242676],["iner",-10.97284698486328],["ral",-10.97325611114502],["iser",-10.97332000732422],["RC",-10.9739990234375],["▁definition",-10.97475814819336],["▁Za",-10.974767684936523],["friendly",-10.974883079528809],["43",-10.975123405456545],["link",-10.975180625915527],["▁Multi",-10.97519302368164],["▁einmal",-10.975272178649902],["▁stopped",-10.975394248962402],["vel",-10.975456237792969],["▁ongoing",-10.975565910339355],["▁ancient",-10.976259231567385],["take",-10.976301193237305],["cia",-10.976432800292969],["▁USB",-10.976545333862305],["▁attorney",-10.976866722106934],["▁slot",-10.976866722106934],["▁Line",-10.97693157196045],["rice",-10.977087020874023],["ify",-10.977520942687988],["ó",-10.978260040283203],["▁flash",-10.978483200073242],["▁extension",-10.978555679321287],["▁Ende",-10.979022979736328],["▁powder",-10.979114532470703],["ească",-10.979143142700195],["03",-10.979327201843262],["▁normally",-10.979416847229004],["▁pun",-10.980108261108398],["viewed",-10.980138778686523],["ssen",-10.980896949768066],["ache",-10.981121063232422],["ește",-10.98122787475586],["▁PA",-10.981266021728516],["FI",-10.981945991516112],["▁Frank",-10.98198127746582],["▁apa",-10.98242473602295],["▁coast",-10.982614517211914],["▁boy",-10.982665061950684],["lim",-10.982902526855469],["▁putin",-10.983194351196287],["▁script",-10.983332633972168],["▁noticed",-10.9837007522583],["▁dealing",-10.983922004699709],["▁Trans",-10.984100341796877],["▁border",-10.984447479248049],["▁reputation",-10.984657287597656],["-2",-10.984662055969238],["HS",-10.984707832336426],["▁supports",-10.98472499847412],["▁horse",-10.985146522521973],["nik",-10.98520565032959],["▁clothes",-10.985234260559082],["▁Card",-10.985612869262695],["▁relief",-10.98595905303955],["▁Visit",-10.98625946044922],["▁luni",-10.98659324645996],["81",-10.986693382263184],["qua",-10.986945152282717],["▁Comp",-10.98697280883789],["▁investigation",-10.987137794494627],["▁depth",-10.987598419189451],["▁earned",-10.987709045410156],["▁Ren",-10.98809051513672],["▁Dumnezeu",-10.988107681274414],["▁Joe",-10.988210678100586],["▁goods",-10.988288879394531],["▁Vol",-10.988686561584473],["▁certified",-10.989118576049805],["▁favor",-10.98932647705078],["▁Scott",-10.989599227905272],["▁protest",-10.989802360534668],["▁pace",-10.989803314208984],["▁Angeles",-10.990368843078612],["inch",-10.99050521850586],["▁charged",-10.99052619934082],["code",-10.990968704223633],["▁convenient",-10.99138355255127],["▁Nord",-10.99155616760254],["▁yesterday",-10.991691589355469],["Dacă",-10.99169635772705],["▁Travel",-10.991786003112791],["▁kid",-10.991941452026367],["ction",-10.991986274719238],["▁groupe",-10.992770195007324],["pu",-10.993056297302246],["bzw",-10.993196487426758],["▁mixture",-10.993513107299805],["▁Farm",-10.993715286254885],["▁acces",-10.993939399719238],["matic",-10.993950843811035],["▁comparison",-10.994006156921388],["reich",-10.994095802307127],["pet",-10.994502067565918],["▁lit",-10.994685173034668],["▁organized",-10.99476432800293],["just",-10.995564460754396],["▁fellow",-10.996004104614258],["Ver",-10.996209144592283],["▁trends",-10.99622631072998],["▁evaluation",-10.99626636505127],["feld",-10.99639892578125],["▁Pu",-10.99671459197998],["▁equipped",-10.99727725982666],["▁catre",-10.997278213500977],["eck",-10.997369766235352],["▁facing",-10.997998237609863],["▁instrument",-10.998361587524414],["▁pleased",-10.998507499694824],["▁tap",-10.998818397521973],["dom",-10.998826026916504],["▁pump",-10.999384880065918],["▁functional",-10.999429702758787],["▁authority",-10.999455451965332],["▁experiment",-10.999478340148926],["LO",-10.999529838562012],["▁scheduled",-10.999552726745604],["halt",-10.999604225158691],["▁ceiling",-10.999761581420898],["▁Step",-11.000310897827148],["▁orders",-11.00032901763916],["▁speech",-11.001046180725098],["▁stands",-11.00111961364746],["▁disc",-11.001920700073242],["▁rec",-11.001935958862305],["▁Text",-11.00243854522705],["▁banks",-11.00294017791748],["▁oameni",-11.003045082092283],["▁communications",-11.00319480895996],["trag",-11.003307342529297],["▁trail",-11.003803253173828],["AN",-11.00426197052002],["▁Federal",-11.004467964172363],["▁quote",-11.00455093383789],["▁spus",-11.004620552062988],["▁managing",-11.004990577697754],["▁booking",-11.00505256652832],["▁Blog",-11.005669593811035],["▁tank",-11.005681991577148],["pon",-11.005804061889648],["GE",-11.00582218170166],["▁fiscal",-11.005871772766112],["▁satisfaction",-11.006044387817385],["cre",-11.00614070892334],["▁protected",-11.006494522094728],["▁enfants",-11.00678253173828],["▁dort",-11.007554054260254],["▁Mel",-11.008041381835938],["▁turns",-11.00804615020752],["▁savings",-11.008106231689451],["▁voir",-11.008358001708984],["▁Boston",-11.008394241333008],["▁debate",-11.008469581604004],["▁SO",-11.00885772705078],["▁tables",-11.009193420410156],["▁honest",-11.009210586547852],["mate",-11.009283065795898],["▁chart",-11.0094633102417],["decât",-11.009682655334473],["▁Radio",-11.009685516357422],["54",-11.00986385345459],["▁vol",-11.010008811950684],["last",-11.01014804840088],["▁tall",-11.010408401489258],["▁Should",-11.010489463806152],["▁sink",-11.010525703430176],["▁Right",-11.010527610778809],["▁male",-11.010720252990724],["▁Modern",-11.010753631591797],["▁indeed",-11.010886192321776],["▁Garden",-11.01113986968994],["▁Mod",-11.011307716369627],["▁turning",-11.0115327835083],["▁inches",-11.011557579040527],["▁Police",-11.01183795928955],["▁Pay",-11.01201629638672],["UE",-11.0126371383667],["mé",-11.012652397155762],["EE",-11.013046264648438],["▁cookies",-11.013116836547852],["rip",-11.013351440429688],["▁Motor",-11.01352310180664],["▁lung",-11.01379680633545],["▁Ap",-11.013995170593262],["▁sustainable",-11.014066696166992],["▁instant",-11.014240264892578],["▁Rose",-11.014464378356934],["▁Carolina",-11.014906883239746],["▁Help",-11.014969825744627],["IE",-11.01535701751709],["▁Jersey",-11.015522956848145],["▁Spanish",-11.015586853027344],["▁wheel",-11.015660285949709],["▁fishing",-11.0158109664917],["gram",-11.01593780517578],["▁ST",-11.016227722167969],["▁Nov",-11.01632022857666],["▁reporting",-11.016362190246582],["ked",-11.016467094421388],["▁Leben",-11.016557693481444],["▁organisation",-11.016843795776367],["▁tiny",-11.017144203186035],["▁Alex",-11.017236709594728],["▁obtained",-11.017255783081056],["▁Acest",-11.017367362976074],["▁dangerous",-11.01749038696289],["utter",-11.017624855041504],["▁rev",-11.01801586151123],["Un",-11.018242835998535],["▁revealed",-11.018356323242188],["▁decade",-11.018709182739258],["▁possibility",-11.01945686340332],["service",-11.019577980041504],["è",-11.01966667175293],["▁Chief",-11.01967430114746],["▁Durch",-11.019795417785645],["▁cadre",-11.019843101501465],["▁wearing",-11.019845008850098],["sized",-11.01988410949707],["LY",-11.01989459991455],["▁unser",-11.019963264465332],["▁2016,",-11.01998805999756],["▁fail",-11.020028114318848],["iques",-11.020115852355955],["▁Angel",-11.020315170288086],["▁transportation",-11.02036476135254],["▁dates",-11.020395278930664],["▁danger",-11.020731925964355],["▁forum",-11.020828247070312],["zug",-11.020885467529297],["▁filed",-11.021199226379396],["loc",-11.021201133728027],["éri",-11.021234512329102],["tribu",-11.02139377593994],["▁entered",-11.021639823913574],["▁porte",-11.021928787231444],["▁arts",-11.021979331970217],["▁reform",-11.022001266479492],["▁Main",-11.022101402282717],["▁dir",-11.022111892700195],["▁approval",-11.022465705871582],["▁juice",-11.022750854492188],["vier",-11.022771835327148],["▁nivel",-11.02318000793457],["▁returns",-11.023423194885254],["▁formed",-11.023723602294922],["▁combine",-11.02436351776123],["▁cours",-11.024392127990724],["▁Standard",-11.024463653564451],["▁certification",-11.024677276611328],["escu",-11.024996757507324],["▁achieved",-11.025278091430664],["▁Model",-11.025280952453612],["rul",-11.025404930114746],["▁Tage",-11.025530815124512],["▁injuries",-11.02560806274414],["▁Sal",-11.025671005249023],["▁expenses",-11.025887489318848],["▁cet",-11.026009559631348],["▁taxes",-11.026028633117676],["diesen",-11.02626895904541],["▁fairly",-11.026638984680176],["▁Access",-11.026866912841797],["wind",-11.027122497558594],["IM",-11.027252197265623],["ense",-11.027548789978027],["▁hang",-11.027957916259766],["▁citizens",-11.028020858764648],["3%",-11.028101921081545],["lum",-11.028268814086914],["▁discussed",-11.028326034545898],["AC",-11.02841854095459],["‘",-11.0286865234375],["▁Sol",-11.028698921203612],["06",-11.028816223144531],["stellen",-11.029170989990234],["▁participation",-11.02917194366455],["▁Box",-11.029200553894045],["▁bieten",-11.029687881469728],["▁Louis",-11.029730796813965],["▁lessons",-11.029789924621582],["▁visible",-11.029966354370115],["▁Cam",-11.030128479003906],["▁Ban",-11.03053092956543],["▁Far",-11.03060245513916],["▁travers",-11.030759811401367],["▁telling",-11.030808448791504],["▁magic",-11.030855178833008],["▁Night",-11.031316757202148],["▁judge",-11.031400680541992],["▁Pat",-11.031482696533203],["▁Southern",-11.031901359558104],["OL",-11.031929969787598],["fully",-11.032191276550291],["▁acestea",-11.03223705291748],["▁Order",-11.032383918762209],["▁facut",-11.032523155212402],["▁Matt",-11.032600402832031],["registr",-11.03278923034668],["▁Yet",-11.032811164855955],["ß",-11.033596992492676],["▁făcut",-11.033618927001951],["▁versions",-11.033780097961426],["▁Force",-11.03396224975586],["rick",-11.034153938293455],["▁rund",-11.034563064575195],["ike",-11.034658432006836],["▁Young",-11.034675598144531],["▁ski",-11.034927368164062],["CU",-11.035385131835938],["▁Second",-11.035510063171388],["▁graduate",-11.03554916381836],["▁Bible",-11.036049842834473],["▁vary",-11.036060333251951],["▁celebration",-11.036151885986328],["▁risks",-11.036210060119627],["erii",-11.036327362060549],["rance",-11.036577224731444],["▁MP",-11.036787986755373],["▁tale",-11.036788940429688],["▁Ford",-11.037044525146484],["▁attached",-11.037278175354004],["▁Sy",-11.037312507629396],["▁Ly",-11.03765869140625],["stellung",-11.037687301635742],["▁trop",-11.0377197265625],["▁années",-11.037736892700195],["▁linked",-11.03792667388916],["pit",-11.038352012634276],["So",-11.03835391998291],["ţe",-11.03847312927246],["▁origin",-11.038509368896484],["▁boys",-11.039263725280762],["holder",-11.039352416992188],["read",-11.039461135864258],["▁relative",-11.03950023651123],["▁industries",-11.03958511352539],["making",-11.039688110351562],["▁tun",-11.039917945861816],["▁forced",-11.041061401367188],["▁Welcome",-11.041086196899414],["▁explained",-11.041138648986816],["MP",-11.041389465332031],["▁Three",-11.041613578796388],["aza",-11.041768074035645],["▁1999",-11.041924476623535],["▁erst",-11.042237281799316],["RS",-11.04262351989746],["▁attractive",-11.04279899597168],["▁visited",-11.042805671691896],["▁nom",-11.042874336242676],["▁drum",-11.042933464050291],["cast",-11.043068885803224],["ogen",-11.043105125427246],["▁tech",-11.04360294342041],["▁Comment",-11.043664932250977],["▁Little",-11.04405689239502],["▁suggested",-11.044086456298828],["▁gar",-11.04420566558838],["▁crack",-11.04458999633789],["▁shooting",-11.044676780700684],["▁Try",-11.044759750366213],["▁Remember",-11.045008659362791],["▁folks",-11.045217514038086],["▁MS",-11.045512199401855],["▁Dia",-11.04584789276123],["3)",-11.046561241149902],["arbeit",-11.04697036743164],["▁pepper",-11.04706573486328],["zz",-11.047107696533203],["▁extreme",-11.047235488891602],["▁extrem",-11.047367095947266],["▁severe",-11.047768592834473],["▁networks",-11.047882080078123],["păr",-11.047910690307615],["sent",-11.047933578491213],["▁structures",-11.048048973083496],["▁Join",-11.048078536987305],["▁privind",-11.048255920410156],["▁marriage",-11.04865837097168],["▁liegt",-11.04891872406006],["eben",-11.048995971679688],["▁produse",-11.049076080322266],["▁tested",-11.049090385437012],["▁Queen",-11.049134254455566],["▁Tax",-11.049687385559082],["rian",-11.049710273742676],["▁Problem",-11.050151824951172],["izat",-11.05023193359375],["udi",-11.05032444000244],["▁LA",-11.050718307495115],["▁afford",-11.051108360290527],["▁percentage",-11.05121898651123],["▁cute",-11.051547050476074],["▁gorgeous",-11.051891326904297],["▁indoor",-11.05190372467041],["▁configuration",-11.05210304260254],["▁immediate",-11.052303314208984],["▁exemple",-11.052450180053713],["▁Being",-11.052550315856934],["▁introduction",-11.05259132385254],["ella",-11.05320644378662],["bare",-11.053521156311035],["▁besser",-11.053539276123049],["▁Put",-11.053740501403809],["gon",-11.054248809814451],["▁Italy",-11.054259300231934],["▁Thus",-11.05435562133789],["tari",-11.054437637329102],["0.000",-11.054460525512695],["▁Price",-11.054651260375977],["▁Trust",-11.054824829101562],["▁contra",-11.054863929748535],["▁layout",-11.05504035949707],["▁Ireland",-11.055187225341797],["ctor",-11.055344581604004],["atoare",-11.055540084838867],["pra",-11.055729866027832],["rent",-11.055892944335938],["▁Seite",-11.05605411529541],["▁ori",-11.056280136108398],["spiel",-11.056541442871094],["▁Times",-11.056883811950684],["primarily",-11.056974411010742],["nov",-11.05703067779541],["▁desired",-11.057061195373535],["▁Would",-11.057072639465332],["PL",-11.057225227355955],["▁originally",-11.057367324829102],["▁Ana",-11.05746364593506],["EN",-11.05754566192627],["▁occasion",-11.05755615234375],["▁grant",-11.057572364807127],["igkeit",-11.057975769042969],["▁scheme",-11.058146476745604],["▁2015.",-11.058621406555176],["izare",-11.058778762817385],["gate",-11.058792114257812],["▁poker",-11.058899879455566],["pping",-11.058998107910156],["▁Wild",-11.059511184692385],["▁YouTube",-11.059995651245115],["▁assume",-11.060284614562988],["с",-11.060614585876465],["▁rapport",-11.060623168945312],["▁labor",-11.060996055603027],["teur",-11.061041831970217],["▁genre",-11.06116008758545],["▁plat",-11.061745643615724],["▁listening",-11.061750411987305],["sky",-11.061777114868164],["▁neighborhood",-11.061782836914062],["▁3-",-11.06215000152588],["▁Library",-11.062162399291992],["agit",-11.062249183654783],["▁platforms",-11.06284999847412],["bei",-11.06288242340088],["AB",-11.06289768218994],["▁manufacturers",-11.06295394897461],["▁printing",-11.06314182281494],["▁crisis",-11.063326835632324],["▁Smart",-11.06335163116455],["▁drawing",-11.063406944274902],["MO",-11.06348991394043],["▁durable",-11.063569068908691],["chant",-11.0636625289917],["▁chemical",-11.063764572143556],["▁savoir",-11.063776016235352],["▁Max",-11.063802719116213],["gestellt",-11.06380844116211],["▁rural",-11.063854217529297],["52",-11.064105033874512],["▁invited",-11.064169883728027],["▁fil",-11.0642728805542],["▁Rob",-11.064284324645996],["▁Bell",-11.064387321472168],["▁neck",-11.064831733703612],["pac",-11.064879417419434],["wal",-11.06491470336914],["▁là",-11.064922332763672],["▁Virginia",-11.065081596374512],["▁applicable",-11.06509017944336],["▁abuse",-11.065153121948242],["aide",-11.065321922302246],["▁increases",-11.065396308898926],["▁moi",-11.065568923950195],["▁Non",-11.065577507019045],["▁Produkt",-11.065627098083496],["FC",-11.065644264221191],["▁shops",-11.065677642822266],["▁prendre",-11.065923690795898],["atul",-11.065990447998049],["▁sal",-11.066137313842772],["▁société",-11.06627082824707],["▁Hot",-11.066329002380373],["rim",-11.066587448120115],["gue",-11.06661605834961],["▁enterprise",-11.066624641418455],["▁33",-11.06732940673828],["mittel",-11.067395210266112],["ged",-11.067439079284668],["▁formula",-11.06777286529541],["▁spin",-11.067784309387209],["als",-11.067826271057127],["2%",-11.06785774230957],["bon",-11.068192481994627],["▁Executive",-11.068323135375977],["▁wirklich",-11.068427085876465],["îl",-11.068608283996582],["1.",-11.068917274475098],["▁Arm",-11.069157600402832],["▁rid",-11.069358825683594],["aries",-11.069727897644045],["▁incident",-11.06982421875],["▁copii",-11.070008277893066],["▁Charles",-11.070141792297363],["▁meals",-11.070147514343262],["▁wireless",-11.070237159729004],["Ex",-11.070364952087402],["▁Financial",-11.07054042816162],["▁AM",-11.070615768432615],["▁fest",-11.070645332336426],["▁Ol",-11.071410179138184],["oir",-11.071447372436523],["300",-11.071893692016602],["▁punct",-11.072138786315918],["▁Mad",-11.07283878326416],["▁Ali",-11.07290744781494],["lag",-11.073214530944824],["▁ocean",-11.073314666748049],["▁mirror",-11.073326110839844],["▁Additionally",-11.073869705200195],["alia",-11.073884963989258],["▁county",-11.073899269104004],["▁hip",-11.074305534362791],["dale",-11.074395179748535],["▁Stra",-11.074429512023926],["▁drag",-11.074575424194336],["▁Sand",-11.074851036071776],["▁historic",-11.074980735778809],["ière",-11.075427055358888],["▁examine",-11.075624465942385],["soci",-11.075634002685549],["ime",-11.076088905334473],["▁Insurance",-11.07621955871582],["▁crime",-11.076736450195312],["▁pare",-11.076945304870604],["▁craft",-11.077105522155762],["▁Building",-11.077279090881348],["mission",-11.077534675598145],["▁Americans",-11.077573776245115],["▁mg",-11.077799797058104],["▁passage",-11.077938079833984],["▁deposit",-11.078346252441406],["▁widely",-11.078444480895996],["nch",-11.078453063964844],["▁Coast",-11.07875633239746],["▁recipes",-11.078784942626951],["▁Ziel",-11.07951545715332],["▁duty",-11.079646110534668],["▁gerne",-11.079704284667969],["most",-11.080034255981444],["▁argument",-11.080158233642578],["▁root",-11.08021354675293],["▁consult",-11.08024787902832],["▁muscle",-11.080255508422852],["▁spoke",-11.08038330078125],["▁Cum",-11.080950736999512],["▁orange",-11.08103370666504],["▁reader",-11.08112335205078],["schw",-11.081151008605955],["▁commission",-11.081332206726074],["histoire",-11.081811904907228],["▁represents",-11.082064628601074],["▁meilleur",-11.082343101501465],["▁10.",-11.082358360290527],["HA",-11.082427024841309],["▁Systems",-11.082573890686035],["▁blind",-11.082603454589844],["▁HP",-11.083221435546877],["▁doi",-11.083307266235352],["▁signature",-11.083404541015623],["▁invite",-11.083505630493164],["▁Samsung",-11.083802223205566],["▁liber",-11.083942413330078],["▁letters",-11.0840482711792],["▁primul",-11.084186553955078],["▁losing",-11.084328651428224],["resulting",-11.084467887878418],["▁Computer",-11.08474063873291],["▁poll",-11.0847749710083],["rile",-11.085102081298828],["TI",-11.085142135620115],["▁cur",-11.08566951751709],["▁fonction",-11.085833549499512],["gat",-11.086359977722168],["AA",-11.086480140686035],["tiv",-11.086692810058594],["▁Str",-11.087076187133787],["ești",-11.08767795562744],["▁officer",-11.0877046585083],["reducing",-11.08772087097168],["▁gifts",-11.08780288696289],["▁performing",-11.08788776397705],["▁»,",-11.088349342346191],["▁guitar",-11.08838939666748],["▁segment",-11.088580131530762],["▁Tar",-11.08861255645752],["▁ultimately",-11.088805198669434],["▁cam",-11.088960647583008],["▁Arbeit",-11.089076042175291],["▁accessories",-11.089418411254885],["bad",-11.089820861816406],["home",-11.0899019241333],["▁clip",-11.08995532989502],["range",-11.090432167053224],["CM",-11.090867042541504],["▁printed",-11.090883255004885],["▁Pet",-11.091177940368652],["▁attract",-11.091333389282228],["date",-11.091501235961914],["▁Senior",-11.091503143310549],["▁genau",-11.092177391052246],["num",-11.092435836791992],["▁attended",-11.092674255371094],["▁Turn",-11.092824935913086],["▁History",-11.092830657958984],["some",-11.092852592468262],["▁describe",-11.09308910369873],["▁Lee",-11.093143463134766],["▁Fre",-11.093314170837402],["▁league",-11.093345642089844],["new",-11.093505859375],["tors",-11.093535423278809],["▁storm",-11.094005584716797],["▁Beispiel",-11.094197273254396],["▁index",-11.09434413909912],["▁awarded",-11.094613075256348],["state",-11.09462547302246],["▁1990",-11.094874382019045],["▁ends",-11.094902992248535],["kor",-11.095070838928224],["far",-11.095418930053713],["▁Page",-11.095541000366213],["▁promotion",-11.095610618591309],["▁weekly",-11.095726013183594],["400",-11.095966339111328],["iuni",-11.096365928649902],["▁Summer",-11.096376419067385],["▁thin",-11.096627235412598],["▁dafür",-11.09669303894043],["51",-11.096769332885742],["PR",-11.096978187561035],["▁Hy",-11.097001075744627],["gas",-11.097013473510742],["▁atat",-11.097166061401367],["▁mining",-11.097347259521484],["▁principles",-11.09741497039795],["gent",-11.097545623779297],["ika",-11.097685813903809],["▁religion",-11.097787857055664],["▁ordered",-11.098284721374512],["▁developers",-11.09829807281494],["▁pleasure",-11.098456382751465],["vit",-11.098505020141602],["mers",-11.0988130569458],["▁Section",-11.098873138427734],["▁por",-11.098960876464844],["▁Name",-11.099200248718262],["▁pink",-11.099260330200195],["dig",-11.09934139251709],["▁eligible",-11.099397659301758],["▁Happy",-11.09941577911377],["▁fo",-11.099480628967283],["▁availability",-11.099541664123535],["GO",-11.099583625793455],["▁Europa",-11.099637985229492],["▁Unit",-11.099656105041504],["▁1000",-11.09983730316162],["▁Berg",-11.099846839904783],["fini",-11.099853515625],["▁$3",-11.100565910339355],["iza",-11.100749969482422],["▁promo",-11.100830078125],["▁Low",-11.101234436035156],["abord",-11.101326942443848],["äh",-11.101485252380373],["▁Professor",-11.101570129394531],["▁array",-11.101579666137695],["▁hate",-11.101594924926758],["▁recording",-11.101601600646973],["RI",-11.101649284362791],["▁proof",-11.101710319519045],["lay",-11.10185718536377],["DE",-11.102007865905762],["▁surprised",-11.102066040039062],["▁boxes",-11.10219383239746],["▁noastre",-11.102386474609377],["zie",-11.102387428283691],["▁însă",-11.10254192352295],["▁ajuta",-11.102783203125],["▁weil",-11.1028413772583],["▁whenever",-11.103026390075684],["shi",-11.103194236755373],["satz",-11.103605270385742],["▁remind",-11.10401725769043],["▁consist",-11.10412311553955],["▁motiv",-11.104240417480469],["▁PS",-11.1043062210083],["▁trois",-11.104543685913086],["pad",-11.10477352142334],["▁besten",-11.104904174804688],["▁Stone",-11.105140686035156],["itz",-11.105157852172852],["fit",-11.105164527893066],["▁Mountain",-11.105178833007812],["OC",-11.10519027709961],["▁depends",-11.105228424072266],["▁Cover",-11.105387687683104],["▁bags",-11.10605812072754],["▁Bel",-11.106199264526367],["▁Engineering",-11.106304168701172],["▁flower",-11.106647491455078],["▁gratuit",-11.106670379638672],["▁smartphone",-11.10678005218506],["stan",-11.107197761535645],["spect",-11.10726261138916],["SL",-11.107282638549805],["sho",-11.10738754272461],["▁Ser",-11.10791301727295],["▁Perhaps",-11.108247756958008],["▁codes",-11.108342170715332],["▁Wind",-11.10849666595459],["aient",-11.108757019042969],["▁Prin",-11.108802795410156],["▁(1)",-11.109090805053713],["▁figures",-11.109450340270996],["▁ausge",-11.10972785949707],["▁episode",-11.110050201416016],["▁Spa",-11.110370635986328],["▁Silver",-11.110386848449709],["▁Sky",-11.110396385192873],["▁capabilities",-11.1107177734375],["▁Uni",-11.11073112487793],["▁încă",-11.110876083374023],["TO",-11.111289978027344],["▁Hal",-11.111358642578123],["ghi",-11.111414909362791],["▁sofa",-11.111438751220703],["hard",-11.11150074005127],["▁FOR",-11.111587524414062],["▁Ber",-11.111820220947266],["▁firms",-11.11187744140625],["▁memories",-11.111883163452148],["▁lift",-11.11214542388916],["▁sending",-11.11214542388916],["▁narrow",-11.112646102905272],["▁Steve",-11.112784385681152],["▁integration",-11.112905502319336],["known",-11.113122940063477],["▁nostru",-11.113237380981444],["iţi",-11.113422393798828],["▁Georgia",-11.113759994506836],["▁slowly",-11.114026069641112],["iere",-11.114028930664062],["aka",-11.114255905151367],["PE",-11.114320755004885],["▁venue",-11.11468505859375],["jar",-11.11474609375],["buch",-11.114755630493164],["rad",-11.114858627319336],["▁resistance",-11.11489963531494],["▁stehen",-11.114914894104004],["chin",-11.11504077911377],["▁weak",-11.11535358428955],["▁DVD",-11.115598678588867],["▁bodies",-11.115856170654297],["▁split",-11.115884780883787],["What",-11.11623191833496],["setzen",-11.116467475891112],["▁loves",-11.116561889648438],["▁kleine",-11.117077827453612],["▁increasingly",-11.11746883392334],["▁alert",-11.117583274841309],["▁AC",-11.117647171020508],["▁partir",-11.117974281311035],["▁ratio",-11.11807918548584],["▁keeps",-11.118539810180664],["▁Area",-11.118544578552246],["▁données",-11.11907196044922],["▁flag",-11.119254112243652],["▁NO",-11.119277000427246],["▁hotels",-11.119336128234863],["▁debut",-11.119365692138672],["▁suffer",-11.11936855316162],["▁hidden",-11.119810104370115],["▁clothing",-11.120074272155762],["▁household",-11.120235443115234],["medi",-11.120268821716309],["▁reste",-11.120274543762209],["bro",-11.120381355285645],["▁Bus",-11.120405197143556],["▁Ken",-11.120572090148926],["IR",-11.120758056640623],["▁suffering",-11.121212005615234],["▁publication",-11.121246337890623],["▁Mat",-11.121360778808594],["▁impression",-11.121509552001951],["▁founded",-11.121562957763672],["▁stable",-11.121566772460938],["▁promise",-11.121719360351562],["▁Cloud",-11.121770858764648],["▁prison",-11.122099876403809],["cor",-11.122355461120604],["▁Sports",-11.122716903686523],["▁erste",-11.122745513916016],["shire",-11.122757911682127],["▁recommendations",-11.122916221618652],["▁permit",-11.12310028076172],["▁tomorrow",-11.123126983642578],["▁lucky",-11.123422622680664],["▁realized",-11.123449325561523],["▁famille",-11.123473167419434],["▁Zealand",-11.123542785644531],["▁wooden",-11.123601913452148],["▁east",-11.124269485473633],["▁Bereich",-11.12458324432373],["während",-11.124653816223145],["rite",-11.124836921691896],["▁fla",-11.124902725219728],["platz",-11.124991416931152],["▁zero",-11.125292778015137],["▁priority",-11.12535572052002],["▁Airport",-11.125506401062012],["▁Kauf",-11.125590324401855],["▁ultimate",-11.12601375579834],["▁chest",-11.126175880432127],["▁tone",-11.126376152038574],["▁Kal",-11.126431465148926],["▁supposed",-11.12669849395752],["▁vedere",-11.126846313476562],["▁50%",-11.126872062683104],["▁Ger",-11.127785682678224],["pack",-11.127849578857422],["▁priv",-11.128241539001465],["▁Kit",-11.128263473510742],["▁tent",-11.128457069396973],["▁guidelines",-11.128461837768556],["▁Republic",-11.128824234008787],["including",-11.129239082336426],["▁chief",-11.129615783691406],["▁Living",-11.129766464233398],["keit",-11.1298189163208],["▁convert",-11.129831314086914],["tail",-11.129928588867188],["orient",-11.129960060119627],["eigenen",-11.130245208740234],["▁soup",-11.130587577819824],["▁zona",-11.130661010742188],["▁composition",-11.130690574645996],["▁Bob",-11.130831718444824],["▁exception",-11.131170272827148],["▁cr",-11.131287574768066],["▁str",-11.131482124328612],["▁Fl",-11.13178825378418],["AT",-11.131909370422363],["kel",-11.132002830505373],["▁pricing",-11.132189750671388],["▁Mass",-11.132258415222168],["vir",-11.132333755493164],["leg",-11.132448196411133],["▁rating",-11.132455825805664],["▁Sale",-11.132628440856934],["▁somewhere",-11.132866859436035],["▁submitted",-11.133084297180176],["▁Pop",-11.133296012878418],["▁papers",-11.13330364227295],["▁authorities",-11.133326530456545],["▁Person",-11.133381843566896],["▁kill",-11.133512496948242],["▁suggestions",-11.133548736572266],["-6",-11.133644104003906],["▁dust",-11.133750915527344],["taire",-11.13380527496338],["▁recognition",-11.133870124816896],["3.",-11.134047508239746],["▁Mont",-11.134230613708496],["▁produit",-11.13430118560791],["▁transmission",-11.134340286254885],["▁Th",-11.13475513458252],["▁passing",-11.134928703308104],["▁Partner",-11.135161399841309],["▁dire",-11.135205268859863],["▁DC",-11.135432243347168],["▁sky",-11.135659217834473],["▁Kitchen",-11.135890007019045],["▁fluid",-11.135929107666016],["▁scored",-11.136005401611328],["▁chapter",-11.136100769042969],["If",-11.136231422424316],["letzten",-11.136275291442873],["▁officers",-11.13641357421875],["▁avem",-11.136631965637209],["ister",-11.136666297912598],["▁involves",-11.136688232421877],["ico",-11.136898040771484],["bur",-11.137056350708008],["▁mieux",-11.137064933776855],["▁Photo",-11.1371431350708],["▁Cro",-11.13722801208496],["▁professor",-11.137245178222656],["▁besonders",-11.137313842773438],["д",-11.137367248535156],["▁alongside",-11.13738250732422],["▁stored",-11.13770580291748],["▁activ",-11.137849807739258],["▁setup",-11.138169288635254],["▁extract",-11.138627052307127],["▁accent",-11.138633728027344],["▁replaced",-11.138638496398926],["tec",-11.138800621032717],["▁Natur",-11.138848304748535],["▁Pacific",-11.138887405395508],["▁NY",-11.139485359191896],["▁Capital",-11.139583587646484],["▁forest",-11.13969898223877],["incredibly",-11.14006233215332],["▁choix",-11.14021110534668],["▁seriously",-11.140281677246094],["▁konnte",-11.14030933380127],["▁2014.",-11.140443801879885],["ensuring",-11.14053440093994],["▁handling",-11.140661239624023],["▁9.",-11.14071559906006],["▁relations",-11.140876770019531],["▁Kom",-11.141045570373535],["▁Hol",-11.141282081604004],["▁none",-11.141515731811523],["rob",-11.141718864440918],["▁Forum",-11.141759872436523],["hour",-11.141776084899902],["ème",-11.141809463500977],["▁Space",-11.141986846923828],["▁Ham",-11.142992973327637],["rap",-11.143169403076172],["▁Michigan",-11.14317512512207],["km",-11.143202781677246],["▁utilize",-11.143548965454102],["lov",-11.143775939941406],["▁luck",-11.14438819885254],["lä",-11.144824981689451],["▁healing",-11.145010948181152],["▁neu",-11.145182609558104],["aging",-11.145251274108888],["▁compliance",-11.145583152770996],["▁vertical",-11.145675659179688],["▁FREE",-11.145729064941406],["▁differences",-11.146014213562012],["▁Server",-11.146252632141112],["▁estimated",-11.14637851715088],["schutz",-11.146692276000977],["▁notamment",-11.146736145019531],["▁120",-11.14691925048828],["72",-11.147282600402832],["▁heating",-11.147347450256348],["late",-11.14756965637207],["▁younger",-11.14783000946045],["▁Intel",-11.148171424865724],["▁salad",-11.148362159729004],["▁commonly",-11.148563385009766],["▁treatments",-11.148682594299316],["▁speaker",-11.148770332336426],["▁producing",-11.149120330810549],["▁eggs",-11.149367332458496],["▁Spirit",-11.149892807006836],["▁beide",-11.14991855621338],["▁transaction",-11.150283813476562],["▁Machine",-11.150464057922363],["▁Games",-11.150527000427246],["▁niveau",-11.150687217712402],["▁Need",-11.15082836151123],["radi",-11.150959968566896],["mir",-11.15096664428711],["causing",-11.151000022888184],["▁début",-11.151042938232422],["▁rencontre",-11.151063919067385],["▁threat",-11.151153564453123],["▁enjoying",-11.151320457458496],["Com",-11.151386260986328],["▁Johnson",-11.151555061340332],["▁tournament",-11.15156364440918],["▁Micro",-11.151582717895508],["▁Drive",-11.151667594909668],["▁Cre",-11.151866912841797],["▁Lebens",-11.151930809020996],["▁categories",-11.152358055114746],["5,000",-11.15261173248291],["▁confirmed",-11.152617454528809],["pli",-11.15276336669922],["▁Francisco",-11.153139114379885],["▁raw",-11.153157234191896],["▁managers",-11.153223991394045],["ţie",-11.153365135192873],["UR",-11.153368949890137],["▁aproape",-11.154065132141112],["via",-11.154606819152832],["▁engaged",-11.15464687347412],["▁parti",-11.154741287231444],["▁posting",-11.15517807006836],["CO",-11.155484199523926],["▁bois",-11.15581512451172],["▁inch",-11.15590763092041],["vie",-11.156068801879885],["▁aside",-11.156314849853516],["▁exceptional",-11.15658950805664],["▁vintage",-11.156668663024902],["▁Him",-11.156795501708984],["▁expansion",-11.15680694580078],["▁Weg",-11.157122611999512],["▁authors",-11.157535552978516],["▁deine",-11.15764045715332],["▁Prime",-11.158016204833984],["▁scan",-11.158055305480955],["▁reg",-11.15811252593994],["ția",-11.158141136169434],["riv",-11.158258438110352],["selon",-11.158440589904783],["▁Studio",-11.158571243286133],["▁dich",-11.158658027648926],["▁vi",-11.158745765686035],["▁sequence",-11.159016609191896],["▁Four",-11.159046173095703],["RT",-11.159050941467283],["▁ihn",-11.159072875976562],["▁employ",-11.159223556518556],["umb",-11.159659385681152],["ită",-11.159818649291992],["▁Station",-11.159950256347656],["▁upload",-11.159972190856934],["▁upgrade",-11.160445213317873],["▁exterior",-11.160528182983398],["▁writers",-11.160531997680664],["▁plot",-11.16054344177246],["▁Gen",-11.16068172454834],["TER",-11.160821914672852],["-12",-11.160930633544922],["http",-11.162168502807615],["▁smell",-11.1621732711792],["post",-11.162522315979004],["von",-11.162790298461914],["mili",-11.16280746459961],["8%",-11.162972450256348],["▁Andrew",-11.163065910339355],["▁spun",-11.16321086883545],["▁grass",-11.163444519042969],["unter",-11.163474082946776],["▁burn",-11.16356086730957],["▁Gegen",-11.163601875305176],["fest",-11.163721084594728],["▁Northern",-11.163738250732422],["▁consumption",-11.163775444030762],["▁bird",-11.164069175720217],["▁Miss",-11.164369583129885],["anti",-11.16447925567627],["▁viata",-11.164583206176758],["bereich",-11.164602279663086],["▁Change",-11.164871215820312],["▁pouvoir",-11.165255546569824],["▁demonstrate",-11.165435791015623],["▁requirement",-11.165483474731444],["BI",-11.16577434539795],["ied",-11.166099548339844],["▁spray",-11.166358947753906],["▁calitate",-11.166379928588867],["▁souvent",-11.1665620803833],["▁samples",-11.166682243347168],["▁compete",-11.166930198669434],["ank",-11.166946411132812],["année",-11.167037963867188],["wick",-11.167183876037598],["iff",-11.167254447937012],["noi",-11.167255401611328],["ography",-11.167450904846191],["▁SE",-11.167508125305176],["▁250",-11.16779899597168],["▁wealth",-11.167884826660156],["4%",-11.168235778808594],["▁swimming",-11.168269157409668],["enne",-11.168338775634766],["Qu",-11.168400764465332],["▁connections",-11.168476104736328],["onne",-11.16852855682373],["▁Way",-11.168676376342772],["voll",-11.168793678283691],["▁extent",-11.169041633605955],["▁objective",-11.169572830200195],["▁clinic",-11.169581413269045],["NA",-11.169848442077637],["▁Hope",-11.170098304748535],["▁coat",-11.170331954956056],["▁depend",-11.17039394378662],["▁tine",-11.17046356201172],["acc",-11.170486450195312],["▁editor",-11.170598983764648],["▁Jim",-11.170690536499023],["600",-11.171262741088867],["▁module",-11.171302795410156],["▁deja",-11.17182159423828],["atur",-11.171841621398926],["▁maintaining",-11.171918869018556],["▁hoch",-11.172059059143066],["▁covering",-11.17239761352539],["vielen",-11.172450065612791],["hem",-11.172531127929688],["▁illegal",-11.172656059265137],["▁certificate",-11.17329216003418],["▁collective",-11.173357963562012],["▁blow",-11.17343807220459],["▁programming",-11.17343807220459],["HE",-11.173727989196776],["▁Division",-11.173842430114746],["▁ceux",-11.174081802368164],["▁saved",-11.174202919006348],["▁worst",-11.17426586151123],["▁arms",-11.17430305480957],["▁Officer",-11.17463493347168],["▁association",-11.174838066101074],["ington",-11.1749906539917],["▁belle",-11.175024032592772],["tting",-11.17537784576416],["▁attacks",-11.17544651031494],["▁vei",-11.17546558380127],["▁gerade",-11.175470352172852],["▁strain",-11.175748825073242],["▁offices",-11.1759672164917],["EM",-11.17627239227295],["EST",-11.176509857177734],["-8",-11.176758766174316],["▁faculty",-11.176998138427734],["▁Plant",-11.177046775817873],["pla",-11.177295684814451],["card",-11.177618980407717],["▁loose",-11.177982330322266],["▁PR",-11.178044319152832],["profit",-11.178071022033691],["▁channels",-11.178119659423828],["ATE",-11.178257942199709],["atic",-11.178304672241213],["wegen",-11.178404808044434],["word",-11.178621292114258],["▁sehen",-11.178659439086914],["▁nombre",-11.178744316101074],["▁DO",-11.178763389587402],["▁hoping",-11.178949356079102],["▁wollen",-11.179091453552246],["▁decat",-11.179244995117188],["IF",-11.179386138916016],["▁permission",-11.179396629333496],["▁Williams",-11.179936408996582],["▁beer",-11.179962158203123],["▁dernière",-11.180052757263184],["▁purchasing",-11.18025016784668],["▁pride",-11.180416107177734],["solv",-11.180598258972168],["ego",-11.180691719055176],["▁Oil",-11.18079662322998],["▁dishes",-11.18102741241455],["▁Baby",-11.181109428405762],["▁Roll",-11.181137084960938],["vez",-11.18134593963623],["▁drept",-11.181367874145508],["lly",-11.18148136138916],["▁potrivit",-11.181495666503906],["person",-11.181961059570312],["▁interactive",-11.182269096374512],["▁brilliant",-11.18230438232422],["▁000",-11.182357788085938],["▁giant",-11.182657241821287],["▁plain",-11.182945251464844],["▁lock",-11.183197975158691],["▁inspection",-11.183762550354004],["▁symbol",-11.18392276763916],["▁Gal",-11.183953285217283],["▁concepts",-11.1840181350708],["▁venture",-11.18411922454834],["▁Tr",-11.184402465820312],["▁Color",-11.18446922302246],["▁behalf",-11.184635162353516],["ink",-11.184715270996094],["atii",-11.1848726272583],["wie",-11.184907913208008],["▁stream",-11.18514347076416],["▁buyers",-11.185192108154297],["legen",-11.185526847839355],["iness",-11.18578815460205],["▁absolute",-11.185945510864258],["▁council",-11.186067581176758],["▁displayed",-11.186172485351562],["▁Bun",-11.186405181884766],["▁darauf",-11.186585426330566],["▁rod",-11.186829566955566],["▁repeat",-11.186898231506348],["quelle",-11.187023162841797],["lation",-11.187433242797852],["gul",-11.18774700164795],["▁compensation",-11.188064575195312],["▁string",-11.1881685256958],["▁joining",-11.188251495361328],["▁Pra",-11.188429832458496],["hab",-11.188936233520508],["▁plane",-11.189024925231934],["▁conversion",-11.189078330993652],["▁lesson",-11.189361572265623],["bound",-11.1893949508667],["▁seats",-11.18946361541748],["voc",-11.189902305603027],["▁Disney",-11.190120697021484],["esse",-11.190277099609377],["▁awards",-11.190279006958008],["▁initiative",-11.19048309326172],["UM",-11.19050407409668],["▁intelligence",-11.190763473510742],["▁laser",-11.191128730773926],["än",-11.191228866577148],["▁generated",-11.191231727600098],["▁allen",-11.19186782836914],["▁Aug",-11.19261360168457],["lini",-11.192968368530272],["▁Update",-11.193015098571776],["▁grab",-11.193095207214355],["▁Bridge",-11.193219184875488],["rock",-11.193289756774902],["hold",-11.193461418151855],["seinen",-11.193643569946287],["▁false",-11.193758010864258],["type",-11.193792343139648],["▁outcome",-11.193906784057615],["▁crazy",-11.194161415100098],["▁Platz",-11.194281578063965],["▁believed",-11.19442653656006],["▁adjust",-11.194503784179688],["▁entrance",-11.194644927978516],["▁Colorado",-11.194751739501951],["▁concentration",-11.194865226745604],["aid",-11.194958686828612],["▁regardless",-11.195035934448242],["▁mici",-11.195063591003418],["▁potentially",-11.195109367370604],["▁Custom",-11.195867538452148],["rag",-11.196009635925291],["▁employer",-11.19604206085205],["tagged",-11.196158409118652],["▁34",-11.196271896362305],["fro",-11.196895599365234],["▁Pas",-11.197010040283203],["▁AS",-11.197013854980469],["PP",-11.197031021118164],["stru",-11.19741439819336],["grâce",-11.198037147521973],["▁anyway",-11.198240280151367],["▁streets",-11.1986083984375],["▁Region",-11.199190139770508],["▁newly",-11.199280738830566],["▁assistant",-11.199461936950684],["▁requests",-11.199618339538574],["▁Ohio",-11.199705123901367],["▁continuing",-11.200072288513184],["▁îm",-11.200136184692385],["7%",-11.20031452178955],["▁basically",-11.200325965881348],["gabe",-11.200334548950195],["▁ultra",-11.200355529785156],["pic",-11.200571060180664],["▁jeder",-11.200939178466797],["▁Cook",-11.20122528076172],["▁tie",-11.201227188110352],["▁yard",-11.20151424407959],["▁wash",-11.20152759552002],["▁3,",-11.20194149017334],["▁exista",-11.202128410339355],["▁egg",-11.202342987060549],["▁marché",-11.202616691589355],["kommen",-11.202630996704102],["▁Select",-11.202999114990234],["geben",-11.203126907348633],["▁Joseph",-11.203531265258787],["▁Ces",-11.203642845153809],["▁hundred",-11.203676223754885],["even",-11.203792572021484],["gal",-11.204232215881348],["800",-11.20443058013916],["▁Jones",-11.204599380493164],["ova",-11.204681396484377],["▁careful",-11.204727172851562],["▁alarm",-11.205070495605469],["NI",-11.205113410949709],["▁residence",-11.205327987670898],["▁wäre",-11.20590877532959],["▁Dor",-11.205986976623535],["▁amounts",-11.206369400024414],["▁mistake",-11.206687927246094],["ates",-11.206796646118164],["▁bune",-11.206951141357422],["▁vegetables",-11.207124710083008],["▁Ann",-11.207204818725586],["logical",-11.20776081085205],["stadt",-11.207806587219238],["▁chances",-11.207921981811523],["%)",-11.208030700683594],["▁minimal",-11.20810604095459],["▁naturally",-11.20817756652832],["▁Geld",-11.20822525024414],["▁Yu",-11.208361625671388],["▁wrap",-11.20840072631836],["rest",-11.208674430847168],["▁legs",-11.208758354187012],["PM",-11.208806991577148],["▁Heart",-11.208888053894045],["▁suspect",-11.209020614624023],["Go",-11.209098815917969],["▁Fil",-11.20917510986328],["▁YOU",-11.20917510986328],["▁victory",-11.209245681762695],["pun",-11.20960807800293],["▁Zo",-11.209632873535156],["CT",-11.209640502929688],["▁trim",-11.20969009399414],["▁stuck",-11.209836959838867],["ators",-11.209877014160156],["▁Ideas",-11.210016250610352],["▁voyage",-11.210166931152344],["▁Restaurant",-11.210205078125],["▁pat",-11.210234642028809],["▁bond",-11.210521697998049],["▁Del",-11.210552215576172],["▁fighting",-11.210705757141112],["▁concerning",-11.210867881774902],["▁etwa",-11.211141586303713],["▁Thema",-11.211237907409668],["▁preferred",-11.211423873901367],["▁pitch",-11.211465835571287],["▁Singapore",-11.211971282958984],["▁tub",-11.212018013000488],["FT",-11.212053298950195],["▁Product",-11.21212100982666],["▁applying",-11.212285995483398],["▁Fr",-11.212340354919434],["ţa",-11.212599754333496],["▁iPad",-11.212861061096191],["PD",-11.2129545211792],["▁comun",-11.212995529174805],["▁pie",-11.213286399841309],["rank",-11.21364688873291],["tron",-11.213677406311035],["▁pest",-11.213906288146973],["▁herself",-11.213936805725098],["▁intense",-11.213964462280272],["foot",-11.21413803100586],["▁1998",-11.2141695022583],["▁anxiety",-11.214616775512695],["▁portable",-11.214674949645996],["▁harm",-11.214735984802246],["▁admit",-11.214885711669922],["sted",-11.214900016784668],["▁regions",-11.215450286865234],["cie",-11.215556144714355],["▁robust",-11.21577262878418],["▁stem",-11.215982437133787],["▁roles",-11.216024398803713],["▁Latin",-11.216224670410156],["▁Ré",-11.216378211975098],["▁ref",-11.216381072998049],["isme",-11.216426849365234],["▁contribution",-11.216776847839355],["▁forever",-11.217447280883787],["▁frei",-11.21754264831543],["▁mont",-11.217818260192873],["that",-11.217999458312988],["▁sensitive",-11.218116760253906],["▁wider",-11.218175888061523],["AF",-11.218234062194824],["▁liability",-11.218748092651367],["ţiei",-11.219043731689451],["▁Cho",-11.219260215759276],["aria",-11.21960735321045],["rang",-11.21977710723877],["▁Account",-11.21986198425293],["▁III",-11.219941139221191],["▁tooth",-11.220222473144531],["▁factory",-11.220240592956545],["▁dropped",-11.220495223999023],["horn",-11.220780372619627],["RP",-11.221110343933104],["▁container",-11.22118091583252],["fran",-11.221474647521973],["▁lawyer",-11.221842765808104],["▁Image",-11.22190761566162],["HO",-11.22195816040039],["▁incorporate",-11.22199249267578],["▁lume",-11.22226333618164],["GA",-11.222331047058104],["itati",-11.222370147705078],["autre",-11.222665786743164],["ierten",-11.222688674926758],["[",-11.22274684906006],["▁packages",-11.222758293151855],["▁Simon",-11.22290325164795],["▁somewhat",-11.223734855651855],["mbo",-11.223737716674805],["lite",-11.223844528198242],["▁eliminate",-11.22395133972168],["▁decrease",-11.224117279052734],["▁geben",-11.224214553833008],["▁approaches",-11.224482536315918],["▁tissue",-11.224940299987791],["▁personne",-11.225192070007324],["ional",-11.225587844848633],["unable",-11.2256498336792],["▁Case",-11.225736618041992],["hill",-11.225744247436523],["och",-11.225862503051758],["▁minister",-11.22592067718506],["▁Rad",-11.226285934448242],["▁yoga",-11.226390838623049],["▁encounter",-11.22661018371582],["text",-11.22670841217041],["▁OS",-11.226719856262209],["▁opera",-11.22673225402832],["▁loving",-11.226977348327637],["▁birds",-11.22736358642578],["▁prim",-11.227389335632324],["easca",-11.227432250976562],["park",-11.227453231811523],["fü",-11.227797508239746],["▁champion",-11.227824211120604],["▁warning",-11.228245735168455],["DC",-11.228271484375],["▁yield",-11.228310585021973],["raum",-11.228334426879885],["▁Student",-11.228434562683104],["▁Rev",-11.22848892211914],["▁Fu",-11.228501319885254],["▁intra",-11.22854232788086],["▁proces",-11.228585243225098],["▁margin",-11.22862148284912],["lands",-11.228816986083984],["04",-11.228952407836914],["▁Steel",-11.229897499084473],["▁besoin",-11.23008155822754],["şti",-11.230561256408691],["▁39",-11.230635643005373],["▁outcomes",-11.230677604675291],["wert",-11.230719566345217],["3,",-11.23080062866211],["▁hole",-11.23088836669922],["▁Create",-11.23096752166748],["▁hall",-11.231266975402832],["nach",-11.231595039367676],["▁indicate",-11.232311248779297],["cum",-11.232604026794434],["▁Mann",-11.232690811157228],["▁reaction",-11.232828140258787],["▁empty",-11.23289680480957],["▁Sign",-11.23294162750244],["▁pm",-11.23300838470459],["erung",-11.23322582244873],["▁würde",-11.233592987060549],["▁declarat",-11.233602523803713],["6%",-11.23371410369873],["▁Client",-11.23377513885498],["vil",-11.234295845031738],["▁electricity",-11.234469413757324],["▁75",-11.234505653381348],["▁buna",-11.234505653381348],["eşte",-11.23473834991455],["▁prop",-11.234792709350586],["▁journal",-11.234883308410645],["▁meu",-11.23495101928711],["▁chef",-11.235034942626951],["▁Ever",-11.235102653503418],["▁feelings",-11.235466003417969],["PT",-11.23551082611084],["▁proposal",-11.235651969909668],["▁Its",-11.235709190368652],["▁2013.",-11.235795974731444],["▁Bundes",-11.23595142364502],["▁droit",-11.236333847045898],["▁10%",-11.236671447753906],["gard",-11.236772537231444],["information",-11.236814498901367],["FE",-11.237309455871582],["▁Dun",-11.237340927124023],["▁Stock",-11.237472534179688],["ație",-11.2374849319458],["▁mag",-11.237603187561035],["▁br",-11.237665176391602],["▁sight",-11.237772941589355],["phone",-11.237796783447266],["▁Cy",-11.237811088562012],["▁opposite",-11.238035202026367],["ically",-11.238235473632812],["großen",-11.238388061523438],["▁Without",-11.23845100402832],["espace",-11.238515853881836],["▁chairs",-11.238595008850098],["▁matches",-11.238685607910156],["ateur",-11.238697052001951],["▁Cost",-11.238699913024902],["▁WordPress",-11.238880157470703],["▁Opera",-11.239195823669434],["walked",-11.239234924316406],["▁transactions",-11.239521026611328],["▁nuclear",-11.239579200744627],["ways",-11.239594459533691],["▁Oct",-11.239738464355469],["▁bomb",-11.239835739135742],["▁tracking",-11.239879608154297],["▁photograph",-11.240066528320312],["bio",-11.240309715270996],["▁branch",-11.240363121032717],["▁$5",-11.240684509277344],["▁diagram",-11.240986824035645],["▁Hard",-11.241218566894531],["bach",-11.241232872009276],["▁42",-11.241249084472656],["logy",-11.241472244262695],["▁tile",-11.24159336090088],["▁API",-11.241833686828612],["seront",-11.24204158782959],["ENT",-11.242156982421877],["▁accommodation",-11.242409706115724],["▁fiber",-11.242438316345217],["▁Give",-11.242792129516602],["▁Gas",-11.242916107177734],["▁Spain",-11.243086814880373],["▁listing",-11.24312686920166],["▁blocks",-11.24349308013916],["▁constitu",-11.243762969970703],["▁convenience",-11.243797302246094],["▁prize",-11.243823051452637],["▁aircraft",-11.24404239654541],["containing",-11.24412441253662],["▁vice",-11.244247436523438],["▁organisations",-11.244304656982422],["▁complicated",-11.244588851928713],["rons",-11.244647979736328],["▁bars",-11.244670867919922],["était",-11.244705200195312],["▁checking",-11.245287895202637],["vant",-11.245542526245115],["▁couch",-11.245657920837402],["▁brush",-11.24587059020996],["▁printer",-11.245922088623049],["▁Rat",-11.246051788330078],["▁announce",-11.246057510375977],["▁salari",-11.246200561523438],["▁Sk",-11.246356964111328],["pal",-11.246383666992188],["▁yards",-11.24658203125],["▁flexibility",-11.246652603149414],["▁jamais",-11.24670696258545],["UC",-11.246740341186523],["▁4,",-11.246793746948242],["▁Made",-11.247078895568848],["▁solche",-11.247113227844238],["▁tri",-11.247237205505373],["▁outfit",-11.247243881225586],["м",-11.247267723083496],["▁encouraged",-11.247477531433104],["trac",-11.247552871704102],["▁genetic",-11.24755859375],["▁beneficial",-11.247747421264648],["mă",-11.247849464416504],["involving",-11.247879028320312],["▁knee",-11.247879028320312],["▁respective",-11.248316764831545],["▁controlled",-11.248350143432615],["▁Rück",-11.24837589263916],["LC",-11.248592376708984],["▁highlight",-11.248634338378906],["chem",-11.248797416687012],["▁Bis",-11.24956226348877],["▁graphics",-11.249592781066896],["▁posibil",-11.249672889709473],["orul",-11.249682426452637],["imagin",-11.249836921691896],["▁draft",-11.250006675720217],["shaped",-11.250219345092772],["▁suggests",-11.250221252441406],["uvre",-11.25050926208496],["page",-11.250545501708984],["▁sentiment",-11.250685691833496],["▁loop",-11.251015663146973],["▁Quality",-11.251839637756348],["▁volunteers",-11.251869201660156],["▁representation",-11.251923561096191],["▁examination",-11.252134323120115],["▁(2)",-11.252225875854492],["assi",-11.252435684204102],["▁till",-11.252486228942873],["▁Catholic",-11.252618789672852],["▁2020",-11.252726554870604],["▁random",-11.252764701843262],["tage",-11.253146171569824],["▁baking",-11.253690719604492],["▁Musik",-11.25385284423828],["▁SC",-11.253867149353027],["▁möchte",-11.254390716552734],["▁gene",-11.254411697387695],["▁kam",-11.254928588867188],["▁inspire",-11.254974365234377],["unk",-11.255097389221191],["▁Final",-11.255477905273438],["▁jeden",-11.255497932434082],["▁LLC",-11.255962371826172],["▁sistem",-11.25613784790039],["▁stages",-11.256441116333008],["▁texture",-11.256613731384276],["rib",-11.256739616394045],["lung",-11.25678253173828],["▁breath",-11.256814002990724],["▁hosted",-11.256844520568848],["▁Kingdom",-11.257079124450684],["▁politics",-11.257121086120604],["▁mood",-11.257122993469238],["cam",-11.257285118103027],["▁liked",-11.257287979125977],["▁Credit",-11.257304191589355],["tisch",-11.257527351379396],["▁everywhere",-11.257692337036133],["▁poti",-11.257915496826172],["▁fruits",-11.258264541625977],["oire",-11.258322715759276],["▁mesure",-11.258586883544922],["▁Studies",-11.258838653564451],["▁provision",-11.25888729095459],["▁Maria",-11.25892734527588],["▁necessarily",-11.259103775024414],["▁Net",-11.259212493896484],["▁scar",-11.259307861328123],["▁tracks",-11.259424209594728],["▁ads",-11.25985622406006],["termin",-11.259861946105955],["▁Yo",-11.26022720336914],["atory",-11.260252952575684],["itoare",-11.26025676727295],["▁colours",-11.260563850402832],["▁correctly",-11.260817527770996],["▁Trade",-11.26090145111084],["▁Week",-11.261052131652832],["▁Premier",-11.261499404907228],["▁designers",-11.261600494384766],["▁BE",-11.261879920959473],["▁desktop",-11.261929512023926],["▁lifetime",-11.262046813964844],["▁Kind",-11.26213264465332],["▁divers",-11.262246131896973],["rain",-11.26226043701172],["▁Von",-11.262263298034668],["▁bal",-11.262568473815918],["▁shots",-11.262624740600586],["▁accommodate",-11.262767791748049],["▁Paper",-11.263001441955566],["▁interaction",-11.263191223144531],["▁acquisition",-11.263233184814451],["▁neuro",-11.26378345489502],["▁institution",-11.26391887664795],["▁automatic",-11.26403522491455],["▁assess",-11.264177322387695],["▁manifest",-11.264199256896973],["▁audit",-11.264202117919922],["▁câte",-11.264406204223633],["▁insight",-11.264533996582031],["▁lange",-11.264781951904297],["▁retirement",-11.264795303344728],["sons",-11.264864921569824],["▁Asian",-11.26492691040039],["▁rail",-11.264978408813477],["▁Awards",-11.264982223510742],["Avec",-11.26503562927246],["SO",-11.26511287689209],["para",-11.265304565429688],["▁tant",-11.265562057495115],["▁strike",-11.26569366455078],["▁transformation",-11.265742301940918],["▁leicht",-11.26586627960205],["л",-11.265996932983398],["fat",-11.26629638671875],["▁Qui",-11.266626358032228],["▁chip",-11.26663589477539],["titude",-11.266640663146973],["▁Projekt",-11.266998291015623],["▁statt",-11.267010688781738],["▁findet",-11.267184257507324],["▁telephone",-11.267251968383787],["▁staying",-11.267267227172852],["▁Mess",-11.267353057861328],["▁patio",-11.267382621765137],["▁afla",-11.26789093017578],["▁administrative",-11.267910957336426],["▁gemeinsam",-11.268129348754885],["▁suppliers",-11.268136024475098],["ark",-11.268181800842283],["▁rice",-11.268397331237791],["▁stretch",-11.268439292907717],["▁compact",-11.268651008605955],["fire",-11.268756866455078],["в",-11.268963813781738],["vision",-11.269035339355469],["▁Mag",-11.269368171691896],["▁dreams",-11.269472122192385],["▁funny",-11.26968765258789],["▁lässt",-11.270216941833496],["cade",-11.270448684692385],["▁drama",-11.270484924316406],["▁schimb",-11.270767211914062],["PO",-11.270785331726074],["▁Sim",-11.270806312561035],["▁motivation",-11.271045684814451],["▁presents",-11.27138614654541],["▁1997",-11.271828651428224],["agi",-11.271883010864258],["▁optimal",-11.27198314666748],["▁folder",-11.271995544433594],["stro",-11.272034645080566],["▁Han",-11.272072792053224],["▁Ei",-11.27220344543457],["▁pus",-11.272356986999512],["▁Learning",-11.272531509399414],["oop",-11.272603034973145],["▁Type",-11.272658348083496],["space",-11.272665023803713],["▁define",-11.273098945617676],["▁plug",-11.273098945617676],["yard",-11.273188591003418],["▁utility",-11.273297309875488],["über",-11.273561477661133],["▁commun",-11.273627281188965],["▁directed",-11.273842811584473],["▁consent",-11.273893356323242],["▁DNA",-11.27406883239746],["▁statements",-11.274130821228027],["real",-11.274298667907717],["active",-11.27443027496338],["school",-11.274965286254885],["▁mic",-11.275360107421877],["▁acestui",-11.275467872619627],["scale",-11.27550220489502],["▁Mid",-11.275628089904783],["▁Chair",-11.275874137878418],["к",-11.275936126708984],["▁Bas",-11.27630615234375],["▁38",-11.276379585266112],["erin",-11.276461601257324],["▁Everyone",-11.27686882019043],["COM",-11.276907920837402],["▁chronic",-11.277079582214355],["▁doctors",-11.277222633361816],["▁sh",-11.277276039123535],["sport",-11.27740478515625],["▁volunteer",-11.277512550354004],["▁drinking",-11.277839660644531],["▁Mas",-11.277868270874023],["▁pursue",-11.2780122756958],["▁exposed",-11.278536796569824],["exe",-11.278660774230955],["hung",-11.278841972351074],["▁Tier",-11.278921127319336],["▁plac",-11.27912139892578],["▁proiect",-11.279136657714844],["▁literally",-11.279288291931152],["▁acolo",-11.279412269592283],["▁User",-11.279485702514648],["UT",-11.279598236083984],["▁hyper",-11.279623985290527],["▁seed",-11.279794692993164],["▁literature",-11.2802734375],["▁Holy",-11.280373573303224],["▁jeu",-11.280396461486816],["▁licensed",-11.280896186828612],["station",-11.280900955200195],["▁criteria",-11.281292915344238],["▁sufficient",-11.281292915344238],["▁gestion",-11.281512260437012],["▁pic",-11.281549453735352],["▁64",-11.28170108795166],["▁facts",-11.281905174255373],["▁Bild",-11.282098770141602],["obi",-11.28212833404541],["▁nie",-11.282362937927246],["▁Jewish",-11.282756805419922],["bor",-11.28281307220459],["▁1980",-11.28286361694336],["▁Fach",-11.282917976379396],["craft",-11.283047676086426],["▁Pakistan",-11.283408164978027],["▁Mos",-11.283621788024902],["▁toilet",-11.28384494781494],["partea",-11.28391170501709],["case",-11.284221649169922],["▁clock",-11.28430461883545],["▁parc",-11.284602165222168],["▁legislation",-11.284692764282228],["▁icon",-11.28493309020996],["etz",-11.285178184509276],["ept",-11.285270690917969],["▁Corporation",-11.28585433959961],["▁requested",-11.285983085632324],["▁column",-11.286088943481444],["rier",-11.286120414733888],["uß",-11.2861967086792],["▁wohl",-11.286418914794922],["tell",-11.286569595336914],["gno",-11.286608695983888],["▁diseases",-11.28672695159912],["Sch",-11.286762237548828],["▁colon",-11.287075996398926],["▁Based",-11.28709602355957],["▁flu",-11.28725528717041],["▁vocal",-11.287408828735352],["▁virus",-11.287693977355955],["▁traveling",-11.287750244140623],["bul",-11.287837982177734],["т",-11.28794002532959],["city",-11.287961959838867],["AU",-11.287991523742676],["wide",-11.288037300109863],["▁solo",-11.288061141967772],["▁functionality",-11.288214683532717],["▁reveal",-11.28831672668457],["sign",-11.288952827453612],["▁closing",-11.28897190093994],["▁peak",-11.289087295532228],["▁practic",-11.289398193359377],["than",-11.289473533630373],["▁driven",-11.289484977722168],["êtes",-11.289548873901367],["high",-11.290016174316406],["power",-11.290226936340332],["▁Lin",-11.29028606414795],["▁dose",-11.29034423828125],["▁pocket",-11.290650367736816],["▁Classic",-11.29067611694336],["▁packaging",-11.29079246520996],["▁distinct",-11.290800094604492],["▁côté",-11.291094779968262],["▁breast",-11.29127025604248],["▁folosit",-11.29133129119873],["▁drinks",-11.291353225708008],["▁Dog",-11.291529655456545],["ailleurs",-11.291658401489258],["▁caz",-11.291804313659668],["▁escape",-11.29188346862793],["▁warranty",-11.291902542114258],["▁pulled",-11.291996955871582],["data",-11.292088508605955],["▁facilitate",-11.292213439941406],["É",-11.292335510253906],["▁SP",-11.292403221130373],["lant",-11.292557716369627],["AD",-11.29256534576416],["▁Print",-11.292802810668944],["mond",-11.292863845825195],["▁strange",-11.292875289916992],["▁Hor",-11.293227195739746],["▁Collection",-11.293328285217283],["arm",-11.29346752166748],["cas",-11.293691635131836],["arrow",-11.29379940032959],["▁carrying",-11.293927192687988],["▁wave",-11.29466152191162],["setzt",-11.294907569885254],["▁construct",-11.29514217376709],["▁acts",-11.295269966125488],["▁Action",-11.295342445373535],["▁Kim",-11.295354843139648],["oxid",-11.295459747314451],["fish",-11.295519828796388],["▁damaged",-11.295660018920898],["▁Greek",-11.295747756958008],["▁belt",-11.295772552490234],["▁Prior",-11.295778274536133],["▁marks",-11.295936584472656],["▁lumea",-11.296183586120604],["▁twenty",-11.296196937561035],["▁locul",-11.296360969543455],["▁Army",-11.296524047851562],["apt",-11.296602249145508],["▁limits",-11.296733856201172],["▁cruise",-11.296966552734377],["▁List",-11.296998023986816],["utilisation",-11.29753589630127],["▁personality",-11.297622680664062],["▁sections",-11.297759056091309],["▁drawn",-11.29797649383545],["▁mold",-11.298277854919434],["▁Think",-11.298333168029783],["▁holidays",-11.298355102539062],["▁critic",-11.298545837402344],["grade",-11.298660278320312],["▁sick",-11.299074172973633],["▁characteristics",-11.299237251281738],["▁echipa",-11.299272537231444],["▁Fast",-11.29929256439209],["▁Br",-11.299600601196287],["▁Reise",-11.299734115600586],["teen",-11.299749374389648],["uci",-11.299949645996094],["!”",-11.300180435180664],["ppe",-11.300532341003418],["▁talked",-11.301164627075195],["▁gap",-11.301473617553713],["homme",-11.30177879333496],["▁interact",-11.301934242248535],["▁dollar",-11.302276611328123],["▁bone",-11.302309036254885],["▁Einsatz",-11.302343368530272],["▁sad",-11.302434921264648],["any",-11.302445411682127],["tation",-11.302666664123535],["▁Haupt",-11.302748680114746],["iva",-11.302781105041504],["▁Schu",-11.302916526794434],["▁evaluate",-11.3036470413208],["▁variant",-11.303807258605955],["▁IS",-11.303879737854004],["▁PRO",-11.303947448730469],["▁vine",-11.303959846496582],["rut",-11.304062843322754],["▁existence",-11.30443286895752],["-7",-11.304525375366213],["ancy",-11.304702758789062],["▁Want",-11.305023193359377],["alism",-11.305127143859863],["ranging",-11.30550765991211],["preis",-11.305551528930664],["All",-11.305620193481444],["▁reception",-11.30565071105957],["mai",-11.305730819702148],["▁lease",-11.30577278137207],["▁finest",-11.30578899383545],["▁evident",-11.305874824523926],["▁Easy",-11.306075096130373],["▁gilt",-11.306085586547852],["▁trips",-11.306344985961914],["▁skilled",-11.306368827819824],["consists",-11.306456565856934],["front",-11.306635856628418],["rati",-11.306652069091797],["▁Following",-11.30678653717041],["▁Medicine",-11.307161331176758],["▁pune",-11.30729866027832],["▁errors",-11.307354927062988],["arian",-11.307613372802734],["lib",-11.30811882019043],["SR",-11.308351516723633],["ML",-11.308568000793455],["▁Safety",-11.308823585510254],["▁clar",-11.309355735778809],["New",-11.309764862060549],["▁37",-11.309773445129396],["▁Administration",-11.309823036193848],["▁2.0",-11.310120582580566],["▁obviously",-11.31019687652588],["▁Mitarbeiter",-11.310254096984863],["▁improvements",-11.31043529510498],["▁Cut",-11.310630798339844],["▁Natural",-11.310672760009766],["▁arrival",-11.311182975769045],["▁pizza",-11.311339378356934],["eşti",-11.311570167541504],["cept",-11.311654090881348],["▁livre",-11.311686515808104],["▁nombreux",-11.312195777893066],["▁authentic",-11.312231063842772],["▁gemacht",-11.312472343444824],["▁broadcast",-11.312478065490724],["▁stronger",-11.312545776367188],["UP",-11.31257152557373],["▁centers",-11.312614440917969],["▁petite",-11.312617301940918],["▁spots",-11.312626838684082],["▁crystal",-11.312756538391112],["▁salon",-11.313044548034668],["▁gained",-11.313098907470703],["▁Mus",-11.313215255737305],["▁lens",-11.313223838806152],["▁ihm",-11.313231468200684],["minute",-11.313573837280272],["▁greatly",-11.313587188720703],["LP",-11.31361198425293],["rait",-11.314027786254885],["▁bid",-11.314154624938965],["▁cit",-11.314203262329102],["entreprise",-11.31435775756836],["▁55",-11.314533233642578],["▁respectively",-11.314536094665527],["▁lo",-11.314638137817385],["▁cons",-11.314743995666504],["▁Energie",-11.31516933441162],["▁OK",-11.31521224975586],["▁grill",-11.315338134765623],["▁heading",-11.31549072265625],["▁sollten",-11.315491676330566],["▁Fragen",-11.315528869628906],["▁Poli",-11.315556526184082],["▁studying",-11.315723419189451],["▁développement",-11.315882682800291],["▁foam",-11.316035270690918],["▁1996",-11.316511154174805],["▁disaster",-11.31662654876709],["▁cafe",-11.317262649536133],["▁moves",-11.317267417907717],["focuses",-11.317712783813477],["▁Avenue",-11.317834854125977],["▁humans",-11.31784439086914],["▁(3",-11.318021774291992],["▁région",-11.318347930908203],["▁DJ",-11.318608283996582],["shop",-11.318819046020508],["▁acting",-11.318843841552734],["▁Justice",-11.318967819213867],["▁trouve",-11.319010734558104],["▁Estate",-11.319040298461914],["▁strict",-11.319231986999512],["▁talks",-11.319283485412598],["▁mat",-11.319290161132812],["▁completion",-11.319327354431152],["delivering",-11.31943416595459],["CD",-11.31973934173584],["0%",-11.319960594177246],["▁creativity",-11.320253372192385],["BR",-11.320272445678713],["▁occurred",-11.320357322692873],["Car",-11.320590019226074],["▁rising",-11.320761680603027],["gger",-11.32086181640625],["▁Gene",-11.32090187072754],["▁workplace",-11.320914268493652],["phy",-11.32106590270996],["▁Bla",-11.32107162475586],["▁trailer",-11.32120418548584],["▁Forest",-11.321205139160156],["▁profession",-11.321246147155762],["▁Father",-11.32137680053711],["flu",-11.321487426757812],["tone",-11.321489334106444],["▁sexual",-11.321736335754396],["▁Map",-11.321805953979492],["OT",-11.3218412399292],["▁Us",-11.32187843322754],["tôt",-11.321892738342283],["▁Wert",-11.321901321411133],["preparing",-11.322121620178224],["isé",-11.322243690490724],["▁lake",-11.322461128234863],["eed",-11.32270336151123],["jun",-11.322888374328612],["▁implemented",-11.32301425933838],["vid",-11.323116302490234],["igne",-11.323201179504396],["▁follows",-11.323214530944824],["▁Eric",-11.323430061340332],["body",-11.323530197143556],["▁contained",-11.323585510253906],["▁massage",-11.323715209960938],["AV",-11.323725700378418],["▁insa",-11.323850631713867],["▁observed",-11.323892593383787],["▁marque",-11.324137687683104],["lines",-11.324451446533203],["▁Frage",-11.324482917785645],["largely",-11.324647903442385],["gegeben",-11.32473087310791],["▁colleagues",-11.324762344360352],["pha",-11.32494068145752],["▁representative",-11.325217247009276],["▁shut",-11.325650215148926],["▁secondary",-11.325779914855955],["▁exhibit",-11.325927734375],["1)",-11.325932502746582],["mid",-11.326109886169434],["▁Due",-11.326229095458984],["▁initiatives",-11.326457023620604],["▁occurs",-11.326458930969238],["lent",-11.326478958129885],["▁façon",-11.326778411865234],["▁iOS",-11.32680320739746],["▁exploring",-11.327000617980955],["▁stations",-11.327103614807127],["nton",-11.327234268188477],["▁Country",-11.32729721069336],["▁shouldn",-11.327406883239746],["▁casual",-11.327611923217772],["-18",-11.32769775390625],["▁maintained",-11.32772445678711],["▁cart",-11.32779026031494],["▁propre",-11.327836036682127],["▁asset",-11.327948570251465],["firm",-11.32803726196289],["gla",-11.328231811523438],["viv",-11.3282470703125],["▁scientists",-11.32887363433838],["▁Nor",-11.328936576843262],["ites",-11.329320907592772],["▁engaging",-11.329933166503906],["My",-11.330178260803224],["▁workshops",-11.330282211303713],["ffer",-11.3303804397583],["activité",-11.33047103881836],["▁tension",-11.330567359924316],["▁dual",-11.330668449401855],["uer",-11.33084774017334],["900",-11.330941200256348],["SF",-11.33108139038086],["▁kannst",-11.331146240234377],["▁bur",-11.33115291595459],["▁visitor",-11.331156730651855],["▁granted",-11.331178665161133],["▁union",-11.331355094909668],["▁tablet",-11.331461906433104],["▁Choose",-11.33146858215332],["ibil",-11.331551551818848],["▁settlement",-11.331830978393556],["genommen",-11.33189296722412],["▁marked",-11.332956314086914],["▁diagnostic",-11.333370208740234],["▁prayer",-11.333529472351074],["▁Toronto",-11.334035873413086],["trans",-11.334146499633787],["▁respectiv",-11.334160804748535],["▁2012.",-11.33420753479004],["icul",-11.334394454956056],["▁satisfied",-11.334527969360352],["▁Fla",-11.334596633911133],["▁estimate",-11.334638595581056],["▁Agency",-11.33466911315918],["OD",-11.334708213806152],["▁McC",-11.334746360778809],["bert",-11.33474826812744],["▁seal",-11.334771156311035],["aine",-11.334839820861816],["▁cauza",-11.334848403930664],["▁wallpaper",-11.335081100463867],["▁alb",-11.33536434173584],["▁Sound",-11.335681915283203],["worth",-11.33572769165039],["chten",-11.335858345031738],["programm",-11.335896492004396],["▁pounds",-11.336215019226074],["▁coaching",-11.336278915405272],["▁Furthermore",-11.336454391479492],["▁Korea",-11.336471557617188],["▁flour",-11.336530685424805],["▁sommes",-11.33657169342041],["▁Repair",-11.33661937713623],["”)",-11.336642265319824],["itch",-11.336675643920898],["blu",-11.336786270141602],["zar",-11.33688259124756],["▁diferite",-11.33745002746582],["▁Golf",-11.337685585021973],["arch",-11.33772087097168],["▁panels",-11.337799072265623],["jan",-11.337956428527832],["“.",-11.33824062347412],["izarea",-11.338324546813965],["▁golden",-11.33854866027832],["▁flying",-11.338550567626951],["▁museum",-11.338700294494627],["▁equivalent",-11.338759422302246],["▁Lang",-11.339032173156738],["schi",-11.339539527893066],["MI",-11.339595794677734],["▁faci",-11.339838027954102],["▁Rahmen",-11.339988708496094],["▁attending",-11.340130805969238],["′′",-11.340483665466309],["▁Tro",-11.341070175170898],["▁gaming",-11.341447830200195],["▁aujourd",-11.341479301452637],["▁Wochen",-11.341526985168455],["▁entering",-11.341535568237305],["its",-11.34155559539795],["▁Private",-11.341866493225098],["▁Ocean",-11.34188175201416],["▁01",-11.342098236083984],["▁coloring",-11.342188835144045],["ător",-11.34253215789795],["▁flooring",-11.342548370361328],["▁downtown",-11.34276294708252],["rab",-11.342998504638672],["HI",-11.343221664428713],["▁illness",-11.343234062194824],["▁whil",-11.343307495117188],["▁diamond",-11.34333324432373],["Mail",-11.343419075012209],["▁Dream",-11.34344482421875],["▁Golden",-11.344099044799805],["▁rein",-11.344220161437988],["▁hi",-11.344283103942873],["▁expressed",-11.344489097595217],["▁luat",-11.344511985778809],["▁Share",-11.34453010559082],["▁Programm",-11.344706535339355],["▁Sales",-11.344707489013672],["▁prof",-11.344890594482422],["▁MO",-11.34505844116211],["▁Short",-11.345088958740234],["▁charm",-11.345290184020996],["▁Cer",-11.345373153686523],["▁Run",-11.34553337097168],["▁tutorial",-11.345589637756348],["oul",-11.34561824798584],["▁Fest",-11.345794677734377],["▁uniform",-11.345929145812988],["aß",-11.346014976501465],["▁pipe",-11.346076965332031],["▁Square",-11.346283912658691],["▁Kosten",-11.346365928649902],["▁checked",-11.346590042114258],["▁65",-11.34662628173828],["▁Adam",-11.346686363220217],["cel",-11.34670066833496],["ello",-11.346965789794922],["▁Res",-11.347023963928224],["▁drain",-11.34708309173584],["ză",-11.347129821777344],["▁Tech",-11.34739875793457],["▁strive",-11.34749698638916],["cycl",-11.347506523132324],["▁stark",-11.347541809082031],["load",-11.34754753112793],["▁Stat",-11.347589492797852],["▁Rec",-11.347622871398926],["ians",-11.347716331481934],["▁Tin",-11.347738265991213],["▁Agreement",-11.347840309143066],["▁pret",-11.348027229309082],["-9",-11.348326683044434],["▁sentence",-11.348380088806152],["▁Direct",-11.348426818847656],["▁Rep",-11.348465919494627],["▁Prozent",-11.348799705505373],["▁invitation",-11.34882640838623],["▁refund",-11.349113464355469],["▁Kids",-11.349287986755373],["stock",-11.349383354187012],["TP",-11.349400520324709],["▁tau",-11.34941291809082],["from",-11.349421501159668],["▁Ash",-11.349451065063477],["store",-11.349535942077637],["▁Common",-11.34958553314209],["▁Qualität",-11.34968376159668],["▁strongly",-11.349727630615234],["▁importante",-11.34979248046875],["ome",-11.349912643432615],["▁surtout",-11.349946022033691],["enables",-11.35020637512207],["▁decent",-11.350221633911133],["▁neutral",-11.350237846374512],["▁produs",-11.350356101989746],["bury",-11.350451469421388],["▁Level",-11.350618362426758],["▁interes",-11.350699424743652],["mov",-11.350797653198242],["▁backup",-11.350939750671388],["même",-11.351094245910645],["doc",-11.351119041442873],["▁#1",-11.35130786895752],["▁specified",-11.351495742797852],["▁founder",-11.351655960083008],["And",-11.352090835571287],["isten",-11.352149963378906],["▁lecture",-11.35272979736328],["▁wake",-11.352895736694336],["▁vraiment",-11.352980613708496],["▁swing",-11.353188514709473],["▁addresses",-11.353275299072266],["▁Verfügung",-11.353504180908203],["▁deadline",-11.353761672973633],["н",-11.35379123687744],["▁Content",-11.353970527648926],["▁Gre",-11.354111671447754],["▁Experience",-11.354378700256348],["tura",-11.354458808898926],["▁exit",-11.354642868041992],["▁Britain",-11.354652404785156],["▁Sunt",-11.354684829711914],["▁documentation",-11.354690551757812],["▁showcase",-11.3547945022583],["▁photographs",-11.354822158813477],["qué",-11.35483169555664],["zin",-11.354909896850586],["pres",-11.354933738708496],["▁decline",-11.354955673217772],["▁Large",-11.355030059814451],["▁bills",-11.355141639709473],["▁entitled",-11.355222702026367],["▁passionate",-11.355393409729004],["▁workout",-11.355413436889648],["▁Again",-11.35560417175293],["▁Haut",-11.35582160949707],["▁guaranteed",-11.35599136352539],["▁vue",-11.35600471496582],["▁farmers",-11.356224060058594],["▁admission",-11.356500625610352],["▁manière",-11.357080459594728],["▁reverse",-11.357121467590332],["▁FL",-11.357142448425291],["▁terminal",-11.357206344604492],["GI",-11.35731029510498],["▁speakers",-11.35739803314209],["▁responses",-11.357398986816406],["▁Doch",-11.357457160949709],["▁2013,",-11.357717514038086],["▁phones",-11.357789993286133],["ential",-11.357851028442385],["▁operator",-11.357916831970217],["▁steam",-11.358036994934082],["burn",-11.358091354370115],["▁seul",-11.35815715789795],["▁unusual",-11.358322143554688],["▁educate",-11.358403205871582],["▁Que",-11.358680725097656],["▁believes",-11.359137535095217],["▁succeed",-11.359344482421877],["▁delay",-11.359533309936523],["▁deeper",-11.359633445739746],["▁reaching",-11.359890937805176],["▁objectives",-11.36008644104004],["▁temporary",-11.36028003692627],["▁artistic",-11.360421180725098],["▁sou",-11.360471725463867],["▁transparent",-11.36062240600586],["There",-11.360798835754396],["ception",-11.360836029052734],["▁excess",-11.360939979553224],["▁gathering",-11.361008644104004],["▁Save",-11.361095428466797],["ază",-11.361166000366213],["▁français",-11.361197471618652],["▁laid",-11.361210823059082],["▁modul",-11.361394882202148],["avoir",-11.361465454101562],["under",-11.36211395263672],["dding",-11.362226486206056],["▁falls",-11.362232208251951],["▁Möglichkeit",-11.362369537353516],["▁ceremony",-11.362370491027832],["rai",-11.36237621307373],["▁Bor",-11.362709045410156],["▁Below",-11.362750053405762],["4)",-11.362759590148926],["▁Field",-11.362833023071287],["wear",-11.362935066223145],["motion",-11.362948417663574],["print",-11.363311767578123],["game",-11.363360404968262],["▁Irish",-11.363458633422852],["▁Las",-11.363458633422852],["Among",-11.363570213317873],["atori",-11.363580703735352],["▁ajuns",-11.363837242126465],["▁alive",-11.36386013031006],["▁retour",-11.363900184631348],["▁smoke",-11.3640775680542],["▁math",-11.364285469055176],["▁Ye",-11.364337921142578],["▁Denn",-11.36436653137207],["▁1995",-11.364412307739258],["▁bani",-11.364644050598145],["raz",-11.364998817443848],["world",-11.365026473999023],["▁engines",-11.365140914916992],["nehmen",-11.365192413330078],["stor",-11.365328788757324],["▁interpret",-11.365403175354004],["▁Ven",-11.365489959716797],["▁cotton",-11.365622520446776],["▁represented",-11.366004943847656],["▁fabulous",-11.366166114807127],["▁gender",-11.36630153656006],["Mar",-11.366668701171877],["vic",-11.366991996765137],["▁newsletter",-11.367432594299316],["sburg",-11.36757469177246],["pond",-11.36838436126709],["▁Carl",-11.368454933166504],["▁bunch",-11.368714332580566],["▁tower",-11.368847846984863],["▁trigger",-11.368976593017578],["▁explanation",-11.369091033935549],["Man",-11.369114875793455],["iunea",-11.369168281555176],["▁announcement",-11.369492530822754],["▁seeds",-11.36952018737793],["▁shell",-11.369865417480469],["▁Working",-11.36989688873291],["viz",-11.370267868041992],["▁Simply",-11.37032985687256],["sub",-11.37037181854248],["▁Village",-11.37060832977295],["▁falling",-11.370742797851562],["▁fits",-11.37084674835205],["▁wichtig",-11.37088394165039],["▁Down",-11.37108039855957],["bble",-11.371573448181152],["▁Orange",-11.37165641784668],["promoting",-11.37193202972412],["▁rapidly",-11.37217903137207],["▁translation",-11.37233066558838],["nig",-11.3723726272583],["fusion",-11.37240982055664],["kosten",-11.372611045837402],["2)",-11.372783660888672],["▁Express",-11.372958183288574],["▁Sw",-11.373003959655762],["▁frequency",-11.373086929321287],["▁diversity",-11.373348236083984],["MT",-11.373452186584473],["▁bekannt",-11.373530387878418],["lion",-11.373871803283691],["▁cop",-11.37393856048584],["▁Customer",-11.374072074890137],["▁demands",-11.374427795410156],["▁corn",-11.374516487121582],["▁Hamburg",-11.374551773071287],["SD",-11.374628067016602],["▁Rome",-11.374677658081056],["▁Pur",-11.374750137329102],["▁stamp",-11.374885559082031],["▁grateful",-11.374967575073242],["RM",-11.37511157989502],["▁Pl",-11.37511920928955],["▁Tele",-11.375154495239258],["▁plugin",-11.375492095947266],["▁maxim",-11.375675201416016],["▁Hoch",-11.37574577331543],["igung",-11.37582302093506],["▁Entwicklung",-11.375858306884766],["▁File",-11.375931739807127],["▁Eastern",-11.376070022583008],["▁scrap",-11.376331329345703],["▁acquired",-11.376338958740234],["sau",-11.376364707946776],["▁Klein",-11.376452445983888],["▁milioane",-11.376492500305176],["▁Stand",-11.376693725585938],["▁childhood",-11.37671184539795],["▁artificial",-11.376752853393556],["▁substantial",-11.376851081848145],["druck",-11.377315521240234],["▁Kra",-11.377562522888184],["▁performances",-11.377645492553713],["▁row",-11.377824783325195],["NT",-11.377899169921877],["mod",-11.377904891967772],["remained",-11.378399848937988],["▁nimic",-11.378462791442873],["▁Limited",-11.378555297851562],["▁cookie",-11.378718376159668],["▁retain",-11.378816604614258],["▁600",-11.379144668579102],["▁eigene",-11.379158020019531],["▁tune",-11.379209518432615],["NS",-11.37925624847412],["▁dad",-11.379284858703612],["Moreover",-11.37941551208496],["ès",-11.379434585571287],["▁worship",-11.379439353942873],["▁Material",-11.3794584274292],["▁verb",-11.379528045654297],["ziehen",-11.37957763671875],["lton",-11.379645347595217],["▁boot",-11.379982948303224],["plo",-11.380118370056152],["CF",-11.380212783813477],["GM",-11.380215644836426],["▁Mix",-11.38046932220459],["▁Front",-11.380474090576172],["▁repairs",-11.380655288696287],["▁proportion",-11.381068229675291],["▁habit",-11.381132125854492],["▁hide",-11.38156509399414],["focusing",-11.381707191467283],["▁Annual",-11.381717681884766],["▁twin",-11.3817777633667],["▁acord",-11.381780624389648],["ehr",-11.38181495666504],["month",-11.38230323791504],["venir",-11.382535934448242],["Or",-11.38254165649414],["awa",-11.382600784301758],["lass",-11.382735252380373],["ffe",-11.383048057556152],["iți",-11.383074760437012],["NO",-11.3831148147583],["▁scope",-11.383295059204102],["▁lowest",-11.383527755737305],["▁afraid",-11.383572578430176],["▁subjects",-11.383578300476074],["▁templates",-11.383586883544922],["▁jos",-11.383604049682615],["DM",-11.38368797302246],["ensemble",-11.383792877197266],["▁Ski",-11.383941650390623],["DP",-11.384099960327148],["▁grip",-11.38417148590088],["2-",-11.38436222076416],["▁sécurité",-11.384743690490724],["▁mono",-11.38474941253662],["▁controls",-11.384854316711426],["SV",-11.384879112243652],["install",-11.384970664978027],["berry",-11.385042190551758],["nial",-11.385120391845703],["shed",-11.385462760925291],["▁celle",-11.385830879211426],["FR",-11.385936737060549],["äng",-11.385950088500977],["▁gaz",-11.385984420776367],["êt",-11.386184692382812],["▁viewing",-11.386412620544434],["▁asigura",-11.386524200439451],["bling",-11.3865327835083],["master",-11.386919975280762],["▁Fin",-11.387160301208496],["VC",-11.387365341186523],["▁patent",-11.387715339660645],["▁Clean",-11.38773250579834],["▁1970",-11.387789726257324],["▁Char",-11.387971878051758],["thi",-11.388010025024414],["bli",-11.388141632080078],["▁haut",-11.388307571411133],["tica",-11.38836669921875],["▁venit",-11.388578414916992],["▁compatible",-11.388678550720217],["▁hanging",-11.388690948486328],["UN",-11.388842582702637],["▁forth",-11.388911247253418],["▁painted",-11.388912200927734],["lip",-11.389031410217283],["▁deeply",-11.389089584350586],["▁participating",-11.389242172241213],["▁Iran",-11.38968276977539],["▁conventional",-11.389769554138184],["ARE",-11.38985824584961],["▁accuracy",-11.389896392822266],["▁Familie",-11.389955520629885],["▁Dir",-11.39001178741455],["▁gehen",-11.390127182006836],["▁moderne",-11.39022159576416],["▁Iraq",-11.39050579071045],["▁vente",-11.390582084655762],["▁Donald",-11.390998840332031],["▁passer",-11.391051292419434],["▁mehrere",-11.391267776489258],["▁Everything",-11.391291618347168],["▁studied",-11.391307830810549],["▁acquire",-11.391312599182127],["für",-11.391477584838867],["▁gal",-11.391502380371094],["▁headed",-11.391809463500977],["▁screening",-11.391865730285645],["▁findings",-11.392303466796877],["▁nutrition",-11.392305374145508],["▁Secretary",-11.392308235168455],["duct",-11.392431259155272],["born",-11.392436027526855],["«",-11.39261531829834],["▁statistics",-11.392616271972656],["▁Sydney",-11.392800331115724],["▁Prof",-11.392829895019531],["▁dialogue",-11.39327621459961],["▁gather",-11.393425941467283],["valu",-11.393746376037598],["▁currency",-11.394073486328123],["▁Kat",-11.394092559814451],["gotten",-11.394189834594728],["main",-11.39432144165039],["▁coin",-11.39434051513672],["▁Nick",-11.394380569458008],["vă",-11.394658088684082],["▁Victoria",-11.394832611083984],["▁conclusion",-11.3949613571167],["▁lemon",-11.39499855041504],["▁Article",-11.39516830444336],["▁necesar",-11.39516830444336],["mag",-11.395180702209473],["▁riding",-11.39537239074707],["▁Eli",-11.395599365234377],["▁cord",-11.395635604858398],["wä",-11.39572811126709],["ußerdem",-11.395737648010254],["▁Bed",-11.395759582519531],["▁layers",-11.395833015441896],["▁harder",-11.39597511291504],["▁processor",-11.396040916442873],["▁Ils",-11.39613151550293],["▁Edition",-11.39615535736084],["▁Link",-11.39639377593994],["éré",-11.396461486816406],["▁nume",-11.396576881408691],["▁Boy",-11.39659595489502],["▁equally",-11.396646499633787],["▁Regel",-11.397119522094728],["▁hopes",-11.39718532562256],["odor",-11.397311210632324],["▁initially",-11.397430419921877],["▁$4",-11.3974609375],["▁exemplu",-11.397537231445312],["▁vari",-11.397565841674805],["schl",-11.397698402404783],["▁southern",-11.39809799194336],["▁mein",-11.39818000793457],["▁1994",-11.398300170898438],["▁importantly",-11.398401260375977],["▁succes",-11.398526191711426],["▁developer",-11.398598670959473],["▁lips",-11.39889144897461],["▁attitude",-11.39900016784668],["▁Age",-11.399541854858398],["▁corps",-11.399713516235352],["▁clicking",-11.39976978302002],["▁putem",-11.399832725524902],["▁journée",-11.40003776550293],["boy",-11.4002103805542],["▁injured",-11.40028190612793],["▁watched",-11.400433540344238],["▁flights",-11.40079116821289],["turn",-11.400980949401855],["▁stainless",-11.401562690734863],["▁besondere",-11.40156364440918],["▁Tur",-11.401596069335938],["▁hiring",-11.401650428771973],["▁roads",-11.401727676391602],["ificat",-11.401785850524902],["▁Flor",-11.402045249938965],["▁puternic",-11.402215003967283],["▁unexpected",-11.40223503112793],["▁Est",-11.40238094329834],["▁adopted",-11.40253734588623],["▁Fox",-11.402647972106934],["▁contributions",-11.402870178222656],["sec",-11.402968406677246],["IO",-11.40305995941162],["▁santé",-11.403432846069336],["▁Tree",-11.403763771057127],["▁scurt",-11.40381908416748],["▁Products",-11.403848648071287],["▁forecast",-11.403998374938965],["▁actor",-11.40414333343506],["▁Gallery",-11.404149055480955],["▁continuous",-11.404163360595703],["▁Hat",-11.404291152954102],["▁slip",-11.404501914978027],["9%",-11.40496063232422],["▁depression",-11.405043601989746],["UI",-11.405229568481444],["abile",-11.405648231506348],["▁merit",-11.40567111968994],["▁Fer",-11.405805587768556],["▁robot",-11.405888557434082],["▁gel",-11.40589427947998],["▁gentle",-11.406017303466797],["▁wanting",-11.406071662902832],["▁understood",-11.406157493591309],["▁terrain",-11.406161308288574],["▁associate",-11.406176567077637],["▁discussions",-11.40632152557373],["▁Job",-11.406365394592283],["spec",-11.40644073486328],["Dabei",-11.406475067138672],["etic",-11.406517028808594],["gol",-11.40654468536377],["▁20%",-11.40658473968506],["▁grup",-11.406606674194336],["▁Doctor",-11.406813621520996],["verse",-11.407246589660645],["▁victim",-11.40725803375244],["ță",-11.407302856445312],["▁scores",-11.407544136047363],["▁Policy",-11.407634735107422],["▁Anna",-11.407736778259276],["IV",-11.407804489135742],["▁mineral",-11.408202171325684],["live",-11.40821647644043],["▁grey",-11.408368110656738],["struct",-11.40852165222168],["▁emails",-11.408738136291504],["▁anymore",-11.409114837646484],["▁productivity",-11.409387588500977],["▁Dark",-11.409463882446287],["▁neither",-11.409481048583984],["▁quotes",-11.409611701965332],["LS",-11.41036891937256],["▁Arizona",-11.41040325164795],["night",-11.410497665405272],["élé",-11.411019325256348],["▁assigned",-11.41115379333496],["▁satellite",-11.411328315734863],["▁stability",-11.411665916442873],["▁networking",-11.41172981262207],["▁Transport",-11.411847114562988],["▁persons",-11.411856651306152],["fund",-11.412043571472168],["▁pratique",-11.41213321685791],["▁inca",-11.412134170532228],["iller",-11.412349700927734],["▁packed",-11.41239070892334],["▁Vegas",-11.412484169006348],["▁offre",-11.412493705749512],["▁Bin",-11.412518501281738],["stop",-11.412609100341797],["mini",-11.412860870361328],["▁jam",-11.412877082824709],["cord",-11.41289234161377],["▁Beautiful",-11.412996292114258],["▁trash",-11.413012504577637],["▁wise",-11.413092613220217],["▁accounting",-11.413178443908691],["▁différents",-11.413182258605955],["▁stil",-11.413214683532717],["suit",-11.413951873779297],["▁vier",-11.414209365844728],["▁permis",-11.414224624633787],["flow",-11.414238929748535],["▁col",-11.414749145507812],["ected",-11.414960861206056],["▁singer",-11.414999008178713],["▁GmbH",-11.415038108825684],["tics",-11.415094375610352],["▁ser",-11.415159225463867],["On",-11.415315628051758],["▁insights",-11.415605545043944],["BB",-11.41594696044922],["▁differ",-11.415959358215332],["▁Glass",-11.416131973266602],["▁Six",-11.41648292541504],["▁subscription",-11.416584968566896],["BC",-11.416606903076172],["▁returning",-11.416664123535156],["kleinen",-11.416693687438965],["▁advantages",-11.416747093200684],["omme",-11.416852951049805],["lus",-11.417071342468262],["now",-11.417141914367676],["▁Pack",-11.417253494262695],["▁leak",-11.417333602905272],["▁muscles",-11.41748332977295],["▁davon",-11.417492866516112],["mph",-11.417858123779297],["▁temple",-11.417868614196776],["▁Après",-11.417901039123535],["▁Illinois",-11.41801643371582],["▁variable",-11.418065071105955],["▁judgment",-11.418389320373535],["gran",-11.41861629486084],["▁pose",-11.418621063232422],["das",-11.41864776611328],["ures",-11.418673515319824],["▁Championship",-11.418689727783203],["ebenfalls",-11.41872501373291],["▁hydro",-11.418753623962402],["▁angle",-11.419268608093262],["▁5-",-11.41940975189209],["▁gest",-11.419547080993652],["▁Frau",-11.420233726501465],["▁knock",-11.420275688171388],["FS",-11.420442581176758],["spi",-11.420577049255373],["▁Regional",-11.420717239379885],["lets",-11.421098709106444],["▁Date",-11.42115592956543],["▁Finance",-11.42121124267578],["▁Dann",-11.421320915222168],["Star",-11.421380043029783],["▁Creek",-11.421393394470217],["▁fu",-11.421648979187012],["wohn",-11.422141075134276],["▁anniversary",-11.422219276428224],["▁investments",-11.422292709350586],["▁universal",-11.422601699829102],["▁pit",-11.42274570465088],["ște",-11.422784805297852],["▁lab",-11.422822952270508],["dienst",-11.422884941101074],["▁pal",-11.422889709472656],["▁graphic",-11.42289924621582],["▁bearing",-11.422900199890137],["▁stylish",-11.423087120056152],["▁mé",-11.42319393157959],["▁există",-11.42326545715332],["▁découvrir",-11.423477172851562],["comp",-11.423606872558594],["ridge",-11.423667907714844],["▁heads",-11.423765182495115],["▁consequences",-11.423835754394531],["self",-11.423842430114746],["fried",-11.423870086669922],["▁inventory",-11.424199104309082],["▁strip",-11.42422866821289],["▁Civil",-11.42424488067627],["bell",-11.424307823181152],["▁neben",-11.424444198608398],["▁Perfect",-11.424470901489258],["▁Notre",-11.424478530883787],["▁fraud",-11.424630165100098],["▁employers",-11.424656867980955],["▁Jackson",-11.42470645904541],["▁probleme",-11.424915313720703],["▁richtig",-11.424957275390623],["▁Method",-11.425009727478027],["▁tired",-11.425010681152344],["dies",-11.425031661987305],["▁Number",-11.425315856933594],["rland",-11.425652503967283],["▁latter",-11.426031112670898],["rendre",-11.426064491271973],["▁cameras",-11.426095962524414],["▁euch",-11.426630020141602],["▁Description",-11.427038192749023],["Spec",-11.427061080932615],["▁mile",-11.427437782287598],["▁Challenge",-11.42747402191162],["▁Solutions",-11.427504539489746],["▁trusted",-11.427509307861328],["▁einge",-11.427515029907228],["rück",-11.427528381347656],["▁Ober",-11.427635192871094],["kes",-11.42764949798584],["▁Log",-11.427684783935549],["▁dessert",-11.427776336669922],["▁murder",-11.428033828735352],["▁1/2",-11.428311347961426],["▁Provide",-11.42872142791748],["nivelul",-11.428800582885742],["nici",-11.428818702697754],["▁observe",-11.42889404296875],["▁prescription",-11.429162979125977],["▁Sau",-11.429170608520508],["▁genuine",-11.42919635772705],["▁operated",-11.429231643676758],["▁generous",-11.42926788330078],["▁weapons",-11.429458618164062],["▁belief",-11.4295015335083],["▁consum",-11.429584503173828],["▁unknown",-11.430116653442385],["deoarece",-11.430135726928713],["Art",-11.430147171020508],["▁kurz",-11.430183410644531],["▁Gut",-11.430258750915527],["▁medication",-11.430522918701172],["▁Mau",-11.43058967590332],["▁divorce",-11.430678367614746],["▁claimed",-11.430811882019045],["halten",-11.430848121643066],["▁Cons",-11.43089485168457],["▁operational",-11.430975914001465],["▁Hong",-11.431081771850586],["VI",-11.431143760681152],["▁Blick",-11.431485176086426],["▁lamp",-11.431706428527832],["pati",-11.43185329437256],["▁4-",-11.43192195892334],["▁interven",-11.431964874267578],["ques",-11.43201732635498],["▁Talk",-11.432096481323242],["▁zeigt",-11.432318687438965],["▁targeted",-11.432390213012695],["round",-11.432640075683594],["enfant",-11.432748794555664],["▁Reg",-11.432836532592772],["▁instruments",-11.432872772216797],["▁calcul",-11.433363914489746],["▁Henry",-11.4335298538208],["▁Cla",-11.433616638183594],["▁rack",-11.433661460876465],["sehen",-11.43375301361084],["▁ending",-11.433754920959473],["▁resolve",-11.434130668640137],["▁advise",-11.434178352355955],["▁sociale",-11.434386253356934],["▁cabin",-11.434536933898926],["▁involve",-11.43480396270752],["gă",-11.434889793395996],["▁automat",-11.435132026672363],["▁consultant",-11.435258865356444],["Bu",-11.435370445251465],["▁safely",-11.435466766357422],["état",-11.43547821044922],["▁pros",-11.435657501220703],["▁lies",-11.435659408569336],["▁Brian",-11.435914993286133],["▁talented",-11.435954093933104],["pus",-11.43599796295166],["▁hub",-11.436060905456545],["▁Ji",-11.43606662750244],["▁sought",-11.436102867126465],["▁energie",-11.43621063232422],["▁möchten",-11.43634033203125],["▁11.",-11.436558723449709],["▁Kong",-11.436662673950195],["▁grave",-11.43666934967041],["▁lists",-11.436800956726074],["tati",-11.436809539794922],["verschiedenen",-11.43692398071289],["dam",-11.437061309814451],["▁charity",-11.437249183654783],["▁breaking",-11.43735122680664],["kins",-11.43747329711914],["▁könnte",-11.437517166137695],["▁appointed",-11.437532424926758],["roc",-11.4376859664917],["▁Senate",-11.437979698181152],["wit",-11.438002586364746],["▁emerging",-11.438162803649902],["▁année",-11.438288688659668],["▁Cool",-11.438365936279297],["▁sensor",-11.43842887878418],["How",-11.438488960266112],["▁Ryan",-11.438626289367676],["▁computers",-11.43871784210205],["▁fault",-11.4388427734375],["▁présent",-11.438843727111816],["ulation",-11.439149856567385],["▁stir",-11.439348220825195],["lauf",-11.439703941345217],["▁AI",-11.440389633178713],["▁Bri",-11.440438270568848],["▁bain",-11.441011428833008],["▁5,",-11.441287994384766],["schein",-11.44157886505127],["▁weiß",-11.441596031188965],["▁possibilities",-11.44235610961914],["gur",-11.442413330078123],["▁hinter",-11.44264793395996],["Innen",-11.442755699157717],["▁vorba",-11.442992210388184],["fahren",-11.443008422851562],["▁Cell",-11.443072319030762],["univers",-11.443137168884276],["▁Follow",-11.443424224853516],["▁emotions",-11.44360637664795],["▁Ministry",-11.44369411468506],["▁curriculum",-11.44369411468506],["Je",-11.443764686584473],["▁gab",-11.444080352783203],["▁sigur",-11.444270133972168],["rise",-11.444416999816896],["Pri",-11.44466495513916],["▁stabil",-11.444781303405762],["▁superb",-11.445100784301758],["▁Oak",-11.44510269165039],["▁rubber",-11.445286750793455],["▁tag",-11.445306777954102],["PG",-11.445361137390137],["▁Heat",-11.445477485656738],["▁thousand",-11.445504188537598],["▁meets",-11.445521354675291],["▁faced",-11.445578575134276],["▁reserve",-11.445640563964844],["cateva",-11.445767402648926],["▁gym",-11.445771217346191],["▁vitamin",-11.445960998535156],["▁Rest",-11.446457862854004],["▁Single",-11.446535110473633],["▁Stephen",-11.44662380218506],["▁trick",-11.446824073791504],["DU",-11.44694709777832],["▁telefon",-11.44711685180664],["▁gând",-11.447120666503906],["▁primit",-11.447345733642578],["▁Connect",-11.447351455688477],["▁führt",-11.447440147399902],["▁Info",-11.447500228881836],["▁recall",-11.447848320007324],["▁restore",-11.447885513305664],["lege",-11.44792652130127],["▁franchise",-11.448189735412598],["▁seulement",-11.44856071472168],["reci",-11.448598861694336],["▁2019,",-11.44864273071289],["▁Ring",-11.448663711547852],["▁assembly",-11.448678970336914],["intérieur",-11.448775291442873],["▁shade",-11.44887924194336],["▁meaningful",-11.448881149291992],["bag",-11.448989868164062],["ONE",-11.449249267578123],["▁globe",-11.44928741455078],["▁WA",-11.449406623840332],["▁intervention",-11.449495315551758],["öl",-11.44953155517578],["▁Marine",-11.45029067993164],["▁Angebot",-11.450512886047363],["▁align",-11.450618743896484],["▁temperatures",-11.450634956359863],["ifier",-11.45091724395752],["▁Nigeria",-11.451189041137695],["▁survive",-11.451216697692873],["ounce",-11.451275825500488],["▁placement",-11.451416969299316],["▁deci",-11.451528549194336],["▁Taylor",-11.451759338378906],["step",-11.45190715789795],["▁Geschichte",-11.452054023742676],["▁Bet",-11.45216941833496],["▁Nature",-11.45224380493164],["▁FC",-11.452256202697754],["▁ownership",-11.45228672027588],["▁behaviour",-11.452474594116213],["▁deutlich",-11.452532768249512],["▁wondering",-11.452798843383787],["▁cleaner",-11.453295707702637],["uring",-11.4534912109375],["rä",-11.453496932983398],["▁ga",-11.454296112060549],["ador",-11.454482078552246],["▁artwork",-11.454564094543455],["ologic",-11.45457649230957],["▁eigentlich",-11.454848289489746],["▁hell",-11.45522403717041],["source",-11.455251693725586],["▁gem",-11.455265045166016],["▁boss",-11.455307006835938],["▁arise",-11.45546054840088],["about",-11.455711364746094],["▁SI",-11.455951690673828],["▁ME",-11.45610237121582],["akt",-11.456191062927246],["▁Style",-11.456259727478027],["▁Körper",-11.456493377685549],["gui",-11.456799507141112],["▁navigate",-11.456819534301758],["▁Meanwhile",-11.45697784423828],["▁așa",-11.457111358642578],["▁bulk",-11.457298278808594],["▁directions",-11.457310676574709],["▁brick",-11.45774745941162],["▁Poly",-11.457752227783203],["▁politique",-11.457772254943848],["▁patch",-11.457777976989746],["ра",-11.457816123962402],["commerce",-11.457844734191896],["▁înainte",-11.457884788513184],["▁intelligent",-11.45823860168457],["▁infection",-11.458426475524902],["▁Tru",-11.458494186401367],["▁raising",-11.458504676818848],["tragen",-11.458539009094238],["▁portrait",-11.45858383178711],["▁meisten",-11.458783149719238],["▁organize",-11.45893669128418],["metric",-11.458962440490724],["▁Season",-11.459036827087402],["▁enforcement",-11.459259033203123],["origine",-11.459836959838867],["▁Ros",-11.460065841674805],["▁Mount",-11.460083961486816],["have",-11.460237503051758],["▁romantic",-11.46025848388672],["▁comic",-11.460810661315918],["▁greu",-11.461116790771484],["ET",-11.46133041381836],["▁hook",-11.461407661437988],["▁mort",-11.461411476135254],["▁indicated",-11.461583137512209],["▁7,",-11.46198272705078],["▁Neben",-11.46204662322998],["yer",-11.46214485168457],["▁momentul",-11.46214771270752],["note",-11.462313652038574],["▁baz",-11.46231460571289],["▁abroad",-11.462320327758787],["nite",-11.462464332580566],["▁bass",-11.462701797485352],["▁norm",-11.462714195251465],["▁É",-11.462788581848145],["4.",-11.462881088256836],["▁province",-11.463004112243652],["▁merge",-11.463419914245604],["arbeiten",-11.463438987731934],["-20",-11.463574409484863],["▁Nicht",-11.463674545288086],["spo",-11.463783264160156],["size",-11.463815689086914],["▁assure",-11.463849067687988],["charge",-11.463987350463867],["▁olive",-11.464017868041992],["▁Pot",-11.46408462524414],["▁Figure",-11.4642333984375],["clair",-11.464336395263672],["▁discipline",-11.464600563049316],["elli",-11.464639663696287],["▁tackle",-11.465169906616213],["▁buyer",-11.465237617492676],["▁loud",-11.465479850769045],["▁180",-11.465534210205078],["▁căt",-11.465587615966797],["▁Palm",-11.465738296508787],["away",-11.46593189239502],["▁Mother",-11.46607494354248],["onia",-11.466240882873535],["▁Protection",-11.466416358947754],["auto",-11.466547966003418],["▁Version",-11.466583251953123],["▁Nice",-11.466714859008787],["▁12.",-11.46682071685791],["▁0,",-11.466835021972656],["ATION",-11.466911315917969],["▁Produkte",-11.466955184936523],["▁tube",-11.467084884643556],["▁Houston",-11.467106819152832],["chu",-11.467500686645508],["pas",-11.467717170715332],["▁Ele",-11.467801094055176],["▁mountains",-11.467835426330566],["PH",-11.467937469482422],["▁languages",-11.468672752380373],["▁servicii",-11.468722343444824],["▁Stay",-11.468999862670898],["fil",-11.469138145446776],["▁propos",-11.469801902770996],["▁coll",-11.469825744628906],["▁mor",-11.470197677612305],["▁arrange",-11.470410346984863],["▁sorry",-11.47047519683838],["▁instruction",-11.470723152160645],["▁holes",-11.47077465057373],["letting",-11.471046447753906],["▁wa",-11.471074104309082],["▁Feb",-11.471227645874023],["omb",-11.471232414245604],["▁prise",-11.471290588378906],["VO",-11.471305847167969],["week",-11.471349716186523],["▁Event",-11.471427917480469],["▁AT",-11.471485137939451],["ket",-11.471492767333984],["haft",-11.471579551696776],["▁hits",-11.47159194946289],["foli",-11.471681594848633],["this",-11.471948623657228],["GP",-11.471970558166504],["▁Pin",-11.472332954406738],["▁Stein",-11.472503662109377],["thing",-11.472512245178224],["▁emphasis",-11.472556114196776],["▁Mur",-11.472631454467772],["▁Bag",-11.472647666931152],["cons",-11.47273063659668],["tons",-11.472835540771484],["lash",-11.472987174987791],["▁Grant",-11.473104476928713],["▁pris",-11.473175048828123],["▁bună",-11.47323989868164],["▁buc",-11.473699569702148],["▁passe",-11.473746299743652],["▁jewelry",-11.474213600158691],["iens",-11.474342346191406],["▁forma",-11.47453784942627],["▁Med",-11.474651336669922],["laufen",-11.474778175354004],["▁hunt",-11.474977493286133],["stayed",-11.475086212158203],["party",-11.475152015686035],["▁fra",-11.47529411315918],["▁scenes",-11.475305557250977],["▁absorb",-11.47535228729248],["▁abilities",-11.475377082824709],["lug",-11.475507736206056],["▁Sarah",-11.475693702697754],["mpf",-11.47570514678955],["▁fle",-11.4757080078125],["accès",-11.475872993469238],["▁solicit",-11.475926399230955],["pie",-11.476278305053713],["▁Zum",-11.476296424865724],["▁universe",-11.476390838623049],["▁exists",-11.476449012756348],["oane",-11.476597785949709],["IVE",-11.47668743133545],["▁2011.",-11.476906776428224],["▁specialists",-11.477072715759276],["▁mess",-11.477309226989746],["fach",-11.477402687072754],["▁Recht",-11.477404594421388],["▁hack",-11.47755241394043],["▁jacket",-11.477564811706545],["HC",-11.47769832611084],["▁substance",-11.477728843688965],["▁signing",-11.477775573730469],["▁allerdings",-11.478032112121582],["▁publish",-11.478139877319336],["▁Lab",-11.478157043457031],["▁agenda",-11.478249549865724],["lane",-11.478299140930176],["stream",-11.478620529174805],["schau",-11.47879409790039],["▁realizat",-11.478971481323242],["▁supplier",-11.479019165039062],["▁moderate",-11.47902774810791],["▁tours",-11.479212760925291],["▁narrative",-11.479220390319824],["ația",-11.47927951812744],["▁maps",-11.47942352294922],["treten",-11.479447364807127],["▁mars",-11.479706764221191],["▁moon",-11.479745864868164],["rose",-11.479751586914062],["▁exp",-11.479766845703123],["zahl",-11.480154037475586],["psych",-11.480195999145508],["▁gehört",-11.48024845123291],["▁bound",-11.4803466796875],["▁submission",-11.480451583862305],["▁clubs",-11.480722427368164],["Am",-11.480755805969238],["tenir",-11.480782508850098],["▁boast",-11.48085117340088],["▁boards",-11.4810791015625],["▁Geschäfts",-11.481216430664062],["zing",-11.48126220703125],["wort",-11.48137092590332],["lid",-11.481417655944824],["▁contractor",-11.481528282165527],["▁donner",-11.481672286987305],["▁coupon",-11.481974601745604],["adresse",-11.482004165649414],["colo",-11.48210334777832],["▁perception",-11.48212432861328],["NC",-11.48222541809082],["▁abge",-11.482245445251465],["▁cheaper",-11.48226833343506],["▁grace",-11.482312202453612],["▁resident",-11.482718467712402],["kla",-11.4828462600708],["▁bug",-11.4828462600708],["▁Available",-11.48289394378662],["▁BA",-11.483323097229004],["▁Met",-11.483601570129396],["▁climb",-11.48365592956543],["▁expanded",-11.484349250793455],["ying",-11.484426498413086],["▁matching",-11.484469413757324],["▁suffered",-11.484733581542969],["▁employed",-11.484755516052246],["pper",-11.484843254089355],["▁experiencing",-11.48488426208496],["ddy",-11.48495388031006],["▁philosophy",-11.484955787658691],["▁utilisé",-11.485008239746094],["▁Jane",-11.485079765319824],["LI",-11.485087394714355],["▁elected",-11.485185623168944],["▁MI",-11.485264778137209],["▁ISO",-11.485340118408203],["winning",-11.48537540435791],["▁vot",-11.485424041748049],["▁generic",-11.485519409179688],["▁Bol",-11.485650062561035],["▁copies",-11.48568058013916],["▁mechanical",-11.48568058013916],["günstig",-11.485682487487791],["roy",-11.485770225524902],["Astfel",-11.48580837249756],["media",-11.485868453979492],["▁shoulder",-11.4859037399292],["▁directory",-11.486000061035156],["▁banking",-11.486016273498535],["▁mistakes",-11.486040115356444],["▁Fran",-11.486425399780272],["▁Jon",-11.486544609069824],["▁spare",-11.486579895019531],["metri",-11.486668586730955],["▁mask",-11.486879348754885],["▁consistently",-11.48695182800293],["▁Columbia",-11.487278938293455],["roid",-11.48774242401123],["essen",-11.487935066223145],["▁(“",-11.48798656463623],["▁série",-11.48821258544922],["▁Phil",-11.48824977874756],["▁usor",-11.48824977874756],["▁stood",-11.488279342651367],["▁racing",-11.488335609436035],["▁Comme",-11.488555908203123],["▁exceed",-11.488565444946287],["на",-11.488618850708008],["▁activate",-11.48873233795166],["▁circle",-11.488836288452148],["▁bold",-11.488956451416016],["▁handy",-11.48909854888916],["merely",-11.48911476135254],["▁Edward",-11.489147186279297],["▁contracts",-11.489530563354492],["ê",-11.489595413208008],["▁campaigns",-11.489673614501951],["▁ought",-11.489733695983888],["▁nursing",-11.489781379699709],["▁Jr",-11.489917755126951],["▁rarely",-11.490032196044922],["▁Mir",-11.490050315856934],["▁diagnosis",-11.490379333496094],["▁Theatre",-11.490394592285156],["▁producer",-11.490407943725586],["Currently",-11.490492820739746],["▁fitting",-11.490580558776855],["▁ajunge",-11.490618705749512],["minte",-11.49075412750244],["▁termen",-11.490838050842283],["▁Linux",-11.491013526916504],["▁1-",-11.491068840026855],["▁hätte",-11.491202354431152],["▁Resort",-11.49129867553711],["image",-11.491527557373049],["▁Rod",-11.49189281463623],["▁Fly",-11.491924285888672],["try",-11.492317199707031],["▁expense",-11.49245834350586],["▁Interior",-11.492799758911133],["▁fence",-11.492920875549316],["▁Kontakt",-11.493063926696776],["▁ALL",-11.493142127990724],["VA",-11.493229866027832],["▁Exchange",-11.493316650390623],["ranked",-11.493558883666992],["▁Performance",-11.493621826171877],["prim",-11.493635177612305],["▁basket",-11.493694305419922],["▁Vice",-11.493703842163086],["phan",-11.4937105178833],["▁broke",-11.494003295898438],["voir",-11.49431324005127],["arg",-11.494512557983398],["ART",-11.494529724121094],["▁floors",-11.49485683441162],["pression",-11.495025634765623],["▁possession",-11.49507999420166],["▁domaine",-11.49510669708252],["▁valeur",-11.495132446289062],["▁suddenly",-11.495282173156738],["▁mild",-11.495304107666016],["▁aflat",-11.495431900024414],["▁Tea",-11.495731353759766],["tritt",-11.495767593383787],["▁Mittel",-11.495773315429688],["▁regulatory",-11.49580192565918],["▁spectacular",-11.495905876159668],["fahrt",-11.495949745178224],["GS",-11.496026039123535],["MM",-11.4961576461792],["▁environments",-11.496203422546388],["▁Raum",-11.496381759643556],["▁lay",-11.496664047241213],["▁cré",-11.496713638305664],["▁Selbst",-11.496726989746094],["▁opposition",-11.496821403503418],["two",-11.49729061126709],["▁Clark",-11.497822761535645],["▁Netz",-11.497845649719238],["bald",-11.497983932495115],["▁Innovation",-11.4982271194458],["▁overcome",-11.49825382232666],["quot",-11.499013900756836],["▁Sin",-11.499106407165527],["▁Sto",-11.49932098388672],["▁grain",-11.499560356140137],["▁collections",-11.49972438812256],["▁applies",-11.49986743927002],["mach",-11.499934196472168],["▁wheels",-11.499958992004396],["▁universities",-11.500049591064451],["▁Ray",-11.500182151794434],["lina",-11.500238418579102],["▁arrangements",-11.500393867492676],["▁western",-11.500728607177734],["rous",-11.500768661499023],["aise",-11.500784873962402],["▁highlights",-11.50112533569336],["▁intend",-11.501265525817873],["aimed",-11.501358032226562],["▁Scotland",-11.501360893249512],["▁acestei",-11.501466751098633],["graf",-11.50150203704834],["duction",-11.501517295837402],["path",-11.50156021118164],["▁evil",-11.501633644104004],["▁scris",-11.501791000366213],["▁disposition",-11.501927375793455],["▁designing",-11.5020751953125],["zwar",-11.502172470092772],["▁Retrieve",-11.50217342376709],["▁aggressive",-11.502374649047852],["▁Glen",-11.502411842346191],["▁daher",-11.502473831176758],["▁Quick",-11.50249481201172],["▁recover",-11.50263214111328],["▁prominent",-11.50288200378418],["▁visits",-11.503198623657228],["▁Mis",-11.503376960754396],["▁edited",-11.503456115722656],["▁distributed",-11.503564834594728],["▁dés",-11.503580093383787],["▁alter",-11.5035982131958],["▁cooked",-11.503697395324709],["embl",-11.503706932067873],["Univers",-11.50371551513672],["▁Minuten",-11.504156112670898],["▁compris",-11.504179954528809],["rais",-11.504182815551758],["essentially",-11.504199028015137],["▁rel",-11.504340171813965],["▁appel",-11.50457000732422],["▁trace",-11.504788398742676],["relating",-11.504830360412598],["dès",-11.504937171936035],["aste",-11.504961013793944],["▁raison",-11.504963874816896],["▁frequent",-11.505281448364258],["▁beds",-11.505316734313965],["▁Miami",-11.505511283874512],["▁vibrant",-11.50564193725586],["▁Kam",-11.50572109222412],["▁klar",-11.505861282348633],["▁Tan",-11.50598430633545],["▁vidéo",-11.506032943725586],["▁Kur",-11.506115913391112],["▁themes",-11.506134033203123],["▁struggling",-11.506440162658691],["▁Magazine",-11.506444931030272],["maker",-11.506476402282717],["veni",-11.506564140319824],["▁Groß",-11.506732940673828],["▁streaming",-11.506772994995115],["▁analyze",-11.506876945495604],["▁titles",-11.506982803344728],["pier",-11.507316589355469],["▁participant",-11.507347106933594],["aims",-11.507607460021973],["▁convention",-11.507638931274414],["▁flood",-11.507780075073242],["▁nights",-11.507842063903809],["▁titre",-11.50792407989502],["▁voul",-11.508010864257812],["weit",-11.50816822052002],["where",-11.508213996887209],["▁Seiten",-11.508286476135254],["▁relaxing",-11.508628845214844],["▁piano",-11.50883674621582],["▁Pick",-11.50884246826172],["▁Sony",-11.508955001831056],["▁enhanced",-11.509017944335938],["▁visa",-11.50915241241455],["CH",-11.50930118560791],["▁instantly",-11.50930404663086],["▁Fan",-11.509721755981444],["▁diabetes",-11.50998878479004],["▁popul",-11.50999641418457],["Ang",-11.51023292541504],["▁Ask",-11.510295867919922],["cate",-11.510650634765623],["▁simplu",-11.510666847229004],["nahme",-11.510685920715332],["▁dentist",-11.510842323303224],["ubi",-11.510920524597168],["article",-11.511030197143556],["▁graph",-11.511094093322754],["▁rival",-11.51121711730957],["jahr",-11.5113525390625],["▁bloc",-11.511370658874512],["fern",-11.511427879333496],["▁dispar",-11.511516571044922],["▁servers",-11.511582374572754],["▁patru",-11.511610984802246],["▁Within",-11.511634826660156],["▁situated",-11.511896133422852],["▁HR",-11.511981964111328],["▁leaf",-11.511981964111328],["▁curs",-11.512049674987791],["antes",-11.512325286865234],["lux",-11.512406349182127],["▁1993",-11.512463569641112],["stance",-11.512650489807127],["▁northern",-11.512683868408203],["lves",-11.512718200683594],["▁contractors",-11.512882232666016],["▁dimensions",-11.512920379638672],["▁rolling",-11.513068199157717],["▁automobile",-11.513211250305176],["▁cru",-11.51342487335205],["▁displays",-11.51357078552246],["web",-11.513812065124512],["had",-11.513850212097168],["▁Never",-11.513893127441406],["▁2-",-11.51393222808838],["vine",-11.51393985748291],["▁Wahl",-11.513975143432615],["▁Markt",-11.514166831970217],["▁Double",-11.514227867126465],["▁acknowledge",-11.514229774475098],["stal",-11.514288902282717],["▁equity",-11.514620780944824],["▁ministry",-11.51482391357422],["▁Lor",-11.514875411987305],["▁sud",-11.514968872070312],["idée",-11.515044212341309],["▁measured",-11.515448570251465],["▁editing",-11.515609741210938],["▁singur",-11.515620231628418],["▁coal",-11.515623092651367],["▁dramatic",-11.516212463378906],["AG",-11.51625156402588],["asca",-11.516280174255373],["▁crash",-11.516321182250977],["ischer",-11.516597747802734],["▁Pla",-11.516871452331545],["▁psycho",-11.517054557800291],["piece",-11.517118453979492],["▁finger",-11.51712131500244],["▁Hollywood",-11.517123222351074],["▁Cr",-11.517345428466797],["▁locally",-11.517622947692873],["▁mouse",-11.517792701721191],["▁Base",-11.517867088317873],["uite",-11.518095016479492],["▁detect",-11.518099784851074],["cea",-11.518150329589844],["▁bull",-11.518194198608398],["▁curve",-11.518208503723145],["été",-11.518218994140623],["ddle",-11.51839542388916],["▁span",-11.51852321624756],["WS",-11.518878936767578],["CL",-11.519017219543455],["▁officially",-11.519042015075684],["▁corect",-11.519168853759766],["▁Artikel",-11.5193510055542],["▁customized",-11.520099639892578],["▁intellectual",-11.52018928527832],["▁heures",-11.520334243774414],["schule",-11.520444869995115],["▁investing",-11.520585060119627],["▁parallel",-11.521227836608888],["▁loi",-11.521263122558594],["ările",-11.521566390991213],["р",-11.521679878234863],["▁bench",-11.521724700927734],["▁principle",-11.521756172180176],["▁Galaxy",-11.52182960510254],["ța",-11.52223777770996],["▁(4",-11.522418975830078],["▁bedrooms",-11.522578239440918],["née",-11.52273941040039],["▁surely",-11.52275276184082],["very",-11.522927284240724],["stelle",-11.523200988769531],["activ",-11.523216247558594],["cite",-11.523551940917969],["▁Original",-11.523553848266602],["▁palm",-11.52366542816162],["▁losses",-11.523934364318848],["▁newspaper",-11.52415370941162],["ciu",-11.52436351776123],["▁Hold",-11.524392127990724],["BO",-11.524422645568848],["▁CON",-11.524598121643066],["▁modified",-11.524624824523926],["▁stake",-11.524735450744627],["▁Ton",-11.524798393249512],["▁luna",-11.524968147277832],["▁Mind",-11.525094985961914],["lap",-11.525150299072266],["▁opinions",-11.52524757385254],["▁Jordan",-11.525351524353027],["div",-11.52537727355957],["indi",-11.525418281555176],["▁Story",-11.525476455688477],["▁affiliate",-11.52585506439209],["▁matière",-11.525918960571287],["▁fifth",-11.526399612426758],["▁sheets",-11.52645492553711],["▁puțin",-11.526909828186035],["ush",-11.526947021484377],["geführt",-11.52699375152588],["▁Falls",-11.52716827392578],["legi",-11.527295112609863],["▁auction",-11.527326583862305],["▁cooperation",-11.52735424041748],["▁Fee",-11.527474403381348],["▁Daily",-11.52774715423584],["pies",-11.527853965759276],["▁basketball",-11.527976036071776],["removing",-11.528056144714355],["Besides",-11.528294563293455],["▁Body",-11.528355598449709],["▁AD",-11.528369903564451],["RU",-11.528435707092283],["ţia",-11.52894401550293],["▁Extra",-11.528986930847168],["▁Practice",-11.52900218963623],["▁Jeff",-11.529017448425291],["▁început",-11.529253005981444],["ching",-11.529269218444824],["▁Gift",-11.529281616210938],["kk",-11.529295921325684],["\")",-11.529349327087402],["▁Austin",-11.529651641845703],["thro",-11.529766082763672],["▁camping",-11.529810905456545],["▁theatre",-11.529850959777832],["école",-11.529916763305664],["vient",-11.530159950256348],["▁faces",-11.530226707458496],["▁constructed",-11.530437469482422],["▁overnight",-11.530472755432127],["▁locale",-11.530574798583984],["▁roots",-11.530611038208008],["▁bu",-11.530662536621094],["4,",-11.530683517456056],["▁Enterprise",-11.530865669250488],["screen",-11.530935287475586],["▁Chef",-11.53096866607666],["▁Along",-11.531298637390137],["▁MD",-11.531431198120115],["▁Supreme",-11.531597137451172],["En",-11.531655311584473],["▁verwendet",-11.532015800476074],["▁processed",-11.532425880432127],["▁vendors",-11.532549858093262],["▁FA",-11.532651901245115],["▁44",-11.532716751098633],["▁beautifully",-11.532933235168455],["▁eficient",-11.533092498779297],["▁Wil",-11.533117294311523],["▁Member",-11.533121109008787],["▁damages",-11.5332670211792],["▁mutual",-11.533288955688477],["SN",-11.533506393432615],["▁Dave",-11.533665657043455],["??",-11.533998489379885],["stat",-11.534090995788574],["▁tourist",-11.534374237060549],["fie",-11.534425735473633],["şte",-11.534754753112791],["▁donne",-11.534764289855955],["▁shadow",-11.53493881225586],["▁dough",-11.534993171691896],["▁Gro",-11.53500270843506],["▁Mah",-11.535066604614258],["RF",-11.535126686096191],["▁mechanism",-11.535163879394531],["▁2011,",-11.535179138183594],["▁Alter",-11.53530502319336],["▁opposed",-11.53538990020752],["▁Fri",-11.53550148010254],["▁remarkable",-11.535572052001951],["oral",-11.535635948181152],["▁verschiedene",-11.535653114318848],["▁difficulty",-11.535691261291504],["▁Application",-11.535840034484863],["▁Hay",-11.535888671875],["▁continua",-11.535935401916504],["EP",-11.53609848022461],["▁Pr",-11.53617000579834],["▁Lady",-11.53631591796875],["▁interval",-11.536457061767578],["▁Mil",-11.536504745483398],["▁2010.",-11.537042617797852],["VE",-11.537074089050291],["integr",-11.537360191345217],["▁création",-11.537415504455566],["weed",-11.537456512451172],["EG",-11.53760051727295],["▁6,",-11.537784576416016],["▁god",-11.537866592407228],["▁accomplish",-11.53794765472412],["▁thoroughly",-11.538019180297852],["2019",-11.53822898864746],["izer",-11.538246154785156],["▁Wal",-11.538300514221191],["ifying",-11.538701057434082],["▁Wohn",-11.539227485656738],["▁Holz",-11.539474487304688],["▁Advanced",-11.539528846740724],["▁honey",-11.539626121520996],["proof",-11.539634704589844],["▁saison",-11.540029525756836],["ându",-11.540035247802734],["▁Kevin",-11.540116310119627],["▁shelter",-11.540199279785156],["▁discut",-11.540257453918455],["▁hike",-11.540257453918455],["ités",-11.540461540222168],["▁boutique",-11.540672302246094],["▁Email",-11.54067611694336],["▁cosmetic",-11.540830612182615],["dian",-11.540916442871094],["▁hohe",-11.540940284729004],["▁absence",-11.541071891784668],["axi",-11.541136741638184],["nah",-11.541178703308104],["▁Frauen",-11.541236877441406],["▁actively",-11.541278839111328],["bind",-11.541468620300291],["▁everybody",-11.541740417480469],["▁controller",-11.541802406311035],["▁1.5",-11.5418062210083],["erau",-11.541842460632324],["gehen",-11.541988372802734],["▁scenario",-11.542038917541504],["▁odd",-11.542083740234377],["▁Ultra",-11.542089462280272],["▁finishing",-11.542366981506348],["▁cuts",-11.542383193969728],["▁financing",-11.542515754699709],["▁Chance",-11.542579650878906],["surrounded",-11.542818069458008],["▁joc",-11.542903900146484],["▁shelf",-11.543004035949709],["tief",-11.54308032989502],["▁Sir",-11.543146133422852],["▁Agent",-11.543197631835938],["▁scratch",-11.543560981750488],["2,000",-11.54360294342041],["nutri",-11.54365348815918],["nier",-11.544063568115234],["▁Dur",-11.544175148010254],["▁grid",-11.544268608093262],["road",-11.544413566589355],["▁pets",-11.544429779052734],["stud",-11.54448127746582],["OM",-11.544569969177246],["Die",-11.544877052307127],["▁800",-11.54496955871582],["▁arrangement",-11.545088768005373],["▁Sri",-11.545185089111328],["▁Patrick",-11.545187950134276],["ava",-11.545212745666504],["▁pension",-11.54523754119873],["dung",-11.545353889465332],["▁Chapter",-11.545475006103516],["▁Property",-11.545475006103516],["▁structural",-11.545571327209473],["▁overview",-11.545731544494627],["2015",-11.545917510986328],["▁lawn",-11.545924186706545],["▁Vin",-11.546219825744627],["lik",-11.54640293121338],["dus",-11.54641819000244],["Several",-11.54654598236084],["▁Bou",-11.546670913696287],["▁copper",-11.546703338623049],["▁duration",-11.546867370605469],["inate",-11.546982765197754],["▁podcast",-11.547204971313477],["▁Self",-11.547208786010742],["▁Construction",-11.547491073608398],["achat",-11.54768180847168],["???",-11.547683715820312],["▁Electric",-11.547974586486816],["▁Mrs",-11.54799747467041],["▁CT",-11.548019409179688],["▁proceed",-11.548324584960938],["▁Course",-11.548333168029783],["▁Frei",-11.548699378967283],["▁heavily",-11.548868179321287],["rique",-11.548872947692873],["version",-11.549016952514648],["▁representatives",-11.549118041992188],["▁tourism",-11.549182891845703],["▁shirt",-11.5494966506958],["▁rough",-11.54950714111328],["▁weniger",-11.549735069274902],["▁keyboard",-11.550058364868164],["▁heritage",-11.55014991760254],["kat",-11.550535202026367],["assez",-11.550567626953123],["▁cabinets",-11.550591468811035],["▁Komm",-11.550762176513672],["▁impressed",-11.55078411102295],["▁Oregon",-11.550788879394531],["▁Davis",-11.55081558227539],["specialized",-11.55097770690918],["▁gross",-11.550999641418455],["Located",-11.551044464111328],["ttle",-11.551044464111328],["▁2010,",-11.551224708557127],["chan",-11.55125331878662],["mine",-11.551305770874023],["▁aduce",-11.551637649536133],["▁subsequent",-11.551729202270508],["▁demo",-11.551851272583008],["aba",-11.552209854125977],["▁shock",-11.55238914489746],["▁theater",-11.552854537963867],["▁engineers",-11.55294418334961],["▁feu",-11.553037643432615],["▁Rot",-11.553058624267578],["▁addressed",-11.553155899047852],["▁Letter",-11.553431510925291],["gré",-11.553448677062988],["▁quantity",-11.553449630737305],["▁Seit",-11.553640365600586],["▁bacteria",-11.553681373596191],["kg",-11.55408000946045],["▁conservation",-11.554191589355469],["▁entreprises",-11.55420207977295],["▁pleasant",-11.554207801818848],["armed",-11.554228782653809],["dorf",-11.554286003112791],["fact",-11.554320335388184],["▁Much",-11.554388046264648],["▁laugh",-11.55482006072998],["▁blade",-11.554835319519045],["amine",-11.554838180541992],["▁insert",-11.55493450164795],["▁toys",-11.555326461791992],["▁в",-11.555726051330566],["cell",-11.555747985839844],["▁strengthen",-11.555864334106444],["GR",-11.555882453918455],["▁autor",-11.556114196777344],["▁LI",-11.556147575378418],["▁oamenii",-11.556184768676758],["▁Modell",-11.556222915649414],["▁sophisticated",-11.556225776672363],["▁Write",-11.556283950805664],["eți",-11.55629539489746],["say",-11.556641578674316],["▁nutzen",-11.55678367614746],["▁amenities",-11.556979179382324],["chel",-11.557068824768066],["Unlike",-11.55720043182373],["▁Bilder",-11.557208061218262],["fertig",-11.55722713470459],["PER",-11.557244300842283],["▁apparently",-11.55728244781494],["▁pointed",-11.557332992553713],["lop",-11.557435989379885],["▁commande",-11.557848930358888],["▁NEW",-11.557923316955566],["▁primi",-11.55798625946045],["▁aluminum",-11.558046340942385],["ificare",-11.558063507080078],["open",-11.55815315246582],["▁establishment",-11.558305740356444],["▁blanc",-11.558349609375],["▁1960",-11.558454513549805],["▁parameters",-11.55856990814209],["schluss",-11.558685302734377],["▁jet",-11.55879020690918],["gam",-11.55902099609375],["▁oral",-11.559290885925291],["▁tons",-11.559348106384276],["▁AL",-11.55935001373291],["▁intention",-11.55947494506836],["ives",-11.55974292755127],["▁BMW",-11.559837341308594],["gun",-11.559967041015623],["leben",-11.560046195983888],["▁Fresh",-11.56010913848877],["▁tuturor",-11.560193061828612],["▁marine",-11.560208320617676],["mile",-11.560260772705078],["▁alta",-11.56027126312256],["nnen",-11.56050968170166],["▁courts",-11.56053066253662],["▁Hello",-11.560791015625],["BL",-11.560895919799805],["▁reply",-11.560962677001951],["environnement",-11.560975074768066],["American",-11.560995101928713],["▁Tell",-11.561040878295898],["▁chic",-11.56148624420166],["bir",-11.561542510986328],["▁singing",-11.56178855895996],["▁earnings",-11.561819076538086],["▁ensemble",-11.562082290649414],["▁($",-11.562169075012209],["▁Tout",-11.562192916870115],["▁Abs",-11.562264442443848],["▁describes",-11.562322616577148],["▁navigation",-11.5625],["▁destul",-11.562532424926758],["legate",-11.562586784362791],["tral",-11.562599182128906],["aţie",-11.562753677368164],["▁supplied",-11.56277561187744],["▁paar",-11.562911987304688],["ionat",-11.563241958618164],["9.",-11.56326389312744],["▁41",-11.563348770141602],["▁Track",-11.563451766967772],["▁happiness",-11.563636779785156],["▁Personen",-11.563680648803713],["▁sac",-11.56373119354248],["▁shapes",-11.56377410888672],["eld",-11.56393051147461],["bett",-11.563963890075684],["tile",-11.56400203704834],["▁divided",-11.564035415649414],["▁13.",-11.56403923034668],["market",-11.564109802246094],["crafted",-11.564115524291992],["▁periods",-11.564120292663574],["uş",-11.564568519592283],["▁trainer",-11.56460952758789],["▁Licht",-11.564871788024902],["▁advisor",-11.564948081970217],["▁Herr",-11.564980506896973],["▁Halloween",-11.565147399902344],["alter",-11.56515407562256],["▁radical",-11.565155029296877],["▁nose",-11.56527042388916],["▁Sat",-11.56532382965088],["▁Mom",-11.565372467041016],["moni",-11.565377235412598],["▁semn",-11.565397262573242],["vé",-11.565672874450684],["identifie",-11.56570053100586],["▁hatten",-11.565957069396973],["completing",-11.565959930419922],["▁gust",-11.565963745117188],["▁creat",-11.56601333618164],["ché",-11.566075325012209],["pay",-11.566216468811035],["▁Money",-11.566229820251465],["IG",-11.566243171691896],["▁Cash",-11.566327095031738],["altă",-11.566420555114746],["▁bekommen",-11.566620826721191],["▁43",-11.56662654876709],["▁supplement",-11.566637992858888],["▁Early",-11.566754341125488],["▁mattress",-11.56692123413086],["▁worn",-11.567182540893556],["rov",-11.567197799682615],["▁pray",-11.56733226776123],["▁beans",-11.567673683166504],["▁passé",-11.567782402038574],["▁facilit",-11.56782054901123],["▁meters",-11.56784439086914],["cke",-11.568163871765137],["▁Villa",-11.568199157714844],["▁Diego",-11.568217277526855],["▁chips",-11.568244934082031],["▁mes",-11.568349838256836],["▁Seattle",-11.568421363830566],["BU",-11.568621635437012],["▁nevoi",-11.568714141845703],["▁lets",-11.568737030029297],["▁hopefully",-11.56894302368164],["▁AG",-11.568954467773438],["liable",-11.568999290466309],["pound",-11.569067001342772],["près",-11.569085121154783],["arul",-11.56920337677002],["isiert",-11.569281578063965],["▁Expert",-11.569297790527344],["▁particulier",-11.56936740875244],["stoff",-11.569952964782717],["▁interpretation",-11.56999397277832],["După",-11.57007884979248],["sait",-11.57011604309082],["▁nouvelles",-11.570173263549805],["▁Ok",-11.570175170898438],["tap",-11.570301055908203],["▁targets",-11.570327758789062],["rung",-11.57052230834961],["▁stare",-11.570576667785645],["▁efficiently",-11.570908546447754],["EV",-11.571003913879396],["évit",-11.571310997009276],["▁Moldova",-11.571542739868164],["▁Face",-11.571663856506348],["▁flo",-11.57168960571289],["▁acestora",-11.5717134475708],["▁Victor",-11.57183837890625],["▁breed",-11.57198429107666],["morph",-11.572230339050291],["sley",-11.572274208068848],["mot",-11.57234001159668],["▁URL",-11.572395324707031],["ellen",-11.572502136230469],["▁resist",-11.572781562805176],["zon",-11.57282829284668],["ndel",-11.572967529296877],["will",-11.572989463806152],["▁alege",-11.573076248168944],["▁Easter",-11.573114395141602],["▁Bat",-11.573190689086914],["▁Höhe",-11.573223114013672],["▁fascinating",-11.573387145996094],["▁Know",-11.5735445022583],["illon",-11.573602676391602],["flex",-11.57363224029541],["who",-11.573701858520508],["▁Always",-11.573729515075684],["▁Bush",-11.573777198791504],["ICE",-11.574009895324709],["verein",-11.57448673248291],["▁später",-11.57448959350586],["▁cherch",-11.574575424194336],["makers",-11.574753761291504],["versus",-11.574790954589844],["▁Clear",-11.574846267700195],["▁Pennsylvania",-11.574912071228027],["Dieser",-11.57504177093506],["▁picking",-11.575072288513184],["▁restoration",-11.57513427734375],["▁interviews",-11.575201988220217],["pressed",-11.575210571289062],["nnerhalb",-11.575674057006836],["▁connecting",-11.575834274291992],["jou",-11.57594394683838],["▁react",-11.576189041137695],["▁Merci",-11.576223373413086],["▁Phone",-11.576356887817385],["▁1)",-11.57652473449707],["▁victims",-11.576618194580078],["▁Spo",-11.576685905456545],["atului",-11.576735496520996],["▁Harry",-11.576837539672852],["▁Sala",-11.576875686645508],["Pol",-11.577075958251951],["▁Clo",-11.577167510986328],["▁Erfolg",-11.577211380004885],["autour",-11.577308654785156],["▁Template",-11.577314376831056],["▁invention",-11.57754898071289],["▁schwer",-11.57761287689209],["vac",-11.577625274658203],["▁Trail",-11.577627182006836],["▁Vietnam",-11.577638626098633],["▁Size",-11.577689170837402],["▁Bern",-11.577783584594728],["▁emp",-11.577845573425291],["▁shake",-11.57787799835205],["▁Ave",-11.57794189453125],["▁productive",-11.578009605407717],["▁apple",-11.578015327453612],["▁portal",-11.578052520751951],["▁ceramic",-11.578082084655762],["▁pad",-11.578110694885254],["▁Syn",-11.578316688537598],["Ab",-11.57845401763916],["▁syn",-11.578761100769045],["find",-11.57888889312744],["▁settle",-11.578909873962402],["▁général",-11.578965187072754],["▁okay",-11.57903289794922],["▁receipt",-11.57906436920166],["orii",-11.57911777496338],["▁Mission",-11.57912254333496],["entrée",-11.579304695129396],["▁besteht",-11.579394340515137],["▁wisdom",-11.57950210571289],["▁heraus",-11.579645156860352],["▁balanced",-11.579753875732422],["▁habits",-11.579773902893066],["tang",-11.579888343811035],["ură",-11.580151557922363],["▁winners",-11.580182075500488],["ç",-11.580215454101562],["▁folosi",-11.580242156982422],["aliment",-11.5802583694458],["▁fiction",-11.580373764038086],["▁Spe",-11.58053493499756],["▁elsewhere",-11.580663681030272],["▁dependent",-11.580808639526367],["▁Anne",-11.581167221069336],["▁excellence",-11.581695556640623],["▁Feel",-11.581753730773926],["lieb",-11.581811904907228],["▁sectors",-11.581865310668944],["▁expir",-11.581886291503906],["▁surfaces",-11.58191204071045],["▁minim",-11.581937789916992],["▁tumor",-11.58204460144043],["▁paragraph",-11.582289695739746],["▁disk",-11.58232307434082],["▁tonight",-11.582379341125488],["▁precious",-11.582794189453123],["▁console",-11.58288288116455],["Th",-11.58293914794922],["neu",-11.583020210266112],["effective",-11.5839262008667],["▁Republican",-11.583944320678713],["format",-11.58429718017578],["▁preserve",-11.58436107635498],["▁wiring",-11.584599494934082],["▁exercises",-11.584757804870604],["▁pregnancy",-11.584774017333984],["tries",-11.58481502532959],["▁jeunes",-11.584883689880373],["▁publishing",-11.584932327270508],["▁nehmen",-11.584935188293455],["▁capability",-11.5849609375],["▁prompt",-11.584965705871582],["▁Further",-11.58497428894043],["▁semaine",-11.58517360687256],["abo",-11.585216522216797],["▁evolution",-11.585319519042969],["▁Sud",-11.585403442382812],["▁frais",-11.585525512695312],["LT",-11.585619926452637],["▁stack",-11.58581829071045],["▁Inside",-11.585854530334473],["▁programmes",-11.585997581481934],["▁passes",-11.586196899414062],["mü",-11.586474418640137],["▁progressive",-11.586518287658691],["▁calculator",-11.58658218383789],["▁Core",-11.586655616760254],["BT",-11.586956977844238],["core",-11.586996078491213],["▁Moon",-11.58700466156006],["▁tender",-11.587040901184082],["durch",-11.58721923828125],["▁commune",-11.587453842163086],["▁Prince",-11.587594032287598],["▁demonstrated",-11.587693214416504],["▁conversations",-11.587890625],["▁fri",-11.587984085083008],["igh",-11.587992668151855],["being",-11.588334083557127],["pause",-11.58853530883789],["▁Bear",-11.58871841430664],["ayant",-11.588875770568848],["▁Industry",-11.588967323303224],["▁sponsor",-11.589012145996094],["▁numele",-11.589098930358888],["▁VA",-11.589167594909668],["▁Sommer",-11.589366912841797],["TB",-11.589380264282228],["▁optional",-11.589505195617676],["▁Landes",-11.58981227874756],["coli",-11.589963912963867],["empt",-11.59018325805664],["▁Iron",-11.590620040893556],["▁1992",-11.59090518951416],["▁attempts",-11.59090518951416],["halb",-11.590960502624512],["▁photographer",-11.59097671508789],["▁witness",-11.59097957611084],["bru",-11.591073989868164],["▁Ras",-11.59107780456543],["▁burden",-11.591142654418944],["▁kaufen",-11.591256141662598],["▁vu",-11.591362953186035],["▁Wedding",-11.591601371765137],["▁Kla",-11.591604232788086],["occasion",-11.591915130615234],["▁keys",-11.59213161468506],["▁oferi",-11.592279434204102],["▁puzzle",-11.592302322387695],["eaux",-11.59254264831543],["▁Eco",-11.592805862426758],["▁52",-11.592817306518556],["▁Elizabeth",-11.59284496307373],["▁dispose",-11.593144416809082],["▁cluster",-11.59326171875],["iki",-11.593283653259276],["▁Guys",-11.593595504760742],["▁Economic",-11.593632698059082],["▁apar",-11.593677520751951],["▁ziua",-11.593688011169434],["▁integral",-11.593740463256836],["▁tac",-11.59376335144043],["▁restrictions",-11.593778610229492],["▁nerve",-11.593794822692873],["▁Stop",-11.59386157989502],["burger",-11.593897819519045],["explo",-11.593944549560549],["lö",-11.593958854675291],["NP",-11.594077110290527],["▁Brook",-11.59418773651123],["▁Close",-11.594278335571287],["▁representing",-11.59446907043457],["▁certaine",-11.594767570495604],["▁discovery",-11.594836235046388],["▁rece",-11.594964981079102],["FF",-11.594970703125],["▁salary",-11.595069885253906],["▁Wolf",-11.595137596130373],["▁deserve",-11.595166206359863],["ţele",-11.595417976379396],["gathered",-11.595934867858888],["▁comply",-11.59599494934082],["lagen",-11.596034049987791],["ătoare",-11.596192359924316],["▁relate",-11.596410751342772],["▁Roger",-11.59656810760498],["▁blame",-11.596575736999512],["▁Jen",-11.596914291381836],["▁army",-11.596936225891112],["▁$10",-11.597129821777344],["▁Cabinet",-11.597185134887695],["Gu",-11.597367286682127],["▁wildlife",-11.597452163696287],["▁Memorial",-11.597643852233888],["▁Holiday",-11.597742080688477],["▁curat",-11.598291397094728],["iilor",-11.598299026489258],["▁fleet",-11.598408699035645],["▁reviewed",-11.59843635559082],["cet",-11.598450660705566],["▁virtually",-11.598487854003906],["▁Crusher",-11.59852409362793],["▁slide",-11.59858226776123],["▁générale",-11.598604202270508],["▁sensation",-11.598630905151367],["▁garlic",-11.598638534545898],["5)",-11.598657608032228],["▁batteries",-11.598756790161133],["SH",-11.59876823425293],["▁seller",-11.59882926940918],["design",-11.598871231079102],["5.",-11.598944664001465],["▁Overall",-11.598969459533691],["▁investigate",-11.599058151245115],["max",-11.599064826965332],["▁attach",-11.599166870117188],["▁Future",-11.599209785461426],["OUR",-11.599284172058104],["▁LE",-11.59968090057373],["▁bite",-11.599811553955078],["tige",-11.59987449645996],["▁twist",-11.59987735748291],["hole",-11.600180625915527],["▁Tony",-11.600510597229004],["LU",-11.600598335266112],["▁Organization",-11.60061740875244],["▁invit",-11.600632667541504],["▁Ant",-11.60073947906494],["NR",-11.600788116455078],["sorgt",-11.600854873657228],["▁Lan",-11.600860595703123],["▁Manchester",-11.60091495513916],["schrift",-11.601066589355469],["▁kg",-11.601150512695312],["▁aroma",-11.60132884979248],["▁Source",-11.601388931274414],["▁permite",-11.601445198059082],["▁Consider",-11.601457595825195],["▁Artist",-11.601627349853516],["▁transmit",-11.601783752441406],["oasa",-11.601834297180176],["▁Zen",-11.60198974609375],["ANT",-11.602235794067385],["▁consulting",-11.602404594421388],["▁commence",-11.6025390625],["▁quilt",-11.60261058807373],["owned",-11.602642059326172],["▁bro",-11.602689743041992],["▁integrate",-11.602715492248535],["▁Ontario",-11.602775573730469],["TF",-11.602832794189451],["▁Study",-11.602887153625488],["▁ensuite",-11.603155136108398],["itatii",-11.60318088531494],["Mon",-11.603235244750977],["-11",-11.603299140930176],["what",-11.603384017944336],["▁Things",-11.60361385345459],["▁Eye",-11.603819847106934],["▁présente",-11.60382843017578],["tention",-11.603915214538574],["|",-11.603957176208496],["stall",-11.603963851928713],["▁beef",-11.603992462158203],["figur",-11.604005813598633],["▁cancel",-11.604146003723145],["▁domeniul",-11.604252815246582],["▁360",-11.604290008544922],["▁sleeping",-11.6045560836792],["▁traitement",-11.604580879211426],["ühl",-11.604769706726074],["▁Environmental",-11.604835510253906],["cier",-11.604894638061523],["▁NC",-11.604907035827637],["pub",-11.604925155639648],["▁addiction",-11.60507106781006],["▁nest",-11.605128288269045],["▁ON",-11.605395317077637],["▁discrimin",-11.605396270751951],["▁proved",-11.605517387390137],["▁occasions",-11.605864524841309],["OH",-11.60618495941162],["▁lawyers",-11.606203079223633],["own",-11.606290817260742],["▁Meeting",-11.606596946716309],["▁Industrial",-11.606704711914062],["owed",-11.606736183166504],["▁Cel",-11.606793403625488],["legt",-11.60706615447998],["ily",-11.607085227966309],["▁wins",-11.607155799865724],["▁strap",-11.607367515563965],["digit",-11.607441902160645],["▁hinaus",-11.607504844665527],["mple",-11.607712745666504],["▁(5",-11.607797622680664],["▁pdf",-11.607894897460938],["▁eco",-11.607915878295898],["▁junior",-11.608172416687012],["DB",-11.608556747436523],["gelegt",-11.608636856079102],["ION",-11.608678817749023],["▁competitors",-11.60880184173584],["▁Arab",-11.60898208618164],["▁Secret",-11.609148979187012],["▁Kunst",-11.609283447265623],["▁worried",-11.609297752380373],["meiner",-11.609378814697266],["▁Magic",-11.609450340270996],["▁groß",-11.609537124633787],["▁travaux",-11.609748840332031],["▁sollen",-11.60977268218994],["▁Sciences",-11.609850883483888],["▁athletes",-11.610055923461914],["▁discounts",-11.610079765319824],["kit",-11.610211372375488],["lind",-11.610305786132812],["▁enjoyable",-11.610421180725098],["ground",-11.61048984527588],["▁Tat",-11.610529899597168],["▁passengers",-11.610576629638672],["▁Dami",-11.610677719116213],["▁Major",-11.61070728302002],["watch",-11.610796928405762],["working",-11.61090850830078],["arrêt",-11.610923767089844],["▁subtle",-11.611069679260254],["▁epi",-11.611197471618652],["▁Jahres",-11.61128044128418],["▁cooling",-11.61141586303711],["▁makeup",-11.611427307128906],["jet",-11.611495018005373],["▁Given",-11.611519813537598],["plex",-11.61158275604248],["▁exploit",-11.611590385437012],["rine",-11.611604690551758],["▁delivers",-11.612122535705566],["▁summary",-11.61223602294922],["▁beaches",-11.612459182739258],["lift",-11.612550735473633],["▁Suite",-11.612554550170898],["▁Assistant",-11.612688064575195],["▁taxi",-11.61273193359375],["▁peaceful",-11.612805366516112],["▁Mode",-11.612980842590332],["▁Fun",-11.613059043884276],["▁diameter",-11.61314296722412],["▁phrase",-11.613150596618652],["ACT",-11.61326503753662],["▁différentes",-11.613322257995604],["▁14.",-11.613417625427246],["▁CE",-11.61352825164795],["▁2)",-11.613739013671877],["▁Nat",-11.61378574371338],["▁delete",-11.61388111114502],["other",-11.613930702209473],["hang",-11.613985061645508],["▁sujet",-11.614117622375488],["▁precise",-11.614212989807127],["▁Total",-11.614290237426758],["▁chambre",-11.614483833312988],["sati",-11.614666938781738],["▁Metal",-11.614995956420898],["rust",-11.615038871765137],["▁Brazil",-11.615508079528809],["▁hybrid",-11.615636825561523],["ops",-11.61569118499756],["▁electro",-11.615789413452148],["utz",-11.61608600616455],["▁quoi",-11.616246223449709],["▁adoption",-11.616331100463867],["3.5",-11.616518020629885],["50,000",-11.616599082946776],["veti",-11.61663055419922],["hir",-11.616957664489746],["▁adequate",-11.617067337036133],["ologist",-11.617109298706056],["torii",-11.617295265197754],["wasser",-11.617355346679688],["▁Authority",-11.61736297607422],["▁donation",-11.617364883422852],["700",-11.617375373840332],["▁somehow",-11.617375373840332],["▁kostenlos",-11.617425918579102],["▁generations",-11.61753749847412],["▁Turkey",-11.617711067199709],["rata",-11.617819786071776],["▁animation",-11.618206024169922],["▁CH",-11.618281364440918],["ending",-11.61831760406494],["welt",-11.61837673187256],["bac",-11.618380546569824],["MG",-11.618460655212402],["▁parks",-11.618468284606934],["▁placing",-11.618870735168455],["sort",-11.61915111541748],["▁Bitcoin",-11.619163513183594],["▁disorder",-11.619282722473145],["MAN",-11.619302749633787],["aught",-11.619412422180176],["▁guides",-11.61956787109375],["▁circul",-11.619651794433594],["▁Steven",-11.619954109191896],["rrière",-11.619976997375488],["▁Arch",-11.61999225616455],["▁plates",-11.620091438293455],["MR",-11.620118141174316],["▁cow",-11.620142936706545],["▁integrity",-11.620210647583008],["▁(18",-11.620217323303224],["▁totul",-11.62024211883545],["jack",-11.620373725891112],["▁privire",-11.620588302612305],["▁terme",-11.620752334594728],["▁execution",-11.620781898498535],["▁organism",-11.620838165283203],["▁führen",-11.620853424072266],["▁patron",-11.62094020843506],["▁appreciated",-11.62096881866455],["liant",-11.62100601196289],["▁Solar",-11.621055603027344],["▁vinyl",-11.621134757995604],["▁treasure",-11.621137619018556],["▁retro",-11.621167182922363],["▁bout",-11.621174812316896],["lab",-11.621183395385742],["▁dimension",-11.621394157409668],["called",-11.62146282196045],["▁intern",-11.621479034423828],["issement",-11.62173843383789],["▁Erst",-11.621837615966797],["▁stellen",-11.621920585632324],["▁familia",-11.622069358825684],["▁notion",-11.62217617034912],["▁Could",-11.622322082519531],["Getting",-11.622323036193848],["▁drives",-11.622397422790527],["▁Israeli",-11.622520446777344],["▁nations",-11.622546195983888],["▁duties",-11.622700691223145],["▁personalized",-11.622788429260254],["▁weren",-11.62282657623291],["▁chemicals",-11.622847557067873],["▁killing",-11.622913360595703],["▁masa",-11.622994422912598],["▁parce",-11.623026847839355],["▁lady",-11.623178482055664],["ides",-11.623221397399902],["▁execut",-11.62340259552002],["▁floral",-11.62341594696045],["▁Child",-11.623428344726562],["▁medal",-11.62350368499756],["▁casa",-11.62360382080078],["▁enabled",-11.623650550842283],["12.",-11.624239921569824],["nger",-11.624266624450684],["▁vent",-11.624297142028809],["▁urmă",-11.624727249145508],["▁Herz",-11.624835968017578],["▁Jay",-11.624916076660156],[".....",-11.624942779541016],["▁Kris",-11.62499713897705],["kenn",-11.625001907348633],["ress",-11.625027656555176],["weight",-11.62519359588623],["▁indicates",-11.625198364257812],["▁mentor",-11.625328063964844],["using",-11.625386238098145],["▁femmes",-11.625460624694824],["▁Jung",-11.625528335571287],["▁Send",-11.625574111938477],["▁seasons",-11.625906944274902],["▁aesthetic",-11.625964164733888],["▁Block",-11.626086235046388],["▁babies",-11.626150131225586],["zig",-11.626242637634276],["edge",-11.626428604125977],["▁alike",-11.626458168029783],["▁immune",-11.626609802246094],["▁magical",-11.626710891723633],["▁Snow",-11.626748085021973],["▁spacious",-11.62705898284912],["▁Melbourne",-11.62706184387207],["order",-11.627081871032717],["▁timing",-11.62717628479004],["▁inainte",-11.627220153808594],["▁width",-11.627327919006348],["bild",-11.627386093139648],["Tra",-11.627429008483888],["▁appliances",-11.627449989318848],["▁dirt",-11.627498626708984],["▁Rent",-11.627689361572266],["responsibilities",-11.627747535705566],["▁blogs",-11.62778377532959],["nächsten",-11.627799034118652],["▁argue",-11.627928733825684],["▁Resume",-11.627985954284668],["▁Michel",-11.628044128417969],["▁terrible",-11.628092765808104],["graph",-11.628151893615724],["bird",-11.628202438354492],["▁Simple",-11.628457069396973],["nning",-11.628658294677734],["▁coconut",-11.62868309020996],["▁comprise",-11.628787994384766],["heure",-11.628918647766112],["▁nichts",-11.628921508789062],["▁manufacture",-11.628966331481934],["▁Sar",-11.629011154174805],["green",-11.629014015197754],["lining",-11.62910270690918],["▁tremendous",-11.629128456115724],["▁Wine",-11.629164695739746],["gir",-11.629290580749512],["▁Nothing",-11.629562377929688],["▁Miller",-11.62957763671875],["▁Schwe",-11.629712104797363],["zone",-11.629942893981934],["▁cunoscut",-11.629964828491213],["rupt",-11.630166053771973],["kle",-11.630187034606934],["▁Bucuresti",-11.630510330200195],["▁Abend",-11.630574226379396],["▁aura",-11.63058376312256],["▁Dance",-11.63073444366455],["▁Wilson",-11.63086986541748],["icide",-11.630901336669922],["bai",-11.630910873413086],["oriented",-11.63103199005127],["▁celebrated",-11.631421089172363],["schlag",-11.631531715393066],["▁10-",-11.631600379943848],["Unsere",-11.63167667388916],["énergie",-11.632009506225586],["▁qualify",-11.63205623626709],["▁contenu",-11.632177352905272],["▁Lauf",-11.63220500946045],["▁einzelne",-11.632360458374023],["▁Youth",-11.632415771484377],["explains",-11.632601737976074],["grat",-11.632782936096191],["▁72",-11.632804870605469],["labor",-11.632885932922363],["2018",-11.632940292358398],["▁Dank",-11.633149147033691],["▁Hey",-11.63352394104004],["▁refuse",-11.633536338806152],["▁graduated",-11.633599281311035],["▁României",-11.633627891540527],["punkt",-11.633807182312012],["▁regulation",-11.633834838867188],["Bru",-11.63384246826172],["▁Side",-11.633891105651855],["▁sol",-11.633970260620115],["▁extraordinary",-11.634182929992676],["▁ging",-11.634247779846191],["▁Creative",-11.634299278259276],["▁expanding",-11.634349822998049],["▁problème",-11.63444995880127],["▁Reserve",-11.63459300994873],["auteur",-11.634642601013184],["sphere",-11.634657859802246],["season",-11.634716987609863],["frei",-11.634756088256836],["▁8,",-11.634765625],["▁filing",-11.634810447692873],["▁Complete",-11.635017395019531],["▁revolution",-11.635035514831545],["▁unele",-11.63520622253418],["/8",-11.635272979736328],["istes",-11.635310173034668],["backed",-11.635400772094728],["shirt",-11.635554313659668],["▁Details",-11.63567352294922],["rod",-11.635695457458496],["▁pod",-11.63582992553711],["▁operators",-11.635921478271484],["was",-11.635930061340332],["hou",-11.63594913482666],["▁Coach",-11.636075019836426],["irii",-11.636138916015623],["▁ordinary",-11.636186599731444],["Institut",-11.63620662689209],["▁Flash",-11.63633918762207],["0-",-11.636537551879885],["▁flavour",-11.6367769241333],["specific",-11.636906623840332],["▁landing",-11.636930465698242],["▁geo",-11.636935234069824],["▁legend",-11.63698387145996],["vari",-11.63703441619873],["rop",-11.637084007263184],["▁Excel",-11.6370849609375],["▁Flu",-11.637203216552734],["▁intent",-11.637582778930664],["▁Deep",-11.63759422302246],["▁Kor",-11.63763427734375],["▁Philadelphia",-11.637914657592772],["▁rând",-11.63800048828125],["▁USD",-11.638033866882324],["laden",-11.63803482055664],["▁Hin",-11.638047218322754],["hap",-11.638197898864746],["▁thorough",-11.638227462768556],["▁oferit",-11.63826847076416],["kind",-11.63831615447998],["▁Cancer",-11.638428688049316],["apo",-11.638596534729004],["▁valve",-11.63865089416504],["▁encouraging",-11.63884449005127],["▁sûr",-11.638904571533203],["shing",-11.638981819152832],["▁49",-11.639132499694824],["gov",-11.639142990112305],["▁Five",-11.63933277130127],["▁stroke",-11.639344215393066],["▁apă",-11.639398574829102],["▁gambling",-11.639543533325195],["▁nord",-11.63963508605957],["onal",-11.639691352844238],["▁captured",-11.63979721069336],["▁lucruri",-11.64006805419922],["serait",-11.640192985534668],["▁Members",-11.640265464782717],["ital",-11.640275955200195],["▁mounted",-11.640475273132324],["▁opens",-11.640792846679688],["▁Marie",-11.640861511230469],["Tech",-11.640902519226074],["▁wishes",-11.641016006469728],["▁regards",-11.641073226928713],["going",-11.641156196594238],["Opti",-11.641250610351562],["▁femei",-11.641331672668455],["▁Fish",-11.64142894744873],["▁mount",-11.641800880432127],["▁Hunt",-11.641887664794922],["▁probabil",-11.64205265045166],["▁assured",-11.642191886901855],["pho",-11.642230033874512],["▁manufactured",-11.64231300354004],["▁realistic",-11.642437934875488],["ații",-11.642580032348633],["▁Planning",-11.642598152160645],["▁român",-11.642645835876465],["ggy",-11.642669677734377],["▁produces",-11.642696380615234],["▁reminder",-11.64284896850586],["TION",-11.642868041992188],["▁brake",-11.642909049987791],["▁pla",-11.64317226409912],["▁Premium",-11.643270492553713],["▁carb",-11.643310546875],["▁shine",-11.643390655517578],["▁carrier",-11.643492698669434],["▁poverty",-11.64350414276123],["▁effectiveness",-11.6436128616333],["administr",-11.64365577697754],["▁Chamber",-11.643658638000488],["▁suntem",-11.64376163482666],["▁noastră",-11.643855094909668],["▁sofort",-11.643877983093262],["▁moisture",-11.644058227539062],["limb",-11.6441011428833],["entre",-11.644328117370604],["▁SD",-11.644330978393556],["▁BC",-11.644539833068848],["▁selecting",-11.6445951461792],["achieving",-11.644673347473145],["info",-11.644735336303713],["▁membres",-11.644983291625977],["▁shoe",-11.645014762878418],["▁locate",-11.645065307617188],["▁assignment",-11.645085334777832],["lern",-11.645283699035645],["▁defeat",-11.64540672302246],["▁endless",-11.645458221435549],["▁Stunden",-11.645523071289062],["то",-11.64556121826172],["▁mur",-11.645586013793944],["▁wissen",-11.645844459533691],["aime",-11.645915031433104],["1-2",-11.646056175231934],["▁femme",-11.646212577819824],["robe",-11.64646816253662],["▁embrace",-11.64647102355957],["▁baseball",-11.646614074707031],["▁hunting",-11.64663314819336],["betrieb",-11.646790504455566],["▁gardens",-11.647045135498049],["▁risc",-11.647096633911133],["▁Cri",-11.647263526916504],["best",-11.647506713867188],["▁Audio",-11.647621154785156],["▁intens",-11.647659301757812],["▁Round",-11.647744178771973],["▁fireplace",-11.6478271484375],["▁dozen",-11.647912979125977],["▁hospitals",-11.64802360534668],["▁profits",-11.648076057434082],["▁Mail",-11.64811897277832],["obtenir",-11.648191452026367],["▁Ross",-11.648241996765137],["bun",-11.648573875427246],["polar",-11.648688316345217],["▁reflection",-11.648873329162598],["▁fut",-11.648992538452148],["phon",-11.649017333984377],["deck",-11.649094581604004],["renowned",-11.649188041687012],["▁cate",-11.64930820465088],["▁decorative",-11.6494722366333],["ieri",-11.64957332611084],["▁Tap",-11.64958381652832],["▁Dallas",-11.649600982666016],["rik",-11.649665832519531],["▁pied",-11.649727821350098],["rés",-11.649821281433104],["ppy",-11.650137901306152],["▁bitte",-11.650188446044922],["▁cave",-11.650257110595703],["▁rescue",-11.650559425354004],["▁Hilfe",-11.650714874267578],["▁Jason",-11.650786399841309],["▁Nations",-11.650838851928713],["▁profil",-11.650938987731934],["▁Atlantic",-11.651105880737305],["▁rub",-11.651126861572266],["▁collaborative",-11.65113353729248],["étude",-11.651150703430176],["▁Workshop",-11.651389122009276],["nez",-11.651628494262695],["▁chacun",-11.651714324951172],["▁Too",-11.65211296081543],["App",-11.652313232421877],["▁conseil",-11.652399063110352],["▁signals",-11.652474403381348],["▁Dead",-11.65249729156494],["▁Austria",-11.652522087097168],["▁slots",-11.652579307556152],["▁Dies",-11.652623176574709],["raj",-11.652629852294922],["stick",-11.652833938598633],["▁jaw",-11.653030395507812],["▁lounge",-11.653059005737305],["curi",-11.653359413146973],["nem",-11.653456687927246],["▁Cluj",-11.653512954711914],["▁rapide",-11.653584480285645],["▁companion",-11.653716087341309],["▁WE",-11.653879165649414],["▁bord",-11.65389347076416],["ody",-11.654045104980469],["gru",-11.654057502746582],["▁46",-11.654410362243652],["kra",-11.654717445373535],["eller",-11.65477180480957],["naire",-11.65511703491211],["hose",-11.655253410339355],["▁Atlanta",-11.655254364013672],["▁violent",-11.65530776977539],["▁imagination",-11.655352592468262],["▁reward",-11.655389785766602],["▁Korean",-11.655441284179688],["▁branches",-11.65550136566162],["▁GPS",-11.655625343322754],["glo",-11.655633926391602],["▁condo",-11.655705451965332],["▁Investment",-11.655765533447266],["▁involvement",-11.655813217163086],["▁trap",-11.655829429626465],["▁schön",-11.655872344970703],["▁ofera",-11.655933380126951],["▁unterschiedlich",-11.65596866607666],["Net",-11.655987739562988],["▁predict",-11.656113624572754],["identifying",-11.656309127807615],["▁noir",-11.6566162109375],["kos",-11.656816482543944],["poz",-11.656816482543944],["▁11,",-11.65698528289795],["▁fitted",-11.657384872436523],["MU",-11.657469749450684],["TT",-11.657645225524902],["▁vrea",-11.657846450805664],["▁wound",-11.657864570617676],["lac",-11.657971382141112],["▁purchases",-11.658409118652344],["▁Cape",-11.65843677520752],["▁Foto",-11.65853786468506],["▁acres",-11.65865707397461],["▁nec",-11.658677101135254],["▁burning",-11.659050941467283],["conf",-11.659457206726074],["▁browse",-11.659486770629885],["ural",-11.659762382507324],["▁Ah",-11.659841537475586],["▁stellt",-11.65992259979248],["▁ratings",-11.660012245178224],["▁Bowl",-11.660027503967283],["▁grav",-11.660289764404297],["titi",-11.66048526763916],["▁prêt",-11.66075325012207],["▁fallen",-11.660818099975586],["▁nombreuses",-11.660940170288086],["train",-11.660953521728516],["ène",-11.661009788513184],["Aceasta",-11.661091804504396],["▁drill",-11.661421775817873],["▁Exam",-11.661477088928224],["▁Furniture",-11.661651611328123],["eanu",-11.661919593811035],["étant",-11.66230297088623],["sville",-11.662391662597656],["▁swim",-11.662796020507812],["▁routes",-11.662826538085938],["INE",-11.662860870361328],["▁Por",-11.662976264953612],["ither",-11.663168907165527],["▁optim",-11.663180351257324],["▁lua",-11.66331958770752],["▁myth",-11.663491249084473],["▁Bett",-11.6635103225708],["chim",-11.66355037689209],["▁cyber",-11.66355323791504],["▁engineer",-11.663825035095217],["▁exploration",-11.663918495178224],["arranged",-11.663973808288574],["▁aged",-11.66399383544922],["▁beau",-11.664024353027344],["OUT",-11.66402530670166],["▁Minnesota",-11.664031982421877],["tress",-11.66440773010254],["▁Commercial",-11.664509773254396],["▁inspiring",-11.66462516784668],["▁Mare",-11.664725303649902],["apa",-11.66514015197754],["▁ignore",-11.6651611328125],["▁gros",-11.665186882019045],["▁measurement",-11.66531753540039],["ager",-11.665395736694336],["intele",-11.665966987609863],["▁suspension",-11.666180610656738],["▁cultures",-11.666211128234863],["▁Wow",-11.666231155395508],["▁pushing",-11.666363716125488],["▁bands",-11.666438102722168],["nage",-11.66645050048828],["▁Math",-11.666515350341797],["comb",-11.66658878326416],["▁créer",-11.66658878326416],["▁Lewis",-11.666685104370115],["▁VI",-11.66678524017334],["emploi",-11.666791915893556],["▁elections",-11.666890144348145],["▁logic",-11.666982650756836],["▁unlike",-11.667122840881348],["▁Matthew",-11.66743278503418],["▁pă",-11.667486190795898],["oxy",-11.667620658874512],["équipe",-11.667717933654783],["▁worden",-11.668088912963867],["dev",-11.668258666992188],["▁Massachusetts",-11.668691635131836],["▁Return",-11.668695449829102],["▁Friends",-11.66891098022461],["▁movements",-11.66894245147705],["chie",-11.668964385986328],["rak",-11.669017791748049],["▁Fit",-11.66904354095459],["▁copil",-11.669113159179688],["iunii",-11.669188499450684],["▁intensive",-11.669234275817873],["▁rug",-11.669452667236328],["lichkeit",-11.669686317443848],["kov",-11.669724464416504],["▁pense",-11.66978645324707],["pop",-11.66978931427002],["▁closet",-11.669865608215332],["▁prevention",-11.669920921325684],["▁Deb",-11.67025661468506],["▁devant",-11.670430183410645],["▁construit",-11.670440673828123],["▁breaks",-11.67082405090332],["otic",-11.670886993408203],["▁dig",-11.67088794708252],["▁près",-11.670930862426758],["chte",-11.671029090881348],["▁Chat",-11.671029090881348],["wel",-11.671219825744627],["▁edges",-11.671272277832031],["▁keen",-11.671419143676758],["▁infant",-11.671716690063477],["▁Hills",-11.6719388961792],["▁grounds",-11.671969413757324],["▁hab",-11.672039031982422],["▁Mun",-11.67215347290039],["▁references",-11.672215461730955],["▁hearts",-11.672446250915527],["exprim",-11.672487258911133],["▁tratament",-11.672553062438965],["LD",-11.67258358001709],["ssel",-11.67275333404541],["cover",-11.67278289794922],["bridge",-11.672837257385254],["▁Wein",-11.672924995422363],["▁voiture",-11.673035621643066],["▁Gemeinde",-11.67313289642334],["AI",-11.673169136047363],["▁renovation",-11.673264503479004],["bid",-11.673285484313965],["▁Reading",-11.673481941223145],["▁Gor",-11.673490524291992],["fur",-11.673527717590332],["▁Yoga",-11.673544883728027],["▁exclusively",-11.673630714416504],["▁emissions",-11.67385482788086],["ète",-11.673905372619627],["▁glasses",-11.674055099487305],["▁organizat",-11.674135208129885],["▁washing",-11.67415714263916],["▁Audi",-11.67417335510254],["▁Labor",-11.674331665039062],["▁legacy",-11.674381256103516],["▁abstract",-11.674519538879396],["▁knowledgeable",-11.674601554870604],["▁Glo",-11.674795150756836],["▁pregnant",-11.67481803894043],["liter",-11.674851417541504],["▁paintings",-11.67522144317627],["▁tête",-11.675244331359863],["voy",-11.675626754760742],["▁Jacob",-11.675667762756348],["▁dressing",-11.675679206848145],["▁provisions",-11.675768852233888],["bahn",-11.675870895385742],["▁depict",-11.675875663757324],["AW",-11.676068305969238],["▁bleibt",-11.67616367340088],["AND",-11.676292419433594],["▁fünf",-11.676386833190918],["▁hosts",-11.676426887512209],["vas",-11.676708221435549],["DO",-11.67674732208252],["▁max",-11.676753997802734],["▁contributed",-11.676774978637695],["roz",-11.676796913146973],["▁deschis",-11.676800727844238],["itaire",-11.676809310913086],["tube",-11.676959991455078],["▁Beck",-11.676959991455078],["▁curious",-11.677130699157717],["▁waves",-11.677178382873535],["▁regret",-11.677248001098633],["FO",-11.677326202392578],["droit",-11.67734146118164],["rö",-11.677565574645996],["▁Panel",-11.677624702453612],["▁pile",-11.677660942077637],["▁installing",-11.677674293518066],["▁Intr",-11.677797317504885],["nung",-11.677823066711426],["▁Outdoor",-11.677855491638184],["▁generator",-11.67786693572998],["▁zahlreiche",-11.677868843078612],["▁Third",-11.67813491821289],["frac",-11.678180694580078],["ovi",-11.678236961364746],["▁Casa",-11.678374290466309],["▁stomach",-11.678393363952637],["▁Lincoln",-11.67844009399414],["▁Electronic",-11.678584098815918],["coding",-11.67895221710205],["2017",-11.67900276184082],["▁friendship",-11.679238319396973],["ried",-11.679250717163086],["но",-11.679265022277832],["▁tail",-11.67926788330078],["▁petits",-11.679308891296388],["▁réseau",-11.679696083068848],["▁churches",-11.679999351501465],["▁marketplace",-11.680062294006348],["▁Pool",-11.68031883239746],["▁popularity",-11.680455207824709],["▁sprijin",-11.680496215820312],["▁Od",-11.680527687072754],["▁Transfer",-11.68056297302246],["▁fake",-11.680791854858398],["▁9,",-11.681007385253906],["▁weit",-11.681264877319336],["▁relaxed",-11.681415557861328],["pig",-11.68161678314209],["▁Lauren",-11.68166732788086],["gesetzt",-11.681669235229492],["▁Clar",-11.681694984436035],["▁unlikely",-11.68173122406006],["color",-11.681832313537598],["▁spouse",-11.681843757629396],["▁facile",-11.681859970092772],["▁Speed",-11.681872367858888],["KE",-11.682230949401855],["▁PO",-11.68231201171875],["▁Channel",-11.682321548461914],["argent",-11.68235683441162],["▁Making",-11.682430267333984],["▁Coll",-11.68258571624756],["cci",-11.682721138000488],["corresponding",-11.68300724029541],["▁heaven",-11.683160781860352],["ţă",-11.68319320678711],["▁darüber",-11.683236122131348],["acted",-11.683420181274414],["only",-11.683460235595703],["▁slight",-11.683465003967283],["lian",-11.68348503112793],["flă",-11.683510780334473],["▁vulnerable",-11.683530807495115],["▁creator",-11.68356704711914],["▁protecting",-11.68360424041748],["writing",-11.68360710144043],["▁Ter",-11.68387222290039],["▁barb",-11.683987617492676],["▁dată",-11.683995246887209],["▁Screen",-11.684052467346191],["▁BBC",-11.684082984924316],["Col",-11.684206008911133],["fung",-11.684453964233398],["▁dreptul",-11.684494972229004],["derived",-11.68453884124756],["▁designated",-11.684553146362305],["▁interactions",-11.684617042541504],["SG",-11.684621810913086],["▁häufig",-11.684625625610352],["▁Mega",-11.684638023376465],["▁jazz",-11.68466091156006],["lbs",-11.684797286987305],["▁Manual",-11.68484115600586],["pushed",-11.685017585754396],["▁analytics",-11.68523406982422],["▁lawsuit",-11.68533706665039],["▁gray",-11.685364723205566],["shirts",-11.685401916503906],["▁hill",-11.685508728027344],["▁1991",-11.68550968170166],["▁obligations",-11.685568809509276],["▁Dubai",-11.68580436706543],["()",-11.685808181762695],["▁acceptable",-11.685810089111328],["therapist",-11.685877799987791],["inger",-11.6860990524292],["▁territory",-11.686208724975586],["▁sang",-11.6862211227417],["ät",-11.686224937438965],["▁Zukunft",-11.686238288879396],["TU",-11.68657398223877],["▁horizontal",-11.68665599822998],["▁entrepreneurs",-11.686710357666016],["▁Eltern",-11.687017440795898],["▁presentations",-11.687129974365234],["▁confirmation",-11.687173843383787],["▁technological",-11.687432289123535],["▁1989",-11.687530517578123],["EF",-11.687640190124512],["ponent",-11.687663078308104],["NET",-11.687699317932127],["750",-11.687772750854492],["▁desert",-11.687891960144045],["▁contribu",-11.687932968139648],["▁Gun",-11.687944412231444],["▁Juli",-11.688091278076172],["ERS",-11.688261985778809],["▁inceput",-11.688261985778809],["▁answered",-11.688369750976562],["▁basement",-11.688410758972168],["film",-11.688434600830078],["▁taille",-11.688593864440918],["▁survival",-11.688655853271484],["ihnen",-11.68869400024414],["▁Bird",-11.688840866088867],["speed",-11.689336776733398],["▁journalist",-11.68941879272461],["▁Indonesia",-11.689626693725586],["▁15.",-11.689973831176758],["▁19.",-11.690025329589844],["étaient",-11.690114974975586],["▁tennis",-11.69024658203125],["▁aproximativ",-11.69039249420166],["▁Hans",-11.690650939941406],["▁Remove",-11.69067096710205],["▁cats",-11.691022872924805],["▁calories",-11.691052436828612],["▁limitations",-11.69119644165039],["▁subscribe",-11.691198348999023],["▁Dem",-11.691339492797852],["lust",-11.691370010375977],["▁adresa",-11.691394805908203],["▁sais",-11.69140911102295],["...\"",-11.691473960876465],["▁Luft",-11.691485404968262],["DL",-11.691597938537598],["▁estimates",-11.691600799560549],["▁protocol",-11.691603660583496],["▁Namen",-11.691776275634766],["▁grands",-11.691901206970217],["▁voter",-11.691970825195312],["▁vacuum",-11.692075729370115],["▁versch",-11.692103385925291],["▁Democratic",-11.69210720062256],["▁Books",-11.69217014312744],["▁frames",-11.692727088928224],["▁Bee",-11.692864418029783],["▁helfen",-11.692934036254885],["▁dive",-11.692963600158691],["▁physician",-11.693037033081056],["▁powered",-11.69313144683838],["▁zones",-11.693337440490724],["▁regime",-11.69345474243164],["check",-11.693578720092772],["11.",-11.693793296813965],["▁plaisir",-11.693793296813965],["▁physically",-11.693811416625977],["▁Pul",-11.69424533843994],["▁jardin",-11.694294929504396],["▁Nur",-11.694417953491213],["WC",-11.694425582885742],["▁Lock",-11.694506645202637],["▁économique",-11.694530487060549],["user",-11.694536209106444],["▁commit",-11.694731712341309],["▁oldest",-11.694764137268066],["▁fulfill",-11.694780349731444],["▁nervous",-11.69482135772705],["▁SH",-11.69501495361328],["SK",-11.695150375366213],["▁plein",-11.69529151916504],["show",-11.695354461669922],["▁disability",-11.695356369018556],["papier",-11.69544506072998],["▁Corp",-11.695611000061035],["ători",-11.695676803588867],["nţă",-11.695813179016112],["▁overseas",-11.696009635925291],["▁struck",-11.69603157043457],["astic",-11.69607162475586],["▁advised",-11.696088790893556],["BE",-11.696161270141602],["▁UV",-11.696218490600586],["patient",-11.69626235961914],["▁texte",-11.696344375610352],["▁timely",-11.696444511413574],["used",-11.696471214294434],["▁occasionally",-11.696524620056152],["▁entries",-11.696550369262695],["underlying",-11.6967191696167],["01.",-11.696748733520508],["▁automated",-11.696791648864746],["yes",-11.696828842163086],["▁Staff",-11.697057723999023],["▁Einzel",-11.697546005249023],["quit",-11.697687149047852],["▁Cela",-11.697951316833496],["▁snap",-11.698298454284668],["▁followers",-11.698330879211426],["CN",-11.69870948791504],["▁Cooper",-11.698892593383787],["ô",-11.69892120361328],["▁memorable",-11.698965072631836],["▁jur",-11.698996543884276],["▁ajutorul",-11.69905948638916],["▁Enter",-11.6991548538208],["Often",-11.699294090270996],["▁dintr",-11.699341773986816],["-30",-11.699419975280762],["ESS",-11.699454307556152],["▁weird",-11.699462890625],["▁Animal",-11.699706077575684],["▁complement",-11.699719429016112],["▁Bot",-11.699756622314451],["▁darf",-11.699764251708984],["yed",-11.69980812072754],["▁Mul",-11.699872016906738],["lick",-11.700080871582031],["▁Cambridge",-11.70021629333496],["adore",-11.70040798187256],["▁Dutch",-11.700420379638672],["▁Castle",-11.700431823730469],["igi",-11.700563430786133],["▁enemy",-11.70071029663086],["accompanied",-11.700725555419922],["▁teren",-11.701102256774902],["▁ET",-11.701498985290527],["ffle",-11.701557159423828],["-15",-11.701651573181152],["▁Geo",-11.701680183410645],["▁attractions",-11.701730728149414],["iker",-11.70185661315918],["▁bă",-11.701990127563477],["▁heal",-11.701995849609377],["weisen",-11.702144622802734],["▁spectrum",-11.702186584472656],["meld",-11.702394485473633],["▁eveniment",-11.70247745513916],["arra",-11.702478408813477],["rete",-11.70250129699707],["▁Had",-11.70250415802002],["looking",-11.702692031860352],["isierung",-11.702805519104004],["▁moyen",-11.703129768371582],["▁gesamte",-11.703202247619627],["▁destroy",-11.703407287597656],["125",-11.703518867492676],["▁suivant",-11.703913688659668],["▁declared",-11.703925132751465],["▁Urban",-11.704131126403809],["▁16.",-11.704168319702148],["▁Beg",-11.704168319702148],["▁canal",-11.704225540161133],["▁Pres",-11.70431137084961],["▁geeignet",-11.704339981079102],["▁strat",-11.704365730285645],["UB",-11.704395294189451],["▁Alexander",-11.704424858093262],["cycle",-11.704666137695312],["▁Var",-11.70480251312256],["▁domin",-11.704805374145508],["▁lasting",-11.70493984222412],["terio",-11.705262184143066],["▁Battle",-11.705339431762695],["▁publications",-11.705647468566896],["▁implica",-11.705886840820312],["▁NA",-11.705963134765623],["▁stocks",-11.706036567687988],["Plat",-11.70611572265625],["▁excitement",-11.706149101257324],["▁Muslim",-11.706524848937988],["▁Mari",-11.706530570983888],["▁Ul",-11.706647872924805],["nächst",-11.706757545471191],["▁trait",-11.706833839416504],["▁(3)",-11.706852912902832],["▁Attorney",-11.706894874572754],["▁Malaysia",-11.70689582824707],["▁slab",-11.706960678100586],["▁dam",-11.707113265991213],["▁Bir",-11.707226753234863],["▁sing",-11.70738410949707],["▁Culture",-11.7073974609375],["UD",-11.707417488098145],["▁Mes",-11.707443237304688],["ități",-11.707615852355955],["▁possess",-11.708173751831056],["enabling",-11.70820426940918],["▁settled",-11.708335876464844],["▁sagen",-11.708492279052734],["▁erfolgt",-11.70856475830078],["dog",-11.708600997924805],["ndu",-11.708732604980469],["ității",-11.708745002746582],["▁Islam",-11.708930015563965],["▁catalog",-11.708931922912598],["▁simt",-11.709102630615234],["tische",-11.709150314331056],["▁Mach",-11.70933437347412],["▁EP",-11.709359169006348],["▁Certified",-11.709386825561523],["▁Resources",-11.70945930480957],["▁Past",-11.709607124328612],["▁Termin",-11.709755897521973],["▁lightweight",-11.709755897521973],["▁championship",-11.70994758605957],["gebiet",-11.710122108459473],["▁jurisdiction",-11.710135459899902],["▁euros",-11.710169792175291],["▁Familien",-11.710554122924805],["▁GT",-11.71067714691162],["▁dvs",-11.71081256866455],["▁nouveaux",-11.710838317871094],["▁chill",-11.71091651916504],["▁ridicat",-11.710920333862305],["his",-11.711079597473145],["▁Indi",-11.711159706115724],["▁arrested",-11.71116828918457],["ităţii",-11.711170196533203],["onul",-11.711274147033691],["appar",-11.711296081542969],["▁Bachelor",-11.711297988891602],["▁erfolgreich",-11.711426734924316],["▁versatile",-11.71163558959961],["▁nécessaire",-11.711761474609377],["▁facial",-11.712160110473633],["▁Bull",-11.71222686767578],["Comm",-11.712237358093262],["atte",-11.712307929992676],["hom",-11.7123384475708],["start",-11.712576866149902],["▁roughly",-11.712936401367188],["▁bay",-11.712984085083008],["▁american",-11.712986946105955],["▁Wisconsin",-11.713135719299316],["▁Clinton",-11.713142395019531],["appareil",-11.713153839111328],["▁liberal",-11.713455200195312],["▁dau",-11.713519096374512],["ech",-11.71352195739746],["2014",-11.713624000549316],["▁lip",-11.713645935058594],["▁maintenant",-11.713762283325195],["▁Sil",-11.713805198669434],["rben",-11.713891983032228],["▁contents",-11.713980674743652],["▁magnetic",-11.714111328125],["▁terre",-11.714151382446287],["▁Rights",-11.714475631713867],["lose",-11.714570045471191],["▁crown",-11.71468448638916],["▁oils",-11.7147216796875],["▁entertaining",-11.714841842651367],["▁Option",-11.714848518371582],["▁Previous",-11.714916229248049],["▁vrai",-11.714930534362791],["▁Auswahl",-11.71505641937256],["▁horses",-11.715106010437012],["▁Author",-11.71533489227295],["▁Writing",-11.715461730957031],["▁travelling",-11.71552276611328],["▁350",-11.715567588806152],["daten",-11.71560287475586],["zan",-11.715765953063965],["▁sweat",-11.715924263000488],["▁Junior",-11.715970993041992],["markt",-11.71609878540039],["after",-11.716105461120604],["▁admitted",-11.716262817382812],["▁1950",-11.716347694396973],["▁Sche",-11.71648120880127],["▁dorit",-11.716818809509276],["▁transferred",-11.716958045959473],["utilise",-11.71719455718994],["sitz",-11.71730136871338],["gio",-11.717320442199709],["▁bisher",-11.717473983764648],["RD",-11.717491149902344],["▁Wales",-11.717747688293455],["▁smoking",-11.717904090881348],["dire",-11.717939376831056],["▁seating",-11.717979431152344],["▁constat",-11.718056678771973],["▁Hub",-11.718324661254885],["▁sieht",-11.718345642089844],["▁prospect",-11.718378067016602],["▁RO",-11.718413352966309],["▁Wars",-11.718423843383787],["eek",-11.718496322631836],["▁Bring",-11.718646049499512],["▁bleiben",-11.71869659423828],["arri",-11.718826293945312],["inal",-11.718904495239258],["▁Maryland",-11.718932151794434],["▁Process",-11.719145774841309],["They",-11.719154357910156],["▁Oxford",-11.719176292419434],["▁neat",-11.719330787658691],["▁cinema",-11.719597816467283],["▁Ist",-11.71962070465088],["▁vegan",-11.719682693481444],["wall",-11.719708442687988],["▁motive",-11.72010612487793],["▁mature",-11.720544815063477],["▁Dragon",-11.720653533935549],["▁google",-11.720677375793455],["blick",-11.72110652923584],["▁Cod",-11.721220970153809],["▁suffi",-11.721319198608398],["▁terrorist",-11.721478462219238],["Posted",-11.721484184265137],["▁Schi",-11.72157096862793],["▁Marc",-11.721597671508787],["▁operates",-11.721661567687988],["gress",-11.721805572509766],["has",-11.721899032592772],["sole",-11.722108840942385],["▁Buck",-11.722122192382812],["impl",-11.722160339355469],["▁Ron",-11.722172737121582],["▁handled",-11.722346305847168],["▁Apr",-11.722347259521484],["▁Storage",-11.722467422485352],["▁temp",-11.722512245178224],["▁differently",-11.722614288330078],["▁wherever",-11.722670555114746],["matched",-11.722695350646973],["rios",-11.72276496887207],["▁surprising",-11.722846031188965],["teilen",-11.722867965698242],["▁difficulties",-11.72294807434082],["tab",-11.723064422607422],["▁Leader",-11.72312831878662],["implementing",-11.72337245941162],["▁workforce",-11.723384857177734],["▁bereit",-11.723503112792969],["vig",-11.72352123260498],["▁LOVE",-11.723580360412598],["▁instances",-11.723954200744627],["▁frumos",-11.723960876464844],["▁Java",-11.723974227905272],["▁arrest",-11.723977088928224],["▁apparent",-11.72415256500244],["▁hence",-11.724200248718262],["▁entwickelt",-11.72437572479248],["▁Fra",-11.72447109222412],["▁prend",-11.724486351013184],["ließ",-11.724522590637209],["▁drawer",-11.724671363830566],["ARD",-11.724926948547363],["▁caring",-11.72499942779541],["▁wollte",-11.725024223327637],["▁vielleicht",-11.72511100769043],["▁iconic",-11.725324630737305],["äch",-11.72552490234375],["abel",-11.72563934326172],["▁génér",-11.72570514678955],["ault",-11.725727081298828],["▁alternatives",-11.725909233093262],["think",-11.726025581359863],["ро",-11.726055145263672],["whereas",-11.72605800628662],["erei",-11.726366996765137],["▁Eagle",-11.726766586303713],["situé",-11.72704792022705],["▁laboratory",-11.727157592773438],["▁Nutzung",-11.727256774902344],["▁Bathroom",-11.72728157043457],["▁loaded",-11.727293968200684],["niste",-11.727408409118652],["som",-11.727429389953612],["▁aucun",-11.727666854858398],["gebracht",-11.727676391601562],["▁tomb",-11.727771759033203],["▁Ty",-11.727785110473633],["▁afaceri",-11.727971076965332],["tex",-11.72803783416748],["ality",-11.728147506713867],["▁identification",-11.728150367736816],["▁cultiv",-11.72825527191162],["Not",-11.728326797485352],["▁acestor",-11.72846508026123],["▁PhD",-11.728466033935549],["nell",-11.728470802307127],["▁dial",-11.728594779968262],["chro",-11.728673934936523],["▁specifications",-11.728682518005373],["anii",-11.72877025604248],["▁cloth",-11.728836059570312],["▁highway",-11.728914260864258],["▁Vitamin",-11.729118347167969],["▁indication",-11.72934913635254],["80%",-11.72959041595459],["▁Lion",-11.729681015014648],["▁10,",-11.729693412780762],["▁Werk",-11.72974967956543],["▁combin",-11.729803085327148],["▁releases",-11.7298583984375],["LL",-11.730006217956545],["ktor",-11.730186462402344],["ufgrund",-11.73018741607666],["calc",-11.73034381866455],["▁accomplished",-11.730606079101562],["▁los",-11.730619430541992],["▁distant",-11.730688095092772],["▁secteur",-11.73068904876709],["logue",-11.73078155517578],["▁betting",-11.730792999267578],["elf",-11.73118019104004],["puteti",-11.73123550415039],["▁Moment",-11.731236457824709],["▁scoring",-11.731548309326172],["▁freuen",-11.731572151184082],["▁fastest",-11.731873512268066],["▁directors",-11.732080459594728],["▁fame",-11.732234954833984],["▁complaint",-11.732239723205566],["▁Ep",-11.732314109802246],["▁delicate",-11.732329368591309],["annonce",-11.73240852355957],["ext",-11.732454299926758],["▁quit",-11.732473373413086],["▁Cop",-11.73253345489502],["prop",-11.732565879821776],["365",-11.732742309570312],["▁Say",-11.732879638671877],["▁internationale",-11.733064651489258],["cott",-11.733213424682615],["▁Whatever",-11.733261108398438],["▁admir",-11.733261108398438],["▁bucur",-11.733549118041992],["▁entity",-11.733779907226562],["▁dancing",-11.733837127685549],["▁printre",-11.733892440795898],["▁meditation",-11.734396934509276],["▁avis",-11.734416961669922],["▁1988",-11.73447036743164],["10.",-11.734506607055664],["▁worker",-11.734638214111328],["▁$100",-11.734784126281738],["▁contrôle",-11.7349853515625],["▁insist",-11.734997749328612],["ements",-11.73505973815918],["izate",-11.735163688659668],["▁tied",-11.735332489013672],["▁correspond",-11.735396385192873],["▁apartments",-11.735547065734863],["▁2009.",-11.735599517822266],["▁tiles",-11.735624313354492],["▁boots",-11.735639572143556],["▁laundry",-11.735673904418944],["▁Coffee",-11.735674858093262],["▁CV",-11.735727310180664],["▁composed",-11.736035346984863],["atom",-11.73622989654541],["▁shore",-11.736270904541016],["▁marijuana",-11.736312866210938],["plic",-11.73648452758789],["▁Zahl",-11.736649513244627],["depth",-11.73682689666748],["▁Egypt",-11.736854553222656],["▁NFL",-11.736906051635742],["▁12,",-11.73692226409912],["▁pollution",-11.736964225769045],["▁Vergleich",-11.73704719543457],["û",-11.737109184265137],["▁nurse",-11.737153053283691],["▁Susan",-11.737173080444336],["▁verify",-11.737393379211426],["▁kon",-11.737504959106444],["▁ulei",-11.7376127243042],["▁Sept",-11.737699508666992],["▁Location",-11.737908363342283],["▁frozen",-11.737991333007812],["good",-11.73802661895752],["▁cine",-11.738066673278809],["forming",-11.738181114196776],["▁Near",-11.738391876220703],["▁Tab",-11.738545417785645],["▁Alexandr",-11.738600730895996],["ст",-11.73863697052002],["CK",-11.738656044006348],["▁loads",-11.738948822021484],["▁disorders",-11.738957405090332],["hip",-11.739596366882324],["▁blessing",-11.73987102508545],["▁vechi",-11.73997688293457],["▁Bookmark",-11.740296363830566],["SON",-11.74036979675293],["books",-11.740428924560549],["▁tropical",-11.740438461303713],["▁Garten",-11.74044704437256],["ôt",-11.740760803222656],["tures",-11.740827560424805],["▁obligation",-11.741010665893556],["▁admin",-11.741011619567873],["▁sélection",-11.741106986999512],["disp",-11.741172790527344],["▁Anyone",-11.741225242614746],["keeper",-11.74138355255127],["▁konnten",-11.741521835327148],["▁existe",-11.741615295410156],["▁Rund",-11.741798400878906],["▁retailers",-11.74184799194336],["folg",-11.741948127746582],["▁urmare",-11.742019653320312],["▁Liebe",-11.742321014404297],["▁actors",-11.742422103881836],["▁Druck",-11.742618560791016],["lien",-11.742752075195312],["sian",-11.742847442626951],["▁partid",-11.74304485321045],["▁loin",-11.743114471435549],["AZ",-11.743119239807127],["oasă",-11.743501663208008],["▁inclusiv",-11.743656158447266],["TD",-11.743680953979492],["▁anului",-11.743766784667969],["poc",-11.743844985961914],["▁musique",-11.743972778320312],["▁Hart",-11.74399757385254],["Sh",-11.74428367614746],["html",-11.744290351867676],["▁serial",-11.744318008422852],["țele",-11.744369506835938],["inning",-11.744544982910156],["▁Bureau",-11.744555473327637],["▁rush",-11.744626998901367],["▁deosebit",-11.744637489318848],["▁Wort",-11.744648933410645],["▁Thailand",-11.744688987731934],["▁Language",-11.745193481445312],["▁Governor",-11.745213508605955],["▁Later",-11.74525260925293],["rilor",-11.745282173156738],["▁activités",-11.745372772216797],["schaffen",-11.745598793029783],["▁harvest",-11.74567985534668],["▁municipal",-11.745783805847168],["einander",-11.74600601196289],["▁fingers",-11.746383666992188],["▁sculpture",-11.74638843536377],["▁Bien",-11.746390342712402],["▁departments",-11.746562957763672],["▁période",-11.746746063232422],["▁jeune",-11.746960639953612],["▁governments",-11.74710750579834],["uter",-11.747179985046388],["Aceste",-11.747220039367676],["▁Deal",-11.747243881225586],["▁Equipment",-11.74726390838623],["nous",-11.747300148010254],["▁gate",-11.747315406799316],["▁meta",-11.747447967529297],["▁stiu",-11.747474670410156],["fold",-11.747486114501951],["▁seule",-11.747523307800291],["▁varied",-11.747541427612305],["hit",-11.747635841369627],["▁DIY",-11.74768352508545],["▁lemn",-11.747685432434082],["OB",-11.747865676879885],["▁colorful",-11.748095512390137],["▁câ",-11.74826431274414],["▁semester",-11.74830150604248],["▁dealer",-11.748575210571287],["nett",-11.748788833618164],["▁shortly",-11.74893283843994],["▁Driver",-11.748983383178713],["culture",-11.749052047729492],["▁permitted",-11.749072074890137],["▁sorts",-11.749432563781738],["▁crop",-11.74999713897705],["▁valoare",-11.75046157836914],["▁analog",-11.750576972961426],["▁excuse",-11.750588417053224],["▁modèle",-11.750657081604004],["When",-11.75068473815918],["▁march",-11.750744819641112],["haz",-11.750978469848633],["▁minimize",-11.75099277496338],["traction",-11.751028060913086],["▁caracter",-11.752382278442385],["▁modules",-11.7523832321167],["clu",-11.75244426727295],["ţional",-11.752482414245604],["▁breach",-11.752562522888184],["▁priced",-11.752614974975586],["▁attorneys",-11.752644538879396],["▁implant",-11.752645492553713],["▁ANY",-11.752655029296877],["dition",-11.752707481384276],["▁trials",-11.752838134765623],["▁Nas",-11.75293254852295],["Pre",-11.752970695495604],["lorsque",-11.752979278564451],["plin",-11.753050804138184],["Er",-11.753056526184082],["▁Dom",-11.75306797027588],["▁tire",-11.75319004058838],["sili",-11.753233909606934],["▁coins",-11.753350257873535],["▁rend",-11.753470420837402],["▁reliability",-11.753503799438477],["▁Analysis",-11.75350856781006],["▁trails",-11.753692626953123],["trägt",-11.753762245178224],["▁Kansas",-11.753908157348633],["▁responsive",-11.75390911102295],["▁disappear",-11.753988265991213],["▁stakeholders",-11.754022598266602],["▁aplica",-11.754164695739746],["▁imi",-11.754180908203123],["▁Laura",-11.754369735717772],["▁Terms",-11.75440788269043],["450",-11.754460334777832],["▁voltage",-11.754483222961426],["▁Gel",-11.754544258117676],["▁qualities",-11.754549026489258],["▁qualifi",-11.754603385925291],["▁Mé",-11.754735946655272],["bereit",-11.75482940673828],["gleich",-11.754875183105469],["▁voting",-11.754961013793944],["▁trademark",-11.755128860473633],["▁2.5",-11.75515079498291],["ND",-11.755438804626465],["▁Kelly",-11.755470275878906],["▁weiteren",-11.755559921264648],["▁filters",-11.75562572479248],["▁coût",-11.75562858581543],["jur",-11.755765914916992],["acre",-11.755804061889648],["▁retired",-11.756022453308104],["▁Engine",-11.756205558776855],["▁président",-11.756264686584473],["ajul",-11.756307601928713],["▁GA",-11.756425857543944],["rät",-11.75666332244873],["▁instructor",-11.756669998168944],["▁Allen",-11.75668716430664],["▁Delhi",-11.756771087646484],["▁cure",-11.756844520568848],["seite",-11.756898880004885],["coming",-11.756914138793944],["▁mixing",-11.756963729858398],["▁Kno",-11.757041931152344],["▁Sure",-11.757079124450684],["▁hired",-11.757102012634276],["▁participated",-11.757196426391602],["Count",-11.757320404052734],["treffen",-11.75735569000244],["▁54",-11.75735855102539],["▁rings",-11.75735855102539],["▁Thor",-11.757359504699709],["éro",-11.75744915008545],["▁buttons",-11.757488250732422],["▁47",-11.757539749145508],["▁Tel",-11.757694244384766],["▁suport",-11.757776260375977],["▁rhythm",-11.75782585144043],["▁Theater",-11.758113861083984],["▁informatii",-11.758121490478516],["hält",-11.758201599121094],["▁ouvert",-11.758238792419434],["fewer",-11.75828742980957],["▁alumni",-11.758466720581056],["▁valley",-11.758508682250977],["tial",-11.75860595703125],["***",-11.758782386779783],["kri",-11.75905704498291],["▁accidents",-11.759113311767578],["▁barrel",-11.759170532226562],["mobil",-11.759310722351074],["etti",-11.759437561035156],["▁immigration",-11.759515762329102],["▁poveste",-11.759528160095217],["hren",-11.759669303894045],["hydr",-11.759719848632812],["▁tweet",-11.75974464416504],["▁zip",-11.759872436523438],["▁Bonus",-11.760189056396484],["ordnung",-11.760287284851074],["liber",-11.76046085357666],["▁Navy",-11.760591506958008],["▁agreements",-11.760612487792969],["▁detection",-11.7607421875],["DF",-11.760762214660645],["hur",-11.760774612426758],["0.00",-11.760798454284668],["▁07",-11.760866165161133],["etta",-11.760884284973145],["▁13,",-11.760887145996094],["rolled",-11.76097011566162],["▁injection",-11.76100254058838],["mig",-11.76101779937744],["wach",-11.761107444763184],["▁choisir",-11.761515617370604],["▁professionnels",-11.76159954071045],["▁Tower",-11.76169490814209],["▁neighbor",-11.76170539855957],["deutschen",-11.76187801361084],["▁luxurious",-11.76201057434082],["▁walks",-11.762033462524414],["reti",-11.762046813964844],["▁Pad",-11.762085914611816],["wise",-11.76229763031006],["▁exhaust",-11.762307167053224],["▁demonstration",-11.762582778930664],["▁agricultural",-11.762667655944824],["Upon",-11.762885093688965],["▁Blu",-11.76292610168457],["atorul",-11.762967109680176],["amour",-11.762984275817873],["issant",-11.763004302978516],["▁delighted",-11.763031959533691],["rita",-11.763113021850586],["requiring",-11.763195037841797],["ivity",-11.763216972351074],["▁Unser",-11.763306617736816],["FP",-11.763379096984863],["fait",-11.76353359222412],["dite",-11.763562202453612],["kul",-11.763716697692873],["arth",-11.76376724243164],["▁Ker",-11.763815879821776],["torilor",-11.763816833496094],["stage",-11.763866424560549],["▁HTML",-11.76398754119873],["▁Wheel",-11.764005661010742],["▁quelque",-11.76414680480957],["▁Ou",-11.764196395874023],["▁considerable",-11.764277458190918],["▁Sco",-11.76458740234375],["▁donations",-11.76481819152832],["dessen",-11.765002250671388],["▁pourquoi",-11.765039443969728],["▁Bow",-11.765189170837402],["▁Dupa",-11.76522445678711],["ska",-11.765707015991213],["hot",-11.765732765197754],["▁drove",-11.765849113464355],["▁oppos",-11.766018867492676],["▁hiking",-11.766035079956056],["▁Boot",-11.76608180999756],["One",-11.766087532043455],["▁guvern",-11.766094207763672],["▁15,",-11.766400337219238],["scheid",-11.766437530517578],["▁Miet",-11.76645851135254],["▁Technical",-11.766767501831056],["▁Dal",-11.7669038772583],["▁Metro",-11.766966819763184],["▁Baker",-11.767215728759766],["▁trece",-11.767252922058104],["tained",-11.76730251312256],["block",-11.76738452911377],["▁wander",-11.767401695251465],["▁penalty",-11.76742172241211],["▁shipped",-11.76750946044922],["▁30%",-11.767518043518066],["group",-11.767541885375977],["▁brothers",-11.767701148986816],["▁comanda",-11.767777442932127],["▁retreat",-11.767789840698242],["▁Movie",-11.767802238464355],["PU",-11.76787281036377],["▁Jun",-11.767885208129885],["▁$6",-11.767969131469728],["▁Fal",-11.768054962158203],["▁Palestinian",-11.768075942993164],["▁soccer",-11.768217086791992],["▁Autor",-11.768254280090332],["▁chamber",-11.768266677856444],["nement",-11.768463134765623],["▁offense",-11.768610954284668],["▁gig",-11.768631935119627],["▁abandon",-11.768691062927246],["▁Kraft",-11.768783569335938],["▁Medicare",-11.768784523010254],["▁soap",-11.768835067749023],["▁Fur",-11.768990516662598],["▁conditioning",-11.769103050231934],["rained",-11.769132614135742],["▁puts",-11.769134521484377],["▁cod",-11.76930046081543],["lassen",-11.76941967010498],["FL",-11.769600868225098],["▁komplett",-11.769664764404297],["▁entscheiden",-11.769665718078612],["▁Hour",-11.769691467285156],["?!",-11.77004051208496],["Stream",-11.770145416259766],["▁Grad",-11.770209312438965],["▁gently",-11.770231246948242],["▁poetry",-11.770429611206056],["▁secured",-11.770438194274902],["oph",-11.770466804504396],["hop",-11.77056121826172],["handel",-11.770634651184082],["▁besoins",-11.770658493041992],["got",-11.770824432373049],["▁Chrome",-11.77088737487793],["ILL",-11.770930290222168],["▁Schritt",-11.771014213562012],["▁spell",-11.771063804626465],["▁grinding",-11.771334648132324],["▁ramp",-11.77144718170166],["▁mama",-11.7716064453125],["▁bottles",-11.77180290222168],["▁canvas",-11.771906852722168],["▁ecosystem",-11.77194595336914],["aţii",-11.771967887878418],["cellular",-11.772085189819336],["▁Spin",-11.772164344787598],["▁Discover",-11.772217750549316],["-17",-11.77232265472412],["▁feeding",-11.77246379852295],["▁stops",-11.7725191116333],["▁haute",-11.772552490234377],["▁Entscheidung",-11.7725830078125],["▁semble",-11.772590637207031],["▁acele",-11.772857666015623],["▁Walk",-11.773154258728027],["▁joke",-11.773180961608888],["▁Fed",-11.77329444885254],["climat",-11.773306846618652],["▁Lot",-11.773460388183594],["runner",-11.773551940917969],["▁flip",-11.773786544799805],["▁werde",-11.773818016052246],["▁Deck",-11.77417278289795],["bala",-11.774296760559082],["▁sacrifice",-11.774375915527344],["cid",-11.774388313293455],["him",-11.774569511413574],["zahlen",-11.774587631225586],["▁heater",-11.774596214294434],["formed",-11.774619102478027],["plus",-11.77471160888672],["▁util",-11.774742126464844],["rama",-11.775019645690918],["(4)",-11.7750244140625],["▁knife",-11.775111198425291],["▁traditions",-11.77520751953125],["▁dip",-11.775357246398926],["kill",-11.775405883789062],["▁Rich",-11.775418281555176],["▁DI",-11.775555610656738],["▁containers",-11.775677680969238],["▁locuri",-11.775728225708008],["▁continent",-11.775797843933104],["teilung",-11.776005744934082],["▁vreme",-11.776028633117676],["organisation",-11.776126861572266],["serie",-11.776135444641112],["▁Diamond",-11.776204109191896],["magazin",-11.77627944946289],["▁poster",-11.776455879211426],["▁passenger",-11.7765474319458],["▁soldiers",-11.776552200317385],["▁urgent",-11.776616096496582],["▁Lip",-11.77680778503418],["▁aşa",-11.776972770690918],["▁BO",-11.777024269104004],["▁somebody",-11.777076721191406],["▁silence",-11.777132034301758],["cop",-11.77735996246338],["▁Burn",-11.77749252319336],["▁stopping",-11.777544021606444],["▁essence",-11.777568817138672],["▁hitting",-11.777762413024902],["▁producers",-11.777801513671877],["▁fibre",-11.777894020080566],["▁seasonal",-11.777960777282717],["▁tara",-11.778096199035645],["▁Jose",-11.778099060058594],["▁Better",-11.77825927734375],["▁steep",-11.778295516967772],["Alors",-11.778353691101074],["▁collecting",-11.778507232666016],["vre",-11.778635025024414],["▁disabled",-11.77863883972168],["▁voters",-11.778679847717283],["consuming",-11.779092788696287],["deemed",-11.779115676879885],["éra",-11.779227256774902],["opération",-11.779273986816406],["▁roller",-11.779305458068848],["Rather",-11.779321670532228],["▁leider",-11.779370307922363],["▁IV",-11.779434204101562],["▁erreichen",-11.779473304748535],["▁charging",-11.779657363891602],["tions",-11.77973747253418],["tiques",-11.779861450195312],["▁formats",-11.779876708984377],["▁painful",-11.78000545501709],["▁eager",-11.780061721801758],["generation",-11.780137062072754],["anna",-11.780235290527344],["▁races",-11.780323028564451],["force",-11.780357360839844],["▁ferm",-11.780522346496582],["▁breathing",-11.78061866760254],["▁offen",-11.780648231506348],["▁minds",-11.780805587768556],["▁musste",-11.780832290649414],["▁Vision",-11.780888557434082],["▁Installation",-11.780988693237305],["▁hesitate",-11.781002044677734],["▁somit",-11.781023979187012],["hôtel",-11.781044006347656],["cab",-11.781235694885254],["-16",-11.781312942504885],["▁Visual",-11.781418800354004],["intérêt",-11.781524658203123],["▁apel",-11.781831741333008],["therapy",-11.782089233398438],["volt",-11.78225040435791],["▁Rou",-11.78243923187256],["▁efficace",-11.782464027404783],["▁architectural",-11.782605171203612],["▁privilege",-11.782670974731444],["▁treating",-11.782711029052734],["▁Tam",-11.782722473144531],["tsch",-11.782744407653809],["building",-11.782750129699709],["▁associations",-11.782929420471191],["▁Consumer",-11.783424377441406],["▁Lim",-11.783496856689451],["newest",-11.7835054397583],["▁față",-11.78367519378662],["▁ships",-11.783732414245604],["lev",-11.78373908996582],["raft",-11.783817291259766],["▁variations",-11.783845901489258],["▁noua",-11.78386402130127],["▁Cab",-11.784063339233398],["1.2",-11.78409481048584],["▁ocazi",-11.784347534179688],["▁recommendation",-11.784449577331545],["titled",-11.78445053100586],["▁invoice",-11.78459644317627],["▁noastra",-11.784647941589355],["kur",-11.784700393676758],["issent",-11.78475856781006],["base",-11.784778594970703],["hä",-11.7848482131958],["888",-11.784914016723633],["▁declar",-11.784941673278809],["▁Football",-11.7850341796875],["▁Indeed",-11.785293579101562],["▁weapon",-11.785333633422852],["▁destroyed",-11.785457611083984],["▁enormous",-11.785594940185549],["▁blanket",-11.7857084274292],["▁aktiv",-11.785759925842283],["raw",-11.785791397094728],["▁computing",-11.785823822021484],["6)",-11.785955429077148],["▁Dam",-11.786152839660645],["▁confort",-11.786174774169922],["▁Gla",-11.786198616027832],["hardly",-11.786242485046388],["▁annually",-11.786269187927246],["▁destinations",-11.786401748657228],["▁guilty",-11.786404609680176],["▁scholarship",-11.786439895629885],["▁harmful",-11.786453247070312],["▁2-3",-11.786616325378418],["▁Race",-11.786638259887695],["▁hypo",-11.78671646118164],["▁shorter",-11.786733627319336],["quest",-11.78675651550293],["uze",-11.786812782287598],["izi",-11.787005424499512],["OO",-11.787095069885254],["▁Schutz",-11.787097930908203],["▁Teilnehmer",-11.787185668945312],["▁profiles",-11.787199020385742],["▁sustainability",-11.78747272491455],["▁emb",-11.787489891052246],["▁Augen",-11.787516593933104],["▁outdoors",-11.787542343139648],["▁Individual",-11.787548065185549],["▁pou",-11.78757095336914],["▁Together",-11.787575721740724],["HT",-11.787674903869627],["suited",-11.787755012512209],["▁tro",-11.787782669067385],["▁Strom",-11.787805557250977],["▁achievement",-11.78799819946289],["▁Range",-11.78815746307373],["tory",-11.78817081451416],["▁distribute",-11.788250923156738],["▁letzte",-11.78827667236328],["incorporated",-11.788287162780762],["▁Kir",-11.788325309753418],["ruf",-11.78839111328125],["▁disappointed",-11.788543701171877],["▁referral",-11.788602828979492],["flam",-11.788687705993652],["▁excessive",-11.7886962890625],["▁rapidement",-11.788743019104004],["▁Rio",-11.78875732421875],["aţia",-11.788951873779297],["▁meuble",-11.78912353515625],["▁2008.",-11.789135932922363],["▁Gall",-11.78915023803711],["▁française",-11.789369583129885],["▁ladies",-11.789695739746094],["ailed",-11.789746284484863],["El",-11.789834976196287],["▁wines",-11.789868354797363],["▁beispielsweise",-11.789876937866213],["▁gamme",-11.790193557739258],["▁guided",-11.79028034210205],["▁plin",-11.790339469909668],["Î",-11.790390968322754],["▁True",-11.790498733520508],["▁Temple",-11.790507316589355],["▁Pic",-11.790520668029783],["permalink",-11.790547370910645],["▁vedea",-11.790656089782717],["▁rank",-11.790922164916992],["▁Grill",-11.791025161743164],["clin",-11.791070938110352],["▁Hab",-11.791089057922363],["▁odds",-11.791125297546388],["▁anytime",-11.791146278381348],["▁Thanksgiving",-11.791265487670898],["guard",-11.791300773620604],["▁essays",-11.791389465332031],["▁PE",-11.79139518737793],["▁Rechts",-11.791494369506836],["mals",-11.791751861572266],["achi",-11.791762351989746],["▁Anthony",-11.791765213012695],["▁réponse",-11.792036056518556],["standing",-11.79227352142334],["▁Mol",-11.79242706298828],["▁Canon",-11.792474746704102],["▁silk",-11.792515754699709],["▁pourrait",-11.79278564453125],["▁raport",-11.79280948638916],["▁Woche",-11.792889595031738],["fallen",-11.79293155670166],["sting",-11.79310131072998],["▁circulation",-11.793102264404297],["▁skirt",-11.7931547164917],["▁Title",-11.793187141418455],["▁17.",-11.79331111907959],["▁Touch",-11.793486595153809],["▁utilizat",-11.79352855682373],["▁Organisation",-11.793569564819336],["▁mereu",-11.793848991394045],["▁oxygen",-11.793953895568848],["lique",-11.793985366821287],["▁consume",-11.794100761413574],["▁Barb",-11.794102668762209],["1.1",-11.794105529785156],["▁nicely",-11.79419231414795],["▁psychological",-11.794227600097656],["▁refrigerator",-11.794478416442873],["▁fantasy",-11.79481029510498],["▁dispute",-11.79494571685791],["▁IBM",-11.794954299926758],["▁Nation",-11.794971466064451],["▁mobil",-11.795063972473145],["▁density",-11.795201301574709],["ske",-11.795230865478516],["▁intimate",-11.795313835144045],["▁tailored",-11.79531955718994],["▁outline",-11.795472145080566],["TN",-11.79554557800293],["mur",-11.795634269714355],["GC",-11.795662879943848],["they",-11.795992851257324],["pag",-11.796161651611328],["▁Kultur",-11.796246528625488],["grün",-11.796281814575195],["voted",-11.79652976989746],["▁donné",-11.796546936035156],["▁Să",-11.796629905700684],["enberg",-11.796648979187012],["▁wi",-11.79686450958252],["▁Francis",-11.797057151794434],["▁Rick",-11.797157287597656],["accord",-11.797403335571287],["▁Zusammen",-11.797415733337402],["▁nonprofit",-11.797456741333008],["▁listings",-11.797615051269531],["6,",-11.797908782958984],["▁maximize",-11.798253059387209],["bud",-11.798345565795898],["▁promotional",-11.798486709594728],["cina",-11.798646926879885],["▁potatoes",-11.79869556427002],["▁mot",-11.798871040344238],["carries",-11.799384117126465],["▁stabilit",-11.799458503723145],["▁Door",-11.799574851989746],["▁downloaded",-11.799574851989746],["▁experimental",-11.799724578857422],["HD",-11.7997407913208],["▁parfois",-11.79980182647705],["▁zeigen",-11.800092697143556],["▁proposé",-11.80030632019043],["▁Verein",-11.800636291503906],["▁amestec",-11.800676345825195],["▁entreprise",-11.800718307495115],["▁PSD",-11.800841331481934],["▁bake",-11.800897598266602],["▁Rh",-11.800904273986816],["▁Mehr",-11.800922393798828],["▁purple",-11.801074028015137],["▁recipient",-11.80109691619873],["rare",-11.801166534423828],["egi",-11.80117130279541],["ancien",-11.801176071166992],["▁risque",-11.80118465423584],["▁mystery",-11.80157470703125],["mac",-11.801697731018066],["ibility",-11.80182933807373],["▁Moore",-11.801881790161133],["▁flavors",-11.80191135406494],["▁trauma",-11.801966667175291],["▁automotive",-11.802112579345703],["▁Anyway",-11.802197456359863],["▁simulation",-11.802253723144531],["▁crafts",-11.802525520324709],["▁measurements",-11.80257511138916],["▁cour",-11.80257797241211],["▁tard",-11.802600860595703],["nnie",-11.802881240844728],["▁Production",-11.803388595581056],["▁Cleaning",-11.80356788635254],["5,",-11.803644180297852],["▁Islamic",-11.803766250610352],["▁Gate",-11.80378532409668],["bay",-11.803814888000488],["HR",-11.803990364074709],["▁Offer",-11.80399227142334],["▁acceptance",-11.804107666015623],["▁Erfahrung",-11.80412769317627],["▁environ",-11.804193496704102],["▁fancy",-11.804218292236328],["▁bullet",-11.80437183380127],["organ",-11.804466247558594],["▁Peace",-11.804520606994627],["▁detalii",-11.80461597442627],["▁promised",-11.804715156555176],["▁wellness",-11.804746627807615],["▁satisfy",-11.80481243133545],["▁grants",-11.805212020874023],["accueil",-11.80522346496582],["▁oben",-11.805412292480469],["▁prospects",-11.80543327331543],["▁Events",-11.805513381958008],["2013",-11.805569648742676],["gesehen",-11.805685997009276],["▁£1",-11.805727005004885],["▁handelt",-11.805798530578612],["▁Spieler",-11.80587673187256],["▁Virtual",-11.806145668029783],["▁bubble",-11.806239128112791],["▁Trend",-11.806254386901855],["▁sistemul",-11.806315422058104],["▁Morgan",-11.806320190429688],["▁pole",-11.806503295898438],["▁spielen",-11.806533813476562],["tür",-11.806571006774902],["SCO",-11.806572914123535],["▁informative",-11.806678771972656],["▁affirm",-11.806755065917969],["▁Aqua",-11.806818008422852],["▁AR",-11.806888580322266],["richten",-11.807071685791016],["▁rewards",-11.807122230529783],["lub",-11.807235717773438],["shot",-11.807236671447754],["LM",-11.807540893554688],["Up",-11.807586669921877],["▁absolut",-11.807737350463867],["▁Mart",-11.807806968688965],["erweise",-11.807812690734863],["BP",-11.807977676391602],["▁difficile",-11.808152198791504],["▁Document",-11.808159828186035],["▁Sweet",-11.8082914352417],["▁indicator",-11.808338165283203],["▁Boden",-11.808389663696287],["mates",-11.808477401733398],["▁supporters",-11.808504104614258],["▁begun",-11.808600425720217],["▁blogging",-11.808611869812012],["▁CL",-11.808663368225098],["gres",-11.808692932128906],["▁preferences",-11.808738708496094],["▁screw",-11.808756828308104],["▁tutor",-11.80885887145996],["▁Additional",-11.80891227722168],["▁Bitte",-11.80897617340088],["utilizing",-11.808998107910156],["▁expérience",-11.809073448181152],["▁dur",-11.809146881103516],["▁precisely",-11.809178352355955],["▁janvier",-11.80939483642578],["AGE",-11.80987548828125],["moto",-11.810007095336914],["▁counsel",-11.810195922851562],["▁110",-11.810226440429688],["nick",-11.810245513916016],["licit",-11.810540199279783],["technik",-11.810659408569336],["▁collaborate",-11.810736656188965],["▁neighbors",-11.810794830322266],["tered",-11.810922622680664],["▁excel",-11.811025619506836],["▁Route",-11.811059951782228],["steuer",-11.81109619140625],["▁pioneer",-11.811607360839844],["nuit",-11.81169319152832],["▁skip",-11.811963081359863],["▁destruction",-11.811997413635254],["▁thesis",-11.812249183654783],["▁libre",-11.812317848205566],["▁petition",-11.81234073638916],["▁steady",-11.812456130981444],["▁medications",-11.812458992004396],["▁audiences",-11.812623023986816],["▁coaches",-11.812689781188965],["aller",-11.812704086303713],["3,000",-11.812705993652344],["▁anger",-11.812785148620604],["▁striking",-11.812844276428224],["▁shades",-11.81291675567627],["▁Sitz",-11.812994956970217],["▁gluten",-11.813162803649902],["▁egal",-11.813222885131836],["ania",-11.813223838806152],["▁defend",-11.813241004943848],["gut",-11.81382942199707],["▁reserves",-11.813895225524902],["▁advocate",-11.814053535461426],["▁Cit",-11.814082145690918],["▁technicians",-11.814105033874512],["▁cater",-11.814138412475586],["leitung",-11.814190864562988],["▁towns",-11.814335823059082],["▁Costa",-11.814364433288574],["▁confront",-11.814567565917969],["mount",-11.814652442932127],["▁nationale",-11.814706802368164],["▁adverse",-11.814932823181152],["▁couleur",-11.815112113952637],["▁delight",-11.81516933441162],["▁promises",-11.815224647521973],["▁silent",-11.81550121307373],["richtet",-11.815556526184082],["▁Companies",-11.815614700317385],["▁Charlotte",-11.81562042236328],["▁labels",-11.81565284729004],["▁Süd",-11.815656661987305],["▁Honor",-11.81567096710205],["▁complaints",-11.815710067749023],["▁siècle",-11.815752029418944],["▁suits",-11.815792083740234],["▁Bath",-11.81582736968994],["mise",-11.815926551818848],["▁acela",-11.8159818649292],["▁candidat",-11.816011428833008],["Flo",-11.816207885742188],["▁conservative",-11.81621551513672],["DD",-11.816314697265623],["▁changement",-11.816414833068848],["▁login",-11.816492080688477],["▁Fashion",-11.816585540771484],["reichen",-11.816672325134276],["through",-11.81675148010254],["aki",-11.817240715026855],["gna",-11.817547798156738],["▁verse",-11.817551612854004],["▁threats",-11.817622184753418],["▁Song",-11.81777000427246],["▁funded",-11.81792163848877],["langen",-11.818023681640623],["▁distribu",-11.818195343017578],["édition",-11.818316459655762],["▁royal",-11.818562507629396],["▁bevor",-11.818829536437988],["▁02",-11.818854331970217],["straße",-11.81893825531006],["edit",-11.81904125213623],["▁energetic",-11.81922721862793],["▁Carr",-11.819757461547852],["viol",-11.819937705993652],["▁niche",-11.820054054260254],["avais",-11.82009983062744],["▁backyard",-11.82010269165039],["▁Saudi",-11.82015895843506],["▁Zwei",-11.820207595825195],["▁Legal",-11.82027530670166],["accessed",-11.820277214050291],["▁choisi",-11.820340156555176],["▁GDP",-11.82034397125244],["oferă",-11.820352554321287],["hlen",-11.820490837097168],["▁Wor",-11.820520401000977],["▁cheer",-11.820586204528809],["▁barely",-11.82062530517578],["cost",-11.820646286010742],["▁Really",-11.820661544799805],["kol",-11.820721626281738],["▁binding",-11.821045875549316],["euer",-11.821136474609377],["▁optimization",-11.821158409118652],["▁Designer",-11.8211669921875],["▁measuring",-11.82117748260498],["ncy",-11.821516036987305],["weise",-11.821520805358888],["DER",-11.821850776672363],["▁$7",-11.821949005126951],["▁Anfang",-11.821954727172852],["material",-11.821967124938965],["▁antique",-11.82228183746338],["▁Certificate",-11.822294235229492],["▁modest",-11.822370529174805],["ției",-11.822427749633787],["▁praise",-11.82245922088623],["▁Springs",-11.822660446166992],["▁organiza",-11.823041915893556],["jurul",-11.823047637939451],["▁plumbing",-11.82341194152832],["▁foster",-11.823490142822266],["▁Wy",-11.823491096496582],["▁Sab",-11.823503494262695],["▁overwhelming",-11.82367706298828],["▁matin",-11.823812484741213],["▁responded",-11.82408332824707],["▁confused",-11.82415008544922],["▁blessed",-11.824280738830566],["▁160",-11.824295997619627],["▁ingredient",-11.824360847473145],["▁confer",-11.82448673248291],["▁Gesundheit",-11.824530601501465],["▁bucket",-11.824555397033691],["kraft",-11.824565887451172],["lange",-11.824630737304688],["▁Kopf",-11.824678421020508],["▁Prize",-11.824678421020508],["▁authorized",-11.824779510498049],["▁tick",-11.824803352355955],["▁steal",-11.824910163879396],["Depending",-11.824918746948242],["Depuis",-11.824952125549316],["▁functie",-11.82499885559082],["▁developments",-11.825053215026855],["▁Christians",-11.825311660766602],["▁calculated",-11.8256254196167],["▁Leave",-11.825672149658203],["▁Jam",-11.82573413848877],["▁habitat",-11.825760841369627],["▁Sorry",-11.825801849365234],["▁oficial",-11.825944900512695],["▁allein",-11.826079368591309],["▁concentrate",-11.82608413696289],["dica",-11.826302528381348],["▁Convention",-11.826476097106934],["illes",-11.826550483703612],["▁fum",-11.82664680480957],["▁Tal",-11.826651573181152],["Europe",-11.826899528503418],["▁attachment",-11.826949119567873],["▁sensibil",-11.826995849609377],["▁clue",-11.82715892791748],["▁specialty",-11.827203750610352],["▁Cou",-11.827229499816896],["▁liste",-11.827278137207031],["▁Penn",-11.827465057373049],["TRA",-11.827559471130373],["▁Themen",-11.827561378479004],["▁motivated",-11.827906608581545],["▁camere",-11.828017234802246],["▁14,",-11.828393936157228],["▁attendance",-11.828557968139648],["atorii",-11.82858180999756],["chemistry",-11.82873821258545],["▁roofing",-11.828959465026855],["▁Links",-11.82904815673828],["▁trou",-11.829103469848633],["▁trucks",-11.829136848449709],["hilfe",-11.829557418823242],["▁(6",-11.829599380493164],["vapor",-11.82964038848877],["mad",-11.829668045043944],["▁Albert",-11.829877853393556],["▁FIG",-11.830073356628418],["▁Rand",-11.830187797546388],["▁Constitution",-11.830219268798828],["ambi",-11.830294609069824],["▁Syria",-11.830307006835938],["▁Fond",-11.830477714538574],["▁gouvernement",-11.830594062805176],["▁Active",-11.830705642700195],["▁prints",-11.830801963806152],["▁weigh",-11.8308687210083],["▁Craft",-11.831069946289062],["▁projets",-11.831247329711914],["▁paste",-11.831377029418944],["anci",-11.83139705657959],["kie",-11.831411361694336],["▁gains",-11.83165168762207],["▁Record",-11.831942558288574],["▁beliefs",-11.831954956054688],["countless",-11.831957817077637],["▁tomatoes",-11.831997871398926],["arie",-11.832082748413086],["▁140",-11.83211612701416],["▁ethical",-11.832229614257812],["objectif",-11.832279205322266],["▁acestuia",-11.832283973693848],["▁Bluetooth",-11.832398414611816],["▁agriculture",-11.832746505737305],["uré",-11.833027839660645],["▁cale",-11.833072662353516],["▁articol",-11.833073616027832],["▁gum",-11.833319664001465],["▁vendor",-11.833490371704102],["ifié",-11.83352756500244],["▁peer",-11.833662033081056],["pod",-11.834036827087402],["▁utilized",-11.834113121032717],["▁Mü",-11.83420753479004],["owohl",-11.834208488464355],["hilst",-11.834233283996582],["frame",-11.834260940551758],["▁fridge",-11.83482265472412],["▁query",-11.835108757019045],["▁Survey",-11.835227012634276],["▁Hell",-11.835247993469238],["▁notification",-11.83530044555664],["TR",-11.83538818359375],["▁ultima",-11.835505485534668],["▁radiation",-11.835631370544434],["▁musicians",-11.835821151733398],["CAN",-11.83595085144043],["▁grocery",-11.83607292175293],["▁Sicherheit",-11.83611011505127],["▁Highway",-11.836276054382324],["▁Break",-11.836285591125488],["TED",-11.836345672607422],["ön",-11.836352348327637],["▁biological",-11.836352348327637],["qual",-11.836397171020508],["250",-11.83641242980957],["▁modify",-11.836651802062988],["▁Hit",-11.836698532104492],["▁Iar",-11.836838722229004],["aged",-11.836884498596191],["...)",-11.83688735961914],["▁contrat",-11.836928367614746],["▁centres",-11.836956977844238],["griff",-11.836987495422363],["Our",-11.837233543395996],["▁determination",-11.837300300598145],["▁variables",-11.83742904663086],["▁nuts",-11.837472915649414],["échange",-11.83757781982422],["extérieur",-11.837631225585938],["▁suflet",-11.83764362335205],["▁Scha",-11.83775234222412],["stück",-11.837774276733398],["▁Tau",-11.83782196044922],["▁participa",-11.838008880615234],["▁mad",-11.838034629821776],["▁relie",-11.838051795959473],["▁Fine",-11.83808422088623],["▁grape",-11.83811855316162],["▁wage",-11.838141441345217],["▁startup",-11.838193893432615],["▁blank",-11.838194847106934],["▁physique",-11.838199615478516],["▁punch",-11.838233947753906],["▁contacts",-11.838321685791016],["▁dezvolt",-11.83835220336914],["cross",-11.83863925933838],["▁TR",-11.838652610778809],["▁gener",-11.838754653930664],["▁indem",-11.838823318481444],["▁Stan",-11.838839530944824],["▁azi",-11.838930130004885],["▁Sel",-11.838958740234377],["▁Tot",-11.83924674987793],["vra",-11.839341163635254],["▁recruit",-11.839482307434082],["▁Yeah",-11.839494705200195],["/10",-11.839507102966309],["▁nail",-11.83956241607666],["▁Ky",-11.839611053466797],["▁beloved",-11.839760780334473],["operative",-11.839823722839355],["▁Tickets",-11.83983325958252],["▁tear",-11.840229988098145],["▁amp",-11.840352058410645],["▁04",-11.840361595153809],["▁illustrate",-11.840361595153809],["▁mac",-11.84040069580078],["▁receiver",-11.840482711791992],["atrice",-11.840508460998535],["▁souhait",-11.840572357177734],["▁Gewinn",-11.840619087219238],["▁Vit",-11.840808868408203],["roch",-11.84120273590088],["▁arata",-11.841262817382812],["▁Indiana",-11.841364860534668],["child",-11.841516494750977],["▁invested",-11.84157657623291],["▁Excellent",-11.841625213623049],["gori",-11.841769218444824],["▁thermal",-11.84181308746338],["Str",-11.841973304748535],["▁liver",-11.84201717376709],["miss",-11.842035293579102],["▁utiliser",-11.842120170593262],["▁prest",-11.842445373535156],["2016",-11.842506408691406],["isée",-11.84250831604004],["▁Index",-11.842559814453123],["▁arch",-11.842639923095703],["▁Toyota",-11.842748641967772],["▁YOUR",-11.842782020568848],["▁Mexican",-11.842891693115234],["▁gegenüber",-11.842940330505373],["▁cannabis",-11.84303379058838],["bis",-11.843077659606934],["vage",-11.843083381652832],["hall",-11.843091011047363],["fax",-11.843137741088867],["▁spoken",-11.843232154846191],["▁Zimmer",-11.843544960021973],["kauf",-11.8436279296875],["▁couleurs",-11.843705177307127],["▁NJ",-11.844026565551758],["▁Heritage",-11.844318389892578],["▁Pflege",-11.844321250915527],["luc",-11.844361305236816],["▁56",-11.844489097595217],["VP",-11.844542503356934],["▁cuvinte",-11.844594955444336],["▁Alliance",-11.844614028930664],["▁coco",-11.844615936279297],["▁leverage",-11.844762802124023],["auch",-11.844844818115234],["▁Cart",-11.84506607055664],["taux",-11.84532642364502],["east",-11.84560775756836],["▁decorating",-11.84565258026123],["tip",-11.84565544128418],["▁Communications",-11.845780372619627],["ACE",-11.84580135345459],["▁Consul",-11.845993041992188],["▁Swiss",-11.846197128295898],["inci",-11.846230506896973],["▁Fact",-11.846312522888184],["▁ajung",-11.846321105957031],["▁airline",-11.846325874328612],["▁kidney",-11.846379280090332],["▁Records",-11.84642505645752],["▁Olympic",-11.846747398376465],["▁dried",-11.84719467163086],["oivent",-11.847333908081056],["▁Adobe",-11.847467422485352],["▁powers",-11.847748756408691],["lande",-11.847834587097168],["▁relieve",-11.847858428955078],["ţine",-11.847898483276367],["▁gradually",-11.847945213317873],["mud",-11.84811019897461],["▁30,",-11.848116874694824],["▁plante",-11.848133087158203],["▁Hug",-11.848225593566896],["▁Focus",-11.84853458404541],["▁distinctive",-11.848594665527344],["▁Bab",-11.848662376403809],["tata",-11.848679542541504],["▁Nun",-11.848797798156738],["▁Eve",-11.848811149597168],["▁déc",-11.848881721496582],["▁Beitrag",-11.84900951385498],["▁devenit",-11.849042892456056],["driven",-11.849250793457031],["▁offerings",-11.84933853149414],["▁exc",-11.84941577911377],["encies",-11.849576950073242],["▁Neuro",-11.84958839416504],["scher",-11.849604606628418],["map",-11.849703788757324],["pending",-11.849783897399902],["▁courage",-11.849799156188965],["axe",-11.849894523620604],["▁Gesellschaft",-11.849900245666504],["▁ears",-11.85000991821289],["▁aider",-11.850403785705566],["▁Cast",-11.85042667388916],["fast",-11.85044288635254],["▁departe",-11.850502014160156],["▁oak",-11.850507736206056],["▁batch",-11.850730895996094],["▁Corporate",-11.850762367248535],["▁Ost",-11.850895881652832],["-14",-11.850897789001465],["▁Pie",-11.85115909576416],["▁ranking",-11.851273536682127],["clusion",-11.851316452026367],["▁costume",-11.851347923278809],["▁Knight",-11.851449966430664],["▁privat",-11.851577758789062],["▁Engineer",-11.85159397125244],["▁gens",-11.8517427444458],["physics",-11.85176944732666],["generating",-11.851773262023926],["directement",-11.851786613464355],["▁confidential",-11.851810455322266],["▁poet",-11.851937294006348],["▁monster",-11.85194492340088],["▁suppose",-11.851984977722168],["său",-11.851996421813965],["▁balls",-11.852103233337402],["▁substitute",-11.852137565612791],["▁simultaneously",-11.852238655090332],["▁specify",-11.852272033691406],["wald",-11.852287292480469],["▁collapse",-11.852352142333984],["dessus",-11.852458953857422],["▁vitr",-11.852516174316406],["▁recruitment",-11.85260772705078],["denken",-11.852632522583008],["▁candy",-11.852691650390623],["▁tourists",-11.852721214294434],["dimensional",-11.852782249450684],["conce",-11.85281467437744],["wechsel",-11.852822303771973],["▁passende",-11.852971076965332],["industrie",-11.85299301147461],["agne",-11.853127479553224],["▁warehouse",-11.853233337402344],["▁Jugend",-11.853277206420898],["▁Weise",-11.853357315063477],["▁Zone",-11.853528022766112],["▁licence",-11.853550910949709],["▁broker",-11.853630065917969],["▁Rolle",-11.85365104675293],["pton",-11.853789329528809],["▁preference",-11.853846549987791],["▁homeowners",-11.853861808776855],["▁Lum",-11.85387134552002],["▁Chairman",-11.853879928588867],["▁Pages",-11.853998184204102],["▁beam",-11.854005813598633],["▁coordinate",-11.854158401489258],["▁Tool",-11.854212760925291],["▁complexity",-11.854272842407228],["▁checks",-11.854339599609377],["▁Bedroom",-11.854405403137209],["minded",-11.854538917541504],["▁copiii",-11.854694366455078],["▁celebrating",-11.85470199584961],["zimmer",-11.854759216308594],["▁Imagine",-11.854759216308594],["▁decoration",-11.854830741882324],["team",-11.855354309082031],["▁împreună",-11.855369567871094],["▁publicly",-11.855391502380373],["▁centuries",-11.855514526367188],["▁Islands",-11.85564422607422],["▁ethnic",-11.855663299560549],["still",-11.85576057434082],["stieg",-11.855823516845703],["emia",-11.855904579162598],["tags",-11.856026649475098],["▁marche",-11.85606288909912],["▁migration",-11.856096267700195],["▁banner",-11.85616683959961],["▁macro",-11.856378555297852],["▁Edit",-11.856379508972168],["tran",-11.85656452178955],["ça",-11.856597900390623],["▁recycling",-11.856670379638672],["▁1,000",-11.85667324066162],["▁Quelle",-11.856891632080078],["▁Vel",-11.85700511932373],["▁Rit",-11.857025146484377],["▁Spaß",-11.857046127319336],["▁Corn",-11.857074737548828],["tracted",-11.857177734375],["cited",-11.857185363769531],["▁tablets",-11.857202529907228],["▁Display",-11.857337951660156],["▁persoana",-11.857392311096191],["Term",-11.857410430908203],["▁Vancouver",-11.857537269592283],["▁Gäste",-11.857550621032717],["determining",-11.857608795166016],["▁populations",-11.85778522491455],["aison",-11.857873916625977],["▁surgical",-11.858072280883787],["tale",-11.858160018920898],["ivi",-11.858283042907717],["▁Zur",-11.858388900756836],["esprit",-11.858574867248535],["▁Edge",-11.858665466308594],["dach",-11.858760833740234],["phi",-11.858773231506348],["▁suc",-11.858841896057127],["▁scrie",-11.858848571777344],["▁Ausbildung",-11.858885765075684],["▁51",-11.85892391204834],["ologi",-11.858938217163086],["▁correction",-11.859049797058104],["▁Wald",-11.859078407287598],["▁additionally",-11.859131813049316],["▁proche",-11.859353065490724],["▁classical",-11.859477996826172],["▁bringen",-11.859490394592283],["▁(10",-11.859611511230469],["▁Mile",-11.85980987548828],["lace",-11.859885215759276],["▁premi",-11.85988712310791],["▁constitute",-11.860029220581056],["▁bitter",-11.860078811645508],["▁Inform",-11.860295295715332],["▁corporations",-11.860334396362305],["▁Lisa",-11.86049461364746],["▁obligat",-11.860685348510742],["Throughout",-11.86073875427246],["▁Rs",-11.860769271850586],["▁Hair",-11.860916137695312],["▁supplements",-11.86099624633789],["▁motorcycle",-11.861054420471191],["escent",-11.861132621765137],["▁investi",-11.86122226715088],["▁continuously",-11.861265182495115],["▁Essen",-11.861334800720217],["▁precision",-11.8613862991333],["▁deficit",-11.861461639404297],["▁wallet",-11.86148166656494],["▁Bürger",-11.861531257629396],["chir",-11.861574172973633],["9)",-11.86161994934082],["▁Programme",-11.861716270446776],["▁simplement",-11.86193561553955],["MD",-11.862093925476074],["▁rouge",-11.862096786499023],["usion",-11.862133979797363],["▁stove",-11.862208366394045],["▁prospective",-11.862224578857422],["▁corp",-11.86234188079834],["▁impacts",-11.862401008605955],["▁bride",-11.86266803741455],["0.0",-11.862788200378418],["hid",-11.862833976745604],["▁warrant",-11.862930297851562],["▁Ice",-11.8631010055542],["▁sensible",-11.863151550292969],["▁vreo",-11.863166809082031],["spekt",-11.86324977874756],["▁appreciation",-11.8633394241333],["▁automation",-11.863377571105955],["Luc",-11.86341381072998],["teaches",-11.863471031188965],["▁fold",-11.863506317138672],["deutsche",-11.863523483276367],["▁assisted",-11.86380386352539],["▁straightforward",-11.863932609558104],["▁mechanic",-11.864068031311035],["observ",-11.864169120788574],["▁Schau",-11.864195823669434],["▁Recently",-11.864301681518556],["kers",-11.86435604095459],["▁Soft",-11.864455223083496],["muni",-11.864537239074709],["▁lie",-11.864617347717283],["▁Fat",-11.864728927612305],["cream",-11.86476993560791],["▁snack",-11.864909172058104],["▁juin",-11.865068435668944],["▁competent",-11.865134239196776],["▁Drug",-11.865141868591309],["▁Row",-11.865302085876465],["▁needle",-11.865852355957031],["▁convey",-11.865900039672852],["▁voie",-11.86600399017334],["▁Hon",-11.866190910339355],["▁ebook",-11.86619472503662],["▁veteran",-11.866209030151367],["▁statistical",-11.866217613220217],["190",-11.866312980651855],["▁munca",-11.866402626037598],["▁venues",-11.86643886566162],["▁Viel",-11.866604804992676],["▁décor",-11.866799354553224],["▁répond",-11.8670015335083],["▁produsele",-11.86700439453125],["ruc",-11.867009162902832],["▁drops",-11.867011070251465],["▁autant",-11.867311477661133],["▁Fahrzeug",-11.867313385009766],["▁hills",-11.86735725402832],["ference",-11.867414474487305],["▁Glück",-11.86742115020752],["▁Pac",-11.867480278015137],["▁permettr",-11.867568969726562],["▁mouvement",-11.867713928222656],["établissement",-11.867859840393066],["▁Parc",-11.867874145507812],["▁solving",-11.867900848388672],["▁jail",-11.867972373962402],["▁junk",-11.867980003356934],["▁jeux",-11.868091583251951],["▁rôle",-11.868107795715332],["▁cache",-11.868124961853027],["▁Answer",-11.86832046508789],["wir",-11.868706703186035],["option",-11.868732452392578],["▁Tiger",-11.868739128112791],["▁Ble",-11.868793487548828],["Mitglied",-11.868797302246094],["▁partial",-11.868819236755373],["▁Mercedes",-11.86888313293457],["tire",-11.869001388549805],["MENT",-11.869091987609863],["▁transit",-11.869230270385742],["▁cineva",-11.869285583496094],["▁Andrea",-11.86929416656494],["▁boundaries",-11.869497299194336],["script",-11.870061874389648],["▁Medi",-11.870123863220217],["schreiben",-11.870203018188477],["▁lobby",-11.87035846710205],["▁defendant",-11.870406150817873],["▁sq",-11.87046718597412],["▁forgotten",-11.870569229125977],["stimmung",-11.870651245117188],["hus",-11.870665550231934],["RY",-11.870728492736816],["▁Anderson",-11.87074851989746],["▁Dental",-11.87082862854004],["ject",-11.87110710144043],["▁Nutzer",-11.871377944946287],["▁Portland",-11.871540069580078],["scription",-11.871636390686035],["▁angel",-11.871695518493652],["▁monument",-11.871748924255373],["▁număr",-11.871784210205078],["▁Lane",-11.871800422668455],["▁Bai",-11.87189483642578],["But",-11.871909141540527],["▁calculate",-11.872315406799316],["▁provoca",-11.87247371673584],["▁votes",-11.872493743896484],["RNA",-11.872503280639648],["though",-11.87259292602539],["spor",-11.872631072998049],["▁connaissance",-11.872695922851562],["▁Anwendung",-11.872932434082031],["▁Kate",-11.873123168945312],["lob",-11.87315845489502],["▁Conf",-11.873180389404297],["bung",-11.873212814331056],["ander",-11.873282432556152],["▁functioning",-11.873297691345217],["▁sponsored",-11.873324394226074],["rav",-11.873734474182127],["▁resistant",-11.873797416687012],["tră",-11.873916625976562],["▁costly",-11.873923301696776],["▁Mars",-11.873991012573242],["▁tir",-11.874075889587402],["▁writes",-11.874134063720703],["▁Greg",-11.874267578125],["▁Question",-11.874714851379396],["▁corporation",-11.87485408782959],["▁lire",-11.874991416931152],["locked",-11.875048637390137],["8,",-11.875092506408691],["▁sagt",-11.875301361083984],["gaining",-11.87536907196045],["▁Pierre",-11.875688552856444],["verb",-11.875725746154783],["▁Barcelona",-11.87578296661377],["werte",-11.876474380493164],["▁disponible",-11.87651538848877],["▁urge",-11.876521110534668],["▁expecting",-11.876572608947754],["▁Girl",-11.87662124633789],["▁unlimited",-11.876761436462402],["watt",-11.876788139343262],["▁Möglichkeiten",-11.876813888549805],["▁schöne",-11.87684726715088],["rium",-11.877076148986816],["That",-11.877272605895996],["▁socio",-11.877296447753906],["▁Democrats",-11.877351760864258],["guten",-11.877422332763672],["▁Lou",-11.87742519378662],["ităţi",-11.877559661865234],["▁possibilité",-11.87771701812744],["▁adjustable",-11.877938270568848],["▁Salt",-11.877967834472656],["Thr",-11.878021240234377],["▁biseric",-11.878056526184082],["ieux",-11.87808895111084],["▁procur",-11.8782377243042],["▁credits",-11.878250122070312],["▁Netflix",-11.878585815429688],["doi",-11.878605842590332],["▁Jews",-11.878663063049316],["▁Ukraine",-11.87873363494873],["▁adevărat",-11.878785133361816],["▁Apply",-11.878813743591309],["▁coupons",-11.878859519958496],["▁Detroit",-11.878881454467772],["▁rue",-11.878889083862305],["anumite",-11.878926277160645],["ished",-11.878973960876465],["▁withdrawal",-11.87915325164795],["▁replacing",-11.87917709350586],["catching",-11.879385948181152],["▁climbing",-11.879612922668455],["▁Basic",-11.879770278930664],["▁inclus",-11.879783630371094],["scope",-11.879887580871582],["▁facem",-11.879892349243164],["▁plec",-11.879904747009276],["mäßig",-11.879980087280272],["▁tasty",-11.880064010620115],["▁tunnel",-11.880074501037598],["figured",-11.88032341003418],["gged",-11.880390167236328],["▁conditii",-11.880599975585938],["▁homework",-11.88063144683838],["volle",-11.88063907623291],["▁Gott",-11.880807876586914],["▁95",-11.880969047546388],["▁elect",-11.881020545959473],["▁blast",-11.881043434143066],["▁easiest",-11.881248474121094],["USE",-11.881462097167969],["concentr",-11.881475448608398],["orial",-11.881596565246582],["▁scroll",-11.881638526916504],["stead",-11.881691932678224],["▁hormone",-11.881710052490234],["▁starter",-11.88179874420166],["▁cald",-11.881878852844238],["▁wax",-11.881895065307615],["▁ridic",-11.881900787353516],["ously",-11.881982803344728],["maschine",-11.88210105895996],["licher",-11.882399559020996],["▁16,",-11.882452964782717],["▁hassle",-11.882469177246094],["semnat",-11.882535934448242],["▁pub",-11.88260555267334],["240",-11.882800102233888],["▁kits",-11.882871627807615],["▁Generation",-11.88293743133545],["▁merchant",-11.883052825927734],["▁Erd",-11.883068084716797],["▁café",-11.88307762145996],["hoff",-11.88314151763916],["▁WITH",-11.883376121520996],["▁gesch",-11.883515357971191],["▁Editor",-11.883557319641112],["▁treats",-11.883609771728516],["▁harsh",-11.883711814880373],["rome",-11.883729934692385],["▁Foreign",-11.883928298950195],["▁denied",-11.883968353271484],["▁Valentine",-11.884014129638672],["▁healthier",-11.88408088684082],["▁readily",-11.884138107299805],["nac",-11.884190559387209],["▁intake",-11.884191513061523],["▁puncte",-11.884230613708496],["erne",-11.884431838989258],["file",-11.884668350219728],["▁continually",-11.884688377380373],["door",-11.884699821472168],["▁imediat",-11.884822845458984],["▁accused",-11.884833335876465],["chy",-11.884854316711426],["▁wrapped",-11.884861946105955],["IES",-11.884878158569336],["▁terrace",-11.884883880615234],["mouth",-11.884897232055664],["▁defensive",-11.884991645812988],["▁Luci",-11.88508129119873],["▁significance",-11.885107040405272],["▁2007,",-11.885213851928713],["▁inclusion",-11.885221481323242],["▁rotation",-11.885248184204102],["hos",-11.885283470153809],["▁crea",-11.885357856750488],["üß",-11.885903358459473],["▁Install",-11.885988235473633],["▁dump",-11.885998725891112],["▁informations",-11.886114120483398],["▁Thi",-11.886117935180664],["▁85",-11.886252403259276],["dox",-11.88628387451172],["track",-11.886436462402344],["▁couples",-11.886571884155272],["▁Assembly",-11.886594772338867],["wagen",-11.88672161102295],["▁Hil",-11.886723518371582],["ières",-11.886833190917969],["▁Gabriel",-11.886903762817385],["▁patience",-11.88705348968506],["▁colored",-11.887147903442385],["▁separately",-11.88715934753418],["▁deployment",-11.887166023254396],["scape",-11.887306213378906],["▁Acum",-11.8875150680542],["▁länger",-11.887518882751465],["▁screens",-11.887598991394045],["▁prezenta",-11.887630462646484],["▁obicei",-11.887638092041016],["▁crisp",-11.887758255004885],["▁mechanisms",-11.887771606445312],["▁thirty",-11.887786865234377],["▁individually",-11.887989044189451],["▁internationally",-11.887991905212402],["lling",-11.888050079345703],["▁bureau",-11.88843059539795],["▁erfahren",-11.88844108581543],["TY",-11.888553619384766],["PF",-11.888607025146484],["wid",-11.888752937316896],["sell",-11.888835906982422],["▁Luke",-11.888879776000977],["▁Must",-11.888916969299316],["▁identical",-11.888927459716797],["▁Netherlands",-11.888980865478516],["▁investor",-11.88905143737793],["▁squad",-11.889073371887209],["▁21,",-11.88914394378662],["iko",-11.889230728149414],["▁departure",-11.88937759399414],["ega",-11.889384269714355],["uzi",-11.889408111572266],["▁lasa",-11.889458656311035],["bian",-11.889525413513184],["▁Madrid",-11.889623641967772],["▁Iowa",-11.889806747436523],["▁Yellow",-11.890026092529297],["conom",-11.89004898071289],["▁hint",-11.890098571777344],["NOW",-11.890111923217772],["dress",-11.890204429626465],["▁Stück",-11.890267372131348],["echt",-11.890424728393556],["rial",-11.89045238494873],["▁Initiative",-11.890474319458008],["▁magnificent",-11.890474319458008],["▁pipeline",-11.890543937683104],["▁08",-11.890806198120115],["▁écrit",-11.890889167785645],["KA",-11.891085624694824],["arile",-11.891151428222656],["▁unfortunately",-11.891352653503418],["dose",-11.891355514526367],["▁counts",-11.891427993774414],["deciding",-11.891549110412598],["WA",-11.89167308807373],["▁doresc",-11.891685485839844],["NY",-11.892008781433104],["olin",-11.892112731933594],["▁Urlaub",-11.892133712768556],["▁alătur",-11.89231777191162],["▁Vic",-11.892515182495115],["▁fier",-11.89269733428955],["EU",-11.892772674560549],["▁triple",-11.892871856689451],["▁compliment",-11.89310359954834],["▁vegetable",-11.89334487915039],["member",-11.893743515014648],["atiei",-11.893793106079102],["▁toxic",-11.893835067749023],["▁converted",-11.893888473510742],["▁Pink",-11.893999099731444],["▁fragment",-11.894020080566406],["presenting",-11.894027709960938],["▁garantie",-11.894031524658203],["▁31,",-11.894052505493164],["▁puisqu",-11.894105911254885],["aching",-11.894107818603516],["▁Shan",-11.894119262695312],["▁Affairs",-11.894368171691896],["üsse",-11.894405364990234],["▁CBD",-11.894428253173828],["▁quatre",-11.894588470458984],["▁horror",-11.894651412963867],["▁culoare",-11.894661903381348],["▁welcoming",-11.894673347473145],["▁headache",-11.894808769226074],["▁septembre",-11.894820213317873],["▁Tür",-11.894862174987791],["lateral",-11.89507007598877],["▁termin",-11.895228385925291],["▁Aid",-11.895291328430176],["second",-11.895308494567873],["▁Philip",-11.895310401916504],["berries",-11.895347595214844],["▁Slot",-11.895431518554688],["ка",-11.895442962646484],["▁consecutive",-11.895590782165527],["value",-11.895705223083496],["▁islands",-11.8958101272583],["▁posibilitatea",-11.895928382873535],["0.5",-11.89634132385254],["▁Dumpster",-11.896471977233888],["▁Gran",-11.89647388458252],["▁restricted",-11.8967924118042],["▁discussing",-11.896921157836914],["cock",-11.896966934204102],["Serie",-11.896989822387695],["▁crushing",-11.896998405456545],["RB",-11.897034645080566],["▁Gy",-11.897068977355955],["normal",-11.897098541259766],["DT",-11.897180557250977],["▁concurs",-11.897181510925291],["▁Beratung",-11.897231101989746],["▁handful",-11.897235870361328],["▁loading",-11.89723777770996],["▁WI",-11.897269248962402],["▁Fitness",-11.897283554077148],["▁RAM",-11.897302627563477],["▁Twi",-11.89730453491211],["adurch",-11.897345542907717],["▁obiectiv",-11.897366523742676],["BM",-11.897635459899902],["▁amendment",-11.8976469039917],["whi",-11.897652626037598],["▁Besonder",-11.897871017456056],["ALL",-11.898003578186035],["▁earning",-11.898090362548828],["▁nutrients",-11.89858055114746],["pru",-11.898633003234863],["▁offensive",-11.898696899414062],["▁shelves",-11.898711204528809],["▁încâ",-11.898726463317873],["▁execute",-11.898923873901367],["▁cauz",-11.898966789245604],["exist",-11.899179458618164],["▁Meter",-11.899191856384276],["there",-11.89920139312744],["▁réaliser",-11.899249076843262],["blog",-11.899362564086914],["▁résultats",-11.89937973022461],["baren",-11.899391174316406],["▁lang",-11.899425506591797],["▁mere",-11.89987087249756],["▁toti",-11.900079727172852],["DN",-11.90017032623291],["Hi",-11.900310516357422],["▁merg",-11.90035915374756],["▁Camera",-11.90054988861084],["▁parfum",-11.900697708129885],["CG",-11.900701522827148],["posed",-11.900713920593262],["▁proposals",-11.900732040405272],["▁incorrect",-11.900811195373535],["▁Denver",-11.901168823242188],["▁noapte",-11.901397705078123],["▁VPN",-11.901436805725098],["▁Oklahoma",-11.90159797668457],["horizon",-11.901647567749023],["▁villa",-11.901668548583984],["duce",-11.901812553405762],["Dienst",-11.902042388916016],["▁oversee",-11.902511596679688],["astr",-11.902548789978027],["brand",-11.902713775634766],["▁Safe",-11.902746200561523],["▁competing",-11.902812004089355],["▁subiect",-11.902812004089355],["▁équipe",-11.903091430664062],["▁Dress",-11.903095245361328],["▁Juni",-11.903139114379885],["▁repeated",-11.90317153930664],["2012",-11.903226852416992],["▁départ",-11.903234481811523],["immer",-11.903335571289062],["▁mondial",-11.903374671936035],["▁datelor",-11.903703689575195],["▁surgeon",-11.903782844543455],["▁demanding",-11.903812408447266],["▁concluded",-11.903878211975098],["țiile",-11.903950691223145],["marin",-11.90399932861328],["▁estim",-11.90420627593994],["▁Loan",-11.904361724853516],["sculpt",-11.904373168945312],["▁99",-11.904391288757324],["void",-11.904400825500488],["▁Empire",-11.904499053955078],["▁Brit",-11.90450382232666],["▁véhicule",-11.904777526855469],["▁dividend",-11.905069351196287],["▁refused",-11.905077934265137],["▁speaks",-11.905156135559082],["▁Morris",-11.905282020568848],["dict",-11.905349731445312],["▁funeral",-11.905556678771973],["▁Behandlung",-11.905763626098633],["▁Revolution",-11.905905723571776],["▁Sum",-11.905935287475586],["einigen",-11.906030654907228],["RES",-11.906070709228516],["▁vite",-11.906071662902832],["▁Captain",-11.906190872192385],["▁assurance",-11.9061918258667],["uga",-11.906500816345217],["▁conserv",-11.906583786010742],["▁therapeutic",-11.906641006469728],["▁Sweden",-11.906753540039062],["▁Lead",-11.906888961791992],["ément",-11.907071113586426],["▁53",-11.90709114074707],["▁fraction",-11.9071683883667],["▁magnet",-11.907170295715332],["assurer",-11.907184600830078],["▁Steuer",-11.90733814239502],["▁flori",-11.90735149383545],["▁charming",-11.907588958740234],["▁athletic",-11.907621383666992],["▁membri",-11.907706260681152],["▁Sep",-11.907726287841797],["ogue",-11.907800674438477],["▁familie",-11.907800674438477],["▁SW",-11.90796947479248],["▁diagnosed",-11.908023834228516],["RR",-11.908143997192385],["▁Fern",-11.908233642578123],["▁rational",-11.908281326293944],["▁talents",-11.90828800201416],["ziert",-11.908317565917969],["▁chemin",-11.908459663391112],["sheet",-11.908562660217283],["▁outer",-11.908565521240234],["▁Kap",-11.908591270446776],["▁HERE",-11.908656120300291],["▁uman",-11.908824920654297],["▁accompany",-11.908880233764648],["▁varieties",-11.908881187438965],["▁sensors",-11.908957481384276],["▁25%",-11.90919017791748],["▁tray",-11.909354209899902],["▁critique",-11.909459114074709],["▁puţin",-11.909515380859377],["▁Schüler",-11.90953540802002],["▁repar",-11.909744262695312],["▁overlook",-11.909931182861328],["▁surf",-11.910048484802246],["▁tasting",-11.910118103027344],["bog",-11.91027545928955],["▁Payment",-11.910289764404297],["▁Helen",-11.91049575805664],["▁Refer",-11.910694122314451],["application",-11.910698890686035],["lection",-11.910856246948242],["▁avril",-11.91104221343994],["▁Grace",-11.911109924316406],["▁kau",-11.911274909973145],["▁libraries",-11.911319732666016],["▁closest",-11.911347389221191],["▁coating",-11.911351203918455],["▁suicide",-11.911364555358888],["▁undergraduate",-11.911449432373049],["▁stitch",-11.91149616241455],["▁reset",-11.911593437194824],["▁Greece",-11.911626815795898],["▁Fred",-11.91197681427002],["▁18.",-11.912047386169434],["▁nuit",-11.912087440490724],["▁lying",-11.91219997406006],["▁cottage",-11.91232681274414],["bone",-11.912477493286133],["▁milieu",-11.912480354309082],["management",-11.912623405456545],["▁Freund",-11.912724494934082],["▁specially",-11.912841796875],["veut",-11.912961959838867],["▁necesare",-11.912999153137209],["▁cert",-11.913081169128418],["articul",-11.913151741027832],["150",-11.913174629211426],["rounded",-11.913180351257324],["▁longue",-11.913193702697754],["▁Quel",-11.913240432739258],["Until",-11.913322448730469],["▁700",-11.91339874267578],["▁installations",-11.913423538208008],["▁boats",-11.913467407226562],["Fig",-11.913609504699709],["▁cocktail",-11.913613319396973],["▁rocks",-11.91366958618164],["meinen",-11.91374683380127],["entrepreneur",-11.913780212402344],["schwarz",-11.91392421722412],["▁diesel",-11.91392993927002],["▁villages",-11.913969039916992],["▁cups",-11.914076805114746],["▁stairs",-11.914241790771484],["▁Match",-11.914350509643556],["Taking",-11.914437294006348],["prin",-11.914469718933104],["▁penal",-11.91472053527832],["partner",-11.914867401123049],["wave",-11.91497802734375],["▁baie",-11.91515064239502],["LAN",-11.915151596069336],["fix",-11.915202140808104],["▁surveillance",-11.915295600891112],["▁Register",-11.915343284606934],["oara",-11.915536880493164],["▁Phoenix",-11.915602684020996],["aktuellen",-11.915613174438477],["▁livres",-11.915618896484377],["▁entities",-11.916102409362791],["▁Regard",-11.916112899780272],["▁Jazz",-11.91614055633545],["▁flame",-11.91616153717041],["▁independence",-11.916215896606444],["▁Adventure",-11.916341781616213],["▁assign",-11.916399955749512],["▁Adult",-11.916579246520996],["kehr",-11.916666984558104],["▁ordering",-11.916850090026855],["▁charts",-11.91687297821045],["▁Român",-11.916936874389648],["bauen",-11.916982650756836],["▁Floor",-11.917065620422363],["▁Meet",-11.917101860046388],["▁compromise",-11.917158126831056],["regarded",-11.917171478271484],["02.",-11.91721534729004],["▁granite",-11.917299270629885],["▁Judge",-11.917314529418944],["opti",-11.917373657226562],["liste",-11.91737937927246],["▁capacité",-11.91742706298828],["▁criticism",-11.917450904846191],["LES",-11.918198585510254],["▁Century",-11.918211936950684],["▁mobility",-11.918252944946287],["▁variation",-11.918622016906738],["▁Utah",-11.91867446899414],["▁seminar",-11.918678283691406],["▁experiments",-11.918803215026855],["midst",-11.918943405151367],["▁Psycho",-11.919002532958984],["▁choses",-11.919121742248535],["▁Karl",-11.919175148010254],["▁ruling",-11.919286727905272],["▁Voice",-11.919404983520508],["▁împotriv",-11.919442176818848],["▁mesaj",-11.919500350952148],["▁vrei",-11.919594764709473],["fan",-11.919601440429688],["parent",-11.919648170471191],["▁oraș",-11.919770240783691],["▁printable",-11.919777870178224],["▁diver",-11.919859886169434],["▁ochi",-11.919949531555176],["▁teenager",-11.920125961303713],["▁Death",-11.920150756835938],["▁manque",-11.920289993286133],["ască",-11.920345306396484],["▁prob",-11.9203519821167],["▁télé",-11.920354843139648],["cursul",-11.92037868499756],["pion",-11.92052173614502],["▁dedication",-11.920644760131836],["▁opr",-11.920687675476074],["führung",-11.920761108398438],["▁cognitive",-11.920827865600586],["soft",-11.920868873596191],["▁19,",-11.9209623336792],["▁24-",-11.921197891235352],["▁legitimate",-11.921220779418944],["▁comedy",-11.921277046203612],["▁violation",-11.921327590942385],["▁disposal",-11.921472549438477],["▁liegen",-11.921605110168455],["ко",-11.921878814697266],["▁martie",-11.921931266784668],["▁Vas",-11.92212200164795],["rash",-11.922134399414062],["▁hadn",-11.922174453735352],["▁connu",-11.922204971313477],["▁regelmäßig",-11.922216415405272],["▁Webseite",-11.92222499847412],["▁failing",-11.922273635864258],["explique",-11.922449111938477],["▁Player",-11.922513961791992],["vul",-11.922560691833496],["camp",-11.922992706298828],["▁erreicht",-11.922996520996094],["▁tags",-11.922998428344728],["▁headline",-11.923210144042969],["▁banc",-11.923253059387209],["▁Mayor",-11.923309326171877],["trop",-11.923395156860352],["AK",-11.9235258102417],["▁lighter",-11.923602104187012],["▁syndrome",-11.92360496520996],["▁Adrian",-11.92365550994873],["▁EUR",-11.92375946044922],["▁Missouri",-11.923916816711426],["▁Chan",-11.924108505249023],["topped",-11.924233436584473],["▁nationwide",-11.924276351928713],["▁6-",-11.924302101135254],["final",-11.924408912658691],["ttes",-11.924485206604004],["▁FO",-11.924537658691406],["▁legi",-11.924556732177734],["▁Hum",-11.924575805664062],["vita",-11.924662590026855],["▁Regen",-11.924695014953612],["▁confusion",-11.92498779296875],["▁valori",-11.925142288208008],["mill",-11.92516803741455],["did",-11.925237655639648],["pid",-11.925253868103027],["▁implications",-11.925284385681152],["▁Value",-11.92552375793457],["lângă",-11.925666809082031],["▁véritable",-11.92577075958252],["▁Stick",-11.925814628601074],["zol",-11.925835609436035],["▁ebenso",-11.925863265991213],["west",-11.925895690917969],["▁auszu",-11.92600154876709],["▁adorable",-11.926016807556152],["▁clarity",-11.92605209350586],["▁Wash",-11.926335334777832],["▁alien",-11.92642307281494],["usement",-11.926626205444336],["▁bones",-11.9266357421875],["▁Beau",-11.92672634124756],["▁Jet",-11.926727294921877],["▁visibility",-11.927034378051758],["impose",-11.927063941955566],["food",-11.927133560180664],["▁duce",-11.927361488342283],["▁Format",-11.927386283874512],["▁durability",-11.927424430847168],["▁Prim",-11.927614212036133],["▁mele",-11.927629470825195],["▁dürfen",-11.927631378173828],["▁Angebote",-11.92765998840332],["▁discharge",-11.927745819091797],["▁Justin",-11.928055763244627],["▁shame",-11.928228378295898],["▁heated",-11.928282737731934],["ères",-11.92856216430664],["human",-11.928810119628906],["4.5",-11.928831100463867],["▁lien",-11.928955078125],["▁Alan",-11.92896556854248],["▁transmis",-11.92913055419922],["▁Bul",-11.929137229919434],["plu",-11.929169654846191],["acul",-11.92933750152588],["merk",-11.929434776306152],["▁altfel",-11.929566383361816],["deli",-11.929689407348633],["▁Cru",-11.930001258850098],["▁hommes",-11.930127143859863],["aurait",-11.930137634277344],["cca",-11.930187225341797],["▁Path",-11.930208206176758],["astronom",-11.930241584777832],["▁détail",-11.93027687072754],["▁blocked",-11.930394172668455],["iding",-11.93044376373291],["schä",-11.930500030517578],["▁30-",-11.930624008178713],["diction",-11.930813789367676],["▁pulling",-11.930868148803713],["▁Sample",-11.93092441558838],["▁renewable",-11.930997848510742],["▁Pinterest",-11.93106746673584],["▁Tages",-11.93106746673584],["▁shed",-11.931171417236328],["▁hart",-11.931188583374023],["▁serie",-11.931200981140137],["▁documentary",-11.931208610534668],["gebaut",-11.931220054626465],["▁Hause",-11.931272506713867],["share",-11.931303977966309],["▁inflation",-11.93138599395752],["▁gall",-11.931504249572754],["▁adjacent",-11.931673049926758],["jer",-11.93173885345459],["▁Universal",-11.931946754455566],["▁disabilities",-11.931984901428224],["▁proposition",-11.93204116821289],["Work",-11.932293891906738],["▁closure",-11.932306289672852],["▁separated",-11.932496070861816],["▁soda",-11.932549476623535],["▁elite",-11.93263053894043],["appro",-11.93265438079834],["▁acute",-11.93266487121582],["utton",-11.932938575744627],["▁facă",-11.933053016662598],["▁collector",-11.93312168121338],["▁unlock",-11.933249473571776],["▁Alpha",-11.933267593383787],["▁Used",-11.933267593383787],["▁applicants",-11.933302879333496],["▁înseamn",-11.933387756347656],["▁inclu",-11.933414459228516],["▁disclosure",-11.933544158935549],["▁Fahr",-11.933995246887209],["AST",-11.93406105041504],["▁vivre",-11.934069633483888],["»,",-11.934167861938477],["laud",-11.93430233001709],["▁soir",-11.934365272521973],["▁barrier",-11.934405326843262],["înd",-11.934470176696776],["▁ambition",-11.93451976776123],["asta",-11.934550285339355],["occupied",-11.934747695922852],["▁Gau",-11.934774398803713],["four",-11.93481159210205],["▁nap",-11.934887886047363],["iez",-11.934922218322754],["endra",-11.935242652893066],["gaben",-11.935464859008787],["▁Carol",-11.935481071472168],["▁Switzerland",-11.935575485229492],["▁Bond",-11.935617446899414],["▁crossing",-11.935630798339844],["▁Palace",-11.9359769821167],["NG",-11.935986518859863],["▁Budget",-11.93622875213623],["▁lid",-11.936372756958008],["bab",-11.936393737792969],["▁polish",-11.936416625976562],["▁herbs",-11.93673038482666],["▁dear",-11.936747550964355],["▁devrai",-11.936846733093262],["walk",-11.936864852905272],["▁humanity",-11.936897277832031],["▁tires",-11.936978340148926],["égal",-11.936994552612305],["▁bow",-11.93703269958496],["▁debris",-11.937201499938965],["▁keywords",-11.937273025512695],["irk",-11.937345504760742],["▁suspend",-11.937360763549805],["▁pourra",-11.93738079071045],["migran",-11.937454223632812],["thereby",-11.937570571899414],["▁Harris",-11.937943458557127],["ateurs",-11.93795680999756],["▁fal",-11.938271522521973],["alleged",-11.938355445861816],["noch",-11.938494682312012],["▁observation",-11.938506126403809],["▁București",-11.93855094909668],["▁SQL",-11.938624382019045],["▁Phase",-11.938760757446287],["▁adventures",-11.93881607055664],["▁Kol",-11.938885688781738],["▁professionnel",-11.938916206359863],["crit",-11.939026832580566],["LR",-11.939313888549805],["▁preview",-11.939464569091797],["▁highlighted",-11.939942359924316],["▁Stud",-11.939949035644531],["▁labour",-11.939956665039062],["MV",-11.9399995803833],["click",-11.940049171447754],["approche",-11.94016170501709],["tian",-11.940183639526367],["cité",-11.940192222595217],["▁Rain",-11.94028377532959],["typ",-11.94032096862793],["Usually",-11.940435409545898],["▁outlet",-11.940513610839844],["logging",-11.940814018249512],["▁Temperatur",-11.940906524658203],["▁Scottish",-11.94090747833252],["iga",-11.940942764282228],["▁glory",-11.941086769104004],["▁Rom",-11.941242218017578],["zeug",-11.94133758544922],["establishing",-11.941339492797852],["▁imaging",-11.94192600250244],["▁Beauty",-11.942015647888184],["igan",-11.942042350769045],["après",-11.94224739074707],["Adresse",-11.942267417907717],["cliff",-11.942349433898926],["▁unnecessary",-11.943267822265623],["▁slim",-11.943324089050291],["dir",-11.943490982055664],["▁leisure",-11.943660736083984],["▁principale",-11.94368839263916],["▁Viele",-11.943770408630373],["▁2007.",-11.943802833557127],["Hopefully",-11.943829536437988],["cola",-11.943851470947266],["▁Planet",-11.943927764892578],["▁orientation",-11.943933486938477],["▁angry",-11.94419002532959],["MIT",-11.94423484802246],["▁Kenya",-11.944265365600586],["▁bless",-11.94435977935791],["▁Fill",-11.944524765014648],["▁compar",-11.944664001464844],["▁curtain",-11.94473934173584],["ţei",-11.944754600524902],["▁Az",-11.94482421875],["▁Rang",-11.944908142089844],["▁dominant",-11.944974899291992],["race",-11.944985389709473],["▁Target",-11.944987297058104],["▁manually",-11.944987297058104],["objet",-11.945024490356444],["thrown",-11.945131301879885],["NF",-11.945149421691896],["durant",-11.945185661315918],["rect",-11.945302963256836],["▁Größe",-11.945320129394531],["VM",-11.9453763961792],["▁aprilie",-11.945476531982422],["▁Welche",-11.945639610290527],["▁verde",-11.946157455444336],["▁Portugal",-11.946266174316406],["▁algorithm",-11.94627571105957],["ăț",-11.946328163146973],["▁Grey",-11.946371078491213],["▁cleaned",-11.94644832611084],["▁modes",-11.946463584899902],["▁relaxation",-11.946599006652832],["mbr",-11.946786880493164],["étique",-11.946821212768556],["Her",-11.946904182434082],["▁beta",-11.94695281982422],["▁nobody",-11.94699764251709],["▁aplic",-11.947060585021973],["present",-11.947080612182615],["emis",-11.947197914123535],["éléments",-11.947257995605469],["▁lately",-11.947303771972656],["fab",-11.94732666015625],["▁aluminiu",-11.947373390197754],["▁vest",-11.947524070739746],["▁statue",-11.947558403015137],["▁publice",-11.947586059570312],["▁merchandise",-11.9476900100708],["▁relat",-11.947810173034668],["git",-11.94796371459961],["▁interne",-11.948281288146973],["▁Tokyo",-11.948325157165527],["chal",-11.94834804534912],["contacted",-11.948430061340332],["▁tras",-11.948455810546877],["▁Clinic",-11.948626518249512],["▁unbe",-11.948633193969728],["▁dumneavoastra",-11.948798179626465],["float",-11.949078559875488],["isson",-11.94909381866455],["▁vessel",-11.949126243591309],["attempting",-11.949161529541016],["▁doute",-11.94918441772461],["▁Leadership",-11.949322700500488],["▁sustain",-11.94947338104248],["▁textile",-11.949666023254396],["auer",-11.949702262878418],["▁90%",-11.949899673461914],["garten",-11.949911117553713],["▁adauga",-11.949991226196287],["▁Kil",-11.950061798095703],["▁troops",-11.950420379638672],["▁pale",-11.950568199157717],["host",-11.950743675231934],["▁cry",-11.950757026672363],["▁Alb",-11.950793266296388],["▁Brad",-11.95089340209961],["▁bicycle",-11.951054573059082],["▁24/7",-11.951217651367188],["▁с",-11.951228141784668],["▁stimul",-11.951401710510254],["gler",-11.951445579528809],["▁notwendig",-11.951496124267578],["▁cousin",-11.95158863067627],["cheie",-11.951600074768066],["hay",-11.951751708984377],["▁rezolv",-11.952134132385254],["▁THIS",-11.952143669128418],["ordre",-11.952157974243164],["iști",-11.952173233032228],["▁conclude",-11.952310562133787],["▁Lage",-11.952327728271484],["▁Entertainment",-11.952454566955566],["▁valued",-11.952478408813477],["ktion",-11.95253849029541],["▁priorities",-11.95268440246582],["▁1986",-11.952770233154297],["▁fatal",-11.95293426513672],["▁accurately",-11.952988624572754],["▁1987",-11.953022956848145],["▁folk",-11.953073501586914],["7)",-11.953163146972656],["führer",-11.95360279083252],["▁knot",-11.953612327575684],["haltung",-11.953720092773438],["▁Charlie",-11.953733444213867],["âge",-11.95376205444336],["▁threshold",-11.954041481018066],["▁assault",-11.954130172729492],["▁meist",-11.954141616821287],["bine",-11.954155921936035],["surprisingly",-11.954171180725098],["▁Protect",-11.954180717468262],["▁Hack",-11.954258918762209],["▁Quant",-11.954537391662598],["▁Cet",-11.954782485961914],["▁convinced",-11.95481014251709],["▁muncă",-11.955033302307127],["dging",-11.955066680908203],["▁Millionen",-11.955129623413086],["zahlung",-11.955148696899414],["▁anticipated",-11.955192565917969],["▁brass",-11.9552001953125],["KO",-11.955244064331056],["▁culori",-11.955286979675291],["▁Aero",-11.955326080322266],["▁intermediu",-11.955373764038086],["▁Philippines",-11.955381393432615],["▁jury",-11.955387115478516],["▁Funktion",-11.95569896697998],["▁probe",-11.95570468902588],["TL",-11.955748558044434],["1.0",-11.955804824829102],["ELL",-11.95581340789795],["She",-11.95600128173828],["▁Blood",-11.956073760986328],["▁Dean",-11.956111907958984],["▁scène",-11.9561185836792],["volu",-11.95621395111084],["▁Epi",-11.95621395111084],["▁séjour",-11.95627498626709],["▁Smartphone",-11.956306457519531],["▁fired",-11.956357955932615],["beat",-11.95650577545166],["▁pockets",-11.956506729125977],["▁serviciu",-11.956624031066896],["▁affairs",-11.95678424835205],["▁Ry",-11.956842422485352],["▁Stadium",-11.956954956054688],["▁snacks",-11.957182884216309],["▁efectu",-11.957221031188965],["▁Richtung",-11.957273483276367],["▁dresses",-11.957352638244627],["▁Medien",-11.95744800567627],["writer",-11.95759105682373],["changing",-11.957655906677246],["▁supportive",-11.957849502563477],["▁beneath",-11.957873344421388],["paid",-11.958078384399414],["▁customize",-11.958155632019045],["▁Ferr",-11.958187103271484],["reaches",-11.958338737487791],["arma",-11.958401679992676],["ción",-11.958598136901855],["▁elderly",-11.959243774414062],["▁modification",-11.95934009552002],["▁perfection",-11.959381103515623],["▁Allow",-11.959492683410645],["▁belonging",-11.959542274475098],["▁compound",-11.959589004516602],["▁Results",-11.959681510925291],["▁astăzi",-11.959793090820312],["▁Liber",-11.959818840026855],["jor",-11.959850311279297],["▁Nin",-11.959980964660645],["▁lumina",-11.95999240875244],["▁130",-11.960073471069336],["▁Platform",-11.960121154785156],["▁SMS",-11.96022129058838],["▁medic",-11.96024227142334],["hör",-11.960315704345703],["▁Kas",-11.96038818359375],["▁tomato",-11.960403442382812],["▁logiciel",-11.960505485534668],["php",-11.960654258728027],["▁premises",-11.96071720123291],["▁Communication",-11.96072769165039],["▁reprezintă",-11.96076202392578],["▁Partners",-11.960866928100586],["▁RV",-11.961090087890623],["▁pants",-11.96119785308838],["▁envie",-11.961256980895996],["▁commerce",-11.961263656616213],["▁tears",-11.961298942565918],["▁cooler",-11.96149444580078],["strand",-11.961556434631348],["▁Gil",-11.961588859558104],["▁référence",-11.961641311645508],["▁electronics",-11.961681365966797],["exposition",-11.961700439453123],["▁Caribbean",-11.96171760559082],["▁compelling",-11.96171760559082],["luci",-11.96172332763672],["▁Brooklyn",-11.961892127990724],["▁Thai",-11.961950302124023],["dler",-11.96198844909668],["▁supra",-11.962016105651855],["centered",-11.962026596069336],["▁metro",-11.962081909179688],["▁03",-11.962299346923828],["▁enrich",-11.962437629699709],["▁adevarat",-11.962594985961914],["5000",-11.962961196899414],["▁bell",-11.96297550201416],["▁sine",-11.96299648284912],["▁appealing",-11.963088989257812],["clam",-11.963116645812988],["▁vorhanden",-11.963165283203123],["▁pickup",-11.963268280029297],["▁Alaska",-11.963269233703612],["▁Nacht",-11.963300704956056],["borough",-11.9633207321167],["▁Blanc",-11.96340274810791],["▁apare",-11.963616371154783],["▁Works",-11.96379852294922],["mettent",-11.963801383972168],["atter",-11.96389389038086],["terra",-11.963946342468262],["▁Bit",-11.964105606079102],["RL",-11.964131355285645],["▁Wander",-11.964262962341309],["▁Hawk",-11.964595794677734],["▁Probleme",-11.964665412902832],["regel",-11.964729309082031],["hne",-11.964739799499512],["fass",-11.96486759185791],["▁Andy",-11.965014457702637],["▁befinde",-11.965179443359377],["boo",-11.965265274047852],["▁connectivity",-11.965304374694824],["▁spielt",-11.965418815612791],["zweiten",-11.96547794342041],["ţilor",-11.965526580810549],["▁confi",-11.96561336517334],["▁schlecht",-11.965773582458496],["▁Beginn",-11.96581745147705],["▁floating",-11.965903282165527],["nimmt",-11.966071128845217],["▁arbeiten",-11.96611213684082],["pillar",-11.966131210327148],["sterreich",-11.966347694396973],["▁Schule",-11.96644687652588],["▁durée",-11.96652126312256],["▁honestly",-11.96653938293457],["▁acel",-11.9666166305542],["▁Prozess",-11.96662425994873],["Min",-11.966629028320312],["enii",-11.966632843017578],["DAY",-11.966758728027344],["▁Blo",-11.966806411743164],["▁bolt",-11.966946601867676],["sicher",-11.967070579528809],["▁17,",-11.967122077941896],["▁anchor",-11.967215538024902],["▁consistency",-11.967241287231444],["▁relatives",-11.967263221740724],["▁lac",-11.967385292053224],["105",-11.967432975769045],["▁Craig",-11.967534065246582],["▁mandate",-11.967598915100098],["▁bedeutet",-11.967674255371094],["▁Soviet",-11.967680931091309],["▁arguments",-11.967938423156738],["▁Gebäude",-11.967997550964355],["▁Parliament",-11.968005180358888],["▁Kha",-11.968087196350098],["nica",-11.968130111694336],["▁Amazing",-11.968162536621094],["gründe",-11.968179702758787],["▁Ott",-11.968269348144531],["Exp",-11.968314170837402],["▁ianuarie",-11.96848201751709],["riot",-11.968571662902832],["▁futur",-11.968626976013184],["▁Honda",-11.968647956848145],["!!!!",-11.96865177154541],["▁citit",-11.968689918518066],["▁22,",-11.968708992004396],["țional",-11.968711853027344],["▁lovers",-11.968732833862305],["▁Current",-11.968835830688477],["▁drone",-11.96927261352539],["▁promising",-11.969335556030272],["devoted",-11.969443321228027],["▁Born",-11.969520568847656],["▁viitor",-11.969589233398438],["▁ritual",-11.969614028930664],["▁Guard",-11.969681739807127],["09.",-11.969828605651855],["▁Py",-11.970260620117188],["▁finds",-11.970380783081056],["▁boli",-11.970394134521484],["▁Mitglieder",-11.970697402954102],["ogni",-11.97107982635498],["▁stones",-11.97118854522705],["rox",-11.971210479736328],["▁dock",-11.971390724182127],["▁onion",-11.97144889831543],["▁classified",-11.971538543701172],["big",-11.97183322906494],["RG",-11.971857070922852],["influenced",-11.97195529937744],["▁sudden",-11.971988677978516],["▁ample",-11.97204303741455],["án",-11.972095489501951],["▁ornament",-11.972122192382812],["datele",-11.972227096557615],["▁Dad",-11.97225284576416],["BER",-11.972278594970703],["gerecht",-11.97238063812256],["kett",-11.972536087036133],["▁Antonio",-11.972572326660156],["Nu",-11.972834587097168],["dium",-11.97284984588623],["CAD",-11.972850799560549],["▁bundle",-11.97291660308838],["▁Vari",-11.97301197052002],["▁thrive",-11.973020553588867],["▁Seminar",-11.973071098327637],["wire",-11.973084449768066],["▁contributing",-11.973114967346191],["▁Bour",-11.97320556640625],["▁dori",-11.973206520080566],["▁packing",-11.97343921661377],["▁colleges",-11.973459243774414],["▁garbage",-11.97366714477539],["▁vector",-11.973837852478027],["▁suggestion",-11.97389793395996],["borne",-11.973904609680176],["▁Listen",-11.973938941955566],["▁Prix",-11.973957061767578],["viennent",-11.974162101745604],["insbesondere",-11.97426700592041],["▁fonctionne",-11.974435806274414],["▁mainstream",-11.974485397338867],["▁merci",-11.974574089050291],["oko",-11.97460651397705],["▁Commerce",-11.97493839263916],["▁droits",-11.975115776062012],["▁muzica",-11.975141525268556],["▁profesor",-11.9751558303833],["▁epic",-11.97518253326416],["▁intuitive",-11.975186347961426],["▁aggregate",-11.975223541259766],["▁vaccine",-11.97529411315918],["▁dank",-11.975459098815918],["▁situ",-11.975578308105469],["▁Cand",-11.975593566894531],["▁Ganz",-11.97562313079834],["▁Crystal",-11.97578239440918],["▁discretion",-11.975825309753418],["mug",-11.975997924804688],["▁anzu",-11.976144790649414],["▁cement",-11.97616958618164],["▁priest",-11.97625732421875],["▁rejected",-11.976298332214355],["▁Summit",-11.976325988769531],["▁Sara",-11.97642421722412],["▁palette",-11.976527214050291],["▁continuare",-11.976569175720217],["uge",-11.976676940917969],["ryl",-11.976844787597656],["▁Solid",-11.977142333984377],["▁meilleure",-11.977177619934082],["▁Tennessee",-11.977248191833496],["rail",-11.97732639312744],["▁attributes",-11.9773530960083],["▁vessels",-11.977840423583984],["cylinder",-11.977900505065918],["▁parfait",-11.977916717529297],["abb",-11.97801399230957],["▁Julie",-11.97806167602539],["▁pièces",-11.978120803833008],["▁proiecte",-11.978142738342283],["médi",-11.978273391723633],["▁décembre",-11.9783935546875],["Per",-11.97841739654541],["1/",-11.978520393371582],["regulated",-11.978601455688477],["▁Dy",-11.978633880615234],["▁23,",-11.978694915771484],["beck",-11.978763580322266],["tură",-11.97885513305664],["▁Chiar",-11.978931427001951],["▁isolated",-11.979012489318848],["▁kennen",-11.979259490966797],["Du",-11.979260444641112],["reflected",-11.979482650756836],["▁belong",-11.979571342468262],["▁welcomed",-11.97969913482666],["▁Rate",-11.979776382446287],["prestigious",-11.979859352111816],["▁1/4",-11.979930877685549],["▁distinction",-11.979966163635254],["▁boring",-11.98000144958496],["▁booked",-11.980369567871094],["▁citizen",-11.980441093444824],["▁comprises",-11.980498313903809],["▁aufge",-11.98051929473877],["GL",-11.980566024780272],["▁nearest",-11.980616569519045],["▁printr",-11.980692863464355],["▁département",-11.981318473815918],["▁planner",-11.981510162353516],["▁Rai",-11.981817245483398],["▁Broad",-11.981934547424316],["▁pastor",-11.981947898864746],["▁reservation",-11.982243537902832],["▁decembrie",-11.982315063476562],["▁suficient",-11.982501983642578],["geld",-11.98256015777588],["training",-11.982620239257812],["deshalb",-11.98263454437256],["▁chaud",-11.982651710510254],["Cor",-11.982662200927734],["▁Grade",-11.982769966125488],["▁faţă",-11.98280906677246],["story",-11.982839584350586],["gericht",-11.98286247253418],["▁Got",-11.982954025268556],["particulièrement",-11.982976913452148],["▁bump",-11.983051300048828],["▁fatigue",-11.983160018920898],["Activ",-11.983250617980955],["▁numéro",-11.983302116394045],["▁stranger",-11.983312606811523],["▁Skin",-11.983327865600586],["add",-11.98344898223877],["Ainsi",-11.98357105255127],["▁assists",-11.983684539794922],["▁zusätzlich",-11.983943939208984],["▁vede",-11.983979225158691],["RON",-11.984108924865724],["▁seemingly",-11.984126091003418],["▁NU",-11.98417854309082],["geb",-11.98427391052246],["▁Release",-11.984353065490724],["▁throwing",-11.984427452087402],["▁Alabama",-11.984447479248049],["▁Something",-11.984590530395508],["▁Cuba",-11.98464584350586],["▁Verbindung",-11.984649658203123],["▁Cir",-11.984654426574709],["your",-11.984713554382324],["-13",-11.984748840332031],["▁Delta",-11.984801292419434],["▁Twin",-11.98504638671875],["▁governance",-11.985156059265137],["▁groom",-11.985310554504396],["▁conception",-11.98533821105957],["▁governor",-11.98538303375244],["▁Spar",-11.985416412353516],["▁coastal",-11.985652923583984],["▁Seven",-11.98585605621338],["▁inclusive",-11.986002922058104],["cili",-11.986035346984863],["▁Ridge",-11.98610019683838],["teller",-11.986224174499512],["▁Kin",-11.986247062683104],["leiter",-11.986279487609863],["stern",-11.986364364624023],["change",-11.986404418945312],["▁presidential",-11.98643398284912],["▁composer",-11.986544609069824],["Stu",-11.986560821533203],["▁Frankfurt",-11.986584663391112],["prä",-11.986639976501465],["▁Ideal",-11.986644744873049],["▁linear",-11.986857414245604],["▁bloom",-11.986879348754885],["▁grades",-11.986881256103516],["mettant",-11.98692512512207],["▁finishes",-11.986952781677246],["holz",-11.987086296081545],["▁dirty",-11.987317085266112],["▁Roh",-11.987386703491213],["▁Praxis",-11.987408638000488],["tempo",-11.987433433532717],["▁attempted",-11.987433433532717],["▁primar",-11.987434387207031],["▁pomp",-11.987528800964355],["▁tolle",-11.987614631652832],["▁adres",-11.988011360168455],["▁Between",-11.988066673278809],["▁ruin",-11.988432884216309],["▁matériel",-11.988561630249023],["MER",-11.988913536071776],["Nevertheless",-11.989055633544922],["▁corruption",-11.98911952972412],["spire",-11.989180564880373],["▁mou",-11.989208221435549],["ROM",-11.98927879333496],["▁underground",-11.98935604095459],["▁relativ",-11.989389419555664],["waited",-11.989462852478027],["▁speeds",-11.989468574523926],["▁adjusted",-11.989486694335938],["▁Flat",-11.989514350891112],["UND",-11.98965835571289],["▁individuelle",-11.989744186401367],["▁anybody",-11.98978042602539],["EO",-11.989790916442873],["->",-11.989791870117188],["▁Spend",-11.989876747131348],["aktion",-11.99001121520996],["édit",-11.99006462097168],["▁quest",-11.990078926086426],["rind",-11.990541458129885],["▁mediu",-11.99057388305664],["▁barriers",-11.99062442779541],["▁répondre",-11.990633010864258],["▁novembre",-11.990708351135254],["▁champ",-11.990736961364746],["saw",-11.990757942199709],["▁fed",-11.990804672241213],["▁favorites",-11.990939140319824],["▁shield",-11.991055488586426],["▁Wide",-11.991146087646484],["▁problema",-11.991445541381836],["▁Asta",-11.991525650024414],["▁refreshing",-11.99168872833252],["hey",-11.991692543029783],["obtaining",-11.991788864135742],["▁parler",-11.992072105407717],["▁Cele",-11.99213409423828],["frage",-11.992136001586914],["écran",-11.992324829101562],["▁cleared",-11.992448806762695],["zehn",-11.992594718933104],["parmi",-11.992647171020508],["änder",-11.99269199371338],["▁Defense",-11.992693901062012],["tatea",-11.99269676208496],["▁reasonably",-11.992939949035645],["▁Idee",-11.992985725402832],["nehm",-11.993000030517578],["technologie",-11.993020057678224],["atura",-11.993048667907717],["▁slope",-11.993332862854004],["Hence",-11.993351936340332],["▁40%",-11.99339199066162],["▁jewe",-11.993448257446287],["▁queries",-11.993470191955566],["▁$8",-11.994096755981444],["▁Parker",-11.994107246398926],["▁publique",-11.994488716125488],["quant",-11.994529724121094],["issue",-11.994690895080566],["▁Cleveland",-11.994847297668455],["4,000",-11.995071411132812],["IDE",-11.995145797729492],["▁Barbara",-11.995233535766602],["udge",-11.995477676391602],["corn",-11.99554443359375],["veți",-11.995588302612305],["▁proteins",-11.995707511901855],["▁trăi",-11.995793342590332],["▁mijloc",-11.995842933654783],["logie",-11.995884895324709],["▁Walter",-11.995884895324709],["heißt",-11.99593448638916],["search",-11.995946884155272],["▁hochwertige",-11.996010780334473],["▁încerc",-11.996014595031738],["▁administrator",-11.99608039855957],["tension",-11.996133804321287],["▁homemade",-11.996438026428224],["▁$20",-11.99651050567627],["▁leben",-11.996662139892578],["netz",-11.996665954589844],["▁intensity",-11.996882438659668],["▁clever",-11.996891975402832],["▁installer",-11.996999740600586],["▁Wand",-11.997087478637695],["meister",-11.997130393981934],["ziel",-11.99744701385498],["▁architect",-11.99748706817627],["▁crede",-11.997512817382812],["▁Sleep",-11.997675895690918],["▁demonstr",-11.997745513916016],["cake",-11.99778175354004],["▁Cheap",-11.997783660888672],["pool",-11.9979829788208],["▁gadget",-11.998004913330078],["▁Anbieter",-11.998005867004396],["▁Jonathan",-11.998170852661133],["ül",-11.998492240905762],["▁Harvard",-11.99850368499756],["▁1985",-11.998773574829102],["HP",-11.998839378356934],["▁afara",-11.99893569946289],["▁halten",-11.999008178710938],["▁Technik",-11.999042510986328],["▁dressed",-11.999149322509766],["weis",-11.999165534973145],["▁donated",-11.9993314743042],["also",-11.99938678741455],["▁EN",-11.99940586090088],["▁imprim",-11.99942398071289],["▁onions",-11.99945831298828],["Par",-11.99950122833252],["▁donate",-11.99958324432373],["▁mice",-11.999610900878906],["referring",-11.999897956848145],["▁restored",-12.00003433227539],["▁amateur",-12.0000581741333],["▁Switch",-12.000075340270996],["appel",-12.00013542175293],["▁idéal",-12.0001859664917],["▁wheat",-12.000199317932127],["▁lime",-12.000240325927734],["REA",-12.00027084350586],["riti",-12.000357627868652],["ţiile",-12.00058364868164],["▁machinery",-12.00064754486084],["UNE",-12.00089168548584],["▁Cont",-12.000971794128418],["▁attendees",-12.001014709472656],["▁aparat",-12.001080513000488],["freundlich",-12.00117301940918],["▁zilnic",-12.001175880432127],["▁spark",-12.001421928405762],["▁Gast",-12.001459121704102],["▁Issue",-12.00147533416748],["▁scam",-12.001566886901855],["▁bonds",-12.00161838531494],["owner",-12.001641273498535],["▁empfehlen",-12.001673698425291],["elia",-12.001749992370604],["cic",-12.001757621765137],["▁honored",-12.001800537109377],["▁castle",-12.001846313476562],["avand",-12.00205898284912],["rough",-12.002108573913574],["▁Address",-12.002116203308104],["angle",-12.00217342376709],["leton",-12.002259254455566],["▁locked",-12.002392768859863],["▁consolid",-12.00248908996582],["▁voucher",-12.003011703491213],["ației",-12.003201484680176],["wachsen",-12.003211975097656],["▁magazines",-12.003287315368652],["▁Schools",-12.003318786621094],["▁voices",-12.003362655639648],["▁Dry",-12.003479957580566],["▁tricks",-12.00349235534668],["schließlich",-12.003546714782717],["▁loyalty",-12.003687858581545],["risk",-12.003764152526855],["▁Vers",-12.003786087036133],["chester",-12.003802299499512],["▁decorated",-12.003830909729004],["▁copiilor",-12.003969192504885],["riz",-12.003994941711426],["03.",-12.004013061523438],["▁Hur",-12.004016876220703],["▁archive",-12.004021644592283],["▁Continue",-12.004042625427246],["▁Nähe",-12.004043579101562],["jit",-12.004090309143066],["gekommen",-12.004301071166992],["▁conjunction",-12.004349708557127],["combining",-12.004404067993164],["▁Unterstützung",-12.004517555236816],["oza",-12.004593849182127],["▁sketch",-12.004720687866213],["▁arată",-12.004731178283691],["▁Mining",-12.004765510559082],["uous",-12.004791259765623],["▁devis",-12.004834175109863],["Almost",-12.004862785339355],["Hu",-12.005037307739258],["▁Om",-12.005366325378418],["MF",-12.00544548034668],["liz",-12.005451202392578],["▁fails",-12.005456924438477],["▁comparable",-12.005459785461426],["▁vein",-12.005547523498535],["▁Vis",-12.00561809539795],["▁viagra",-12.005654335021973],["▁farming",-12.005678176879885],["▁Late",-12.005765914916992],["geschrieben",-12.006033897399902],["hrew",-12.006103515625],["▁melt",-12.006120681762695],["lager",-12.006168365478516],["halte",-12.006240844726562],["▁Hotels",-12.006266593933104],["▁facebook",-12.0064058303833],["▁défi",-12.006550788879396],["shore",-12.006802558898926],["▁membrane",-12.006866455078123],["▁sixth",-12.006903648376465],["api",-12.007003784179688],["▁Owner",-12.007222175598145],["▁(\"",-12.007234573364258],["▁$50",-12.007280349731444],["▁protective",-12.007420539855955],["/2",-12.007548332214355],["▁Girls",-12.007562637329102],["Gri",-12.00769329071045],["▁nouă",-12.007708549499512],["▁infections",-12.007813453674316],["rân",-12.007868766784668],["▁Geb",-12.0078763961792],["▁Conseil",-12.007905006408691],["▁imagini",-12.007909774780272],["▁promotions",-12.00794792175293],["▁enforce",-12.00795841217041],["▁applicant",-12.007965087890623],["▁Apart",-12.008087158203123],["▁progression",-12.008151054382324],["▁careers",-12.008511543273926],["▁litigation",-12.008533477783203],["▁Menge",-12.00866413116455],["▁Contract",-12.00871753692627],["▁Kel",-12.0087308883667],["▁réserve",-12.008769035339355],["▁Cold",-12.008870124816896],["▁larg",-12.009040832519531],["▁microwave",-12.009090423583984],["▁Whit",-12.009212493896484],["▁Technologies",-12.009381294250488],["OU",-12.00949478149414],["itudine",-12.00959587097168],["▁handles",-12.009895324707031],["▁proceedings",-12.009982109069824],["▁prizes",-12.010043144226074],["▁unterstützen",-12.010062217712402],["▁piele",-12.010090827941896],["▁profound",-12.010153770446776],["schließen",-12.0101957321167],["▁trafic",-12.01025104522705],["▁Nar",-12.010441780090332],["▁Gesamt",-12.0106201171875],["▁bugs",-12.010720252990724],["▁Amy",-12.010764122009276],["▁eastern",-12.010775566101074],["nice",-12.010784149169922],["▁Besuch",-12.010835647583008],["▁synth",-12.010892868041992],["▁clasa",-12.011194229125977],["Book",-12.01134204864502],["▁ribbon",-12.011415481567385],["▁neues",-12.011431694030762],["ZE",-12.011504173278809],["▁peers",-12.011613845825195],["leistung",-12.011730194091797],["▁internship",-12.011808395385742],["count",-12.011850357055664],["nam",-12.01193618774414],["▁12-",-12.012072563171388],["acked",-12.012146949768066],["gonna",-12.012146949768066],["▁Dinge",-12.01215648651123],["Time",-12.012299537658691],["▁twelve",-12.01242446899414],["eye",-12.012432098388672],["▁avantaj",-12.01253604888916],["▁Glas",-12.012731552124023],["aucune",-12.0127534866333],["▁boil",-12.01276397705078],["▁Gray",-12.012773513793944],["adapt",-12.01288890838623],["occ",-12.012895584106444],["▁prieten",-12.012897491455078],["▁trai",-12.01296615600586],["▁Scal",-12.013009071350098],["▁conscious",-12.013057708740234],["▁charter",-12.013093948364258],["KS",-12.013242721557615],["▁Barr",-12.013404846191406],["▁summit",-12.01341152191162],["▁inflammation",-12.013439178466797],["tungs",-12.013440132141112],["ovic",-12.013449668884276],["▁conduit",-12.013465881347656],["▁Alice",-12.013702392578123],["▁veterans",-12.013850212097168],["Während",-12.013944625854492],["▁maximal",-12.014013290405272],["▁Hawaii",-12.014037132263184],["▁Pine",-12.01432991027832],["acelasi",-12.014391899108888],["hyp",-12.014424324035645],["sensitivity",-12.01445198059082],["pour",-12.014481544494627],["ре",-12.014493942260742],["▁Kentucky",-12.015129089355469],["▁badge",-12.015276908874512],["affecting",-12.015310287475586],["▁chairman",-12.015311241149902],["▁München",-12.015467643737791],["▁Hersteller",-12.015469551086426],["▁urmat",-12.015615463256836],["tels",-12.015654563903809],["▁FM",-12.015701293945312],["▁Basis",-12.015732765197754],["▁erklärt",-12.015809059143066],["▁changer",-12.015859603881836],["tischen",-12.0159330368042],["▁brave",-12.015960693359377],["▁siguranta",-12.015986442565918],["▁partnerships",-12.015989303588867],["ților",-12.015999794006348],["▁breathe",-12.016141891479492],["rink",-12.016551971435549],["▁footage",-12.016654014587402],["▁transformed",-12.016658782958984],["▁prep",-12.01686668395996],["▁upset",-12.016901969909668],["▁Native",-12.017059326171877],["▁Prima",-12.017154693603516],["▁jersey",-12.017163276672363],["230",-12.017182350158691],["▁lucrurile",-12.017393112182615],["▁divine",-12.017502784729004],["▁Pit",-12.017593383789062],["RIS",-12.01765251159668],["▁Cultural",-12.017672538757324],["▁exotic",-12.017786979675291],["▁tastes",-12.017881393432615],["▁bargain",-12.017913818359377],["▁optimize",-12.017985343933104],["▁électrique",-12.018012046813965],["deuxième",-12.018030166625977],["▁Gary",-12.018085479736328],["▁projection",-12.018122673034668],["▁sliding",-12.018195152282717],["club",-12.018216133117676],["association",-12.01823902130127],["▁LG",-12.018259048461914],["▁capsule",-12.018291473388672],["▁politicians",-12.018397331237791],["▁thumb",-12.018423080444336],["▁globally",-12.018743515014648],["positioned",-12.018796920776367],["▁Hamilton",-12.018861770629885],["arme",-12.018881797790527],["▁efectuat",-12.018881797790527],["zip",-12.01911163330078],["▁welfare",-12.019201278686523],["Leistung",-12.019230842590332],["▁Bac",-12.019316673278809],["▁fizic",-12.019338607788086],["OK",-12.019454002380373],["▁limba",-12.019545555114746],["▁wardrobe",-12.019549369812012],["▁offline",-12.019627571105955],["▁fortune",-12.019665718078612],["▁dialog",-12.019681930541992],["▁dramatically",-12.01997184753418],["▁NYC",-12.020045280456545],["▁Rem",-12.02017593383789],["▁bronze",-12.020455360412598],["▁pulse",-12.02053451538086],["Fortunately",-12.020562171936035],["▁glue",-12.020596504211426],["▁Expo",-12.02072048187256],["▁profitable",-12.020776748657228],["▁distributor",-12.020845413208008],["abilité",-12.020869255065918],["▁lyrics",-12.020913124084473],["▁mesh",-12.02114486694336],["▁organizational",-12.021157264709473],["▁vanilla",-12.021249771118164],["▁foc",-12.021355628967283],["▁1984",-12.02147388458252],["▁créé",-12.02172565460205],["▁servi",-12.022027969360352],["▁underneath",-12.022095680236816],["▁surveys",-12.022143363952637],["▁genes",-12.022238731384276],["▁limite",-12.02224349975586],["oder",-12.022247314453123],["▁mandatory",-12.022269248962402],["▁hospitality",-12.022303581237791],["▁bikes",-12.022309303283691],["▁Quote",-12.022358894348145],["glu",-12.02241039276123],["▁activitatea",-12.022513389587402],["preventing",-12.022584915161133],["▁Kh",-12.02259635925293],["économie",-12.022616386413574],["▁visite",-12.022757530212402],["▁spectacle",-12.022778511047363],["▁tract",-12.022860527038574],["▁quant",-12.022862434387209],["▁evolu",-12.022866249084473],["▁invata",-12.023070335388184],["▁homo",-12.02311897277832],["▁Users",-12.02344799041748],["introducing",-12.023632049560549],["hibi",-12.023661613464355],["▁Instrument",-12.023805618286133],["▁ép",-12.023839950561523],["▁Raj",-12.023869514465332],["▁executives",-12.023881912231444],["atoire",-12.023885726928713],["▁erforderlich",-12.02397346496582],["male",-12.024211883544922],["umble",-12.02427101135254],["erson",-12.024277687072754],["▁Treatment",-12.024286270141602],["▁Representative",-12.024314880371094],["▁corners",-12.024409294128418],["▁Petit",-12.024599075317385],["8)",-12.02464771270752],["▁Walker",-12.024714469909668],["▁Stir",-12.02476692199707],["/19",-12.024767875671388],["▁Stelle",-12.024979591369627],["ără",-12.025009155273438],["osse",-12.025166511535645],["2000",-12.025189399719238],["▁McG",-12.025580406188965],["DV",-12.02577304840088],["▁Firm",-12.02586269378662],["▁packet",-12.025904655456545],["Toate",-12.02640438079834],["▁institutional",-12.026479721069336],["rug",-12.026663780212402],["DG",-12.026837348937988],["fine",-12.026837348937988],["bringen",-12.026856422424316],["▁Horse",-12.026921272277832],["▁premiere",-12.026937484741213],["▁Că",-12.027026176452637],["acheter",-12.02703857421875],["▁Afghanistan",-12.027053833007812],["▁Prop",-12.027085304260254],["ühr",-12.02715015411377],["▁braucht",-12.027398109436035],["▁sunny",-12.027424812316896],["▁Sach",-12.027461051940918],["▁volumes",-12.02753734588623],["tinut",-12.02759838104248],["▁Sho",-12.027722358703612],["▁winds",-12.027735710144045],["▁Mall",-12.027873992919922],["ledge",-12.02793788909912],["▁sciences",-12.027997016906738],["plication",-12.028024673461914],["VR",-12.028068542480469],["destin",-12.028234481811523],["▁früh",-12.02833366394043],["▁tongue",-12.028359413146973],["▁Jennifer",-12.028425216674805],["▁bracket",-12.028427124023438],["▁episodes",-12.02845287322998],["breite",-12.028461456298828],["▁stoc",-12.028635025024414],["ilia",-12.028728485107422],["▁Gulf",-12.02874755859375],["▁transparency",-12.028768539428713],["Industrie",-12.028853416442873],["▁viewers",-12.028916358947754],["AIN",-12.029129981994627],["▁Registration",-12.029149055480955],["/4",-12.029309272766112],["▁fera",-12.029337882995604],["▁06",-12.029351234436035],["▁einzu",-12.029391288757324],["enburg",-12.02944278717041],["▁eff",-12.029449462890623],["▁Stage",-12.029558181762695],["▁Cour",-12.029685020446776],["indu",-12.029836654663086],["▁Tools",-12.029909133911133],["IST",-12.029921531677246],["grund",-12.030105590820312],["seitig",-12.030153274536133],["pai",-12.030250549316406],["▁waist",-12.030350685119627],["▁Therapy",-12.03049373626709],["▁nomination",-12.030599594116213],["▁seama",-12.030790328979492],["▁analyse",-12.030975341796877],["▁emerge",-12.031044006347656],["▁adjustment",-12.03110694885254],["▁stroll",-12.03110694885254],["▁Beyond",-12.031174659729004],["▁legally",-12.03122615814209],["▁gauge",-12.03123664855957],["▁26,",-12.031360626220703],["Tex",-12.031390190124512],["economic",-12.031488418579102],["stoffe",-12.031532287597656],["Wir",-12.031559944152832],["ffen",-12.031601905822754],["▁acoperi",-12.031609535217283],["▁finale",-12.031792640686035],["▁theoretical",-12.031864166259766],["1.3",-12.031875610351562],["anim",-12.031888008117676],["▁separation",-12.031928062438965],["agence",-12.031937599182127],["▁réalisé",-12.032069206237791],["sprech",-12.03215503692627],["▁embedded",-12.032208442687988],["▁defence",-12.03224277496338],["éni",-12.032569885253906],["▁Norman",-12.03261375427246],["▁insgesamt",-12.032621383666992],["▁reminde",-12.032631874084473],["▁timeline",-12.032703399658203],["▁symbols",-12.032770156860352],["▁booth",-12.03278350830078],["▁Window",-12.032788276672363],["▁Titan",-12.032910346984863],["înt",-12.033021926879885],["▁langa",-12.033021926879885],["isant",-12.03303337097168],["hart",-12.033113479614258],["broader",-12.033266067504885],["▁stays",-12.033288955688477],["dur",-12.033488273620604],["▁Actually",-12.033514022827148],["works",-12.03351879119873],["▁réussi",-12.03357219696045],["▁performant",-12.033658981323242],["▁banana",-12.033788681030272],["▁baked",-12.033870697021484],["▁Parlament",-12.033931732177734],["▁Legend",-12.03396701812744],["toata",-12.034172058105469],["platte",-12.03419017791748],["▁Mou",-12.034192085266112],["HL",-12.034235000610352],["▁(8",-12.034290313720703],["▁accepting",-12.034313201904297],["▁Senator",-12.034340858459473],["▁consciousness",-12.034396171569824],["▁conducting",-12.0344820022583],["▁panic",-12.034833908081056],["▁FDA",-12.035112380981444],["▁(7",-12.035163879394531],["tool",-12.035300254821776],["▁Shipping",-12.03538703918457],["▁hop",-12.035545349121094],["▁conferences",-12.03564167022705],["▁pork",-12.035661697387695],["▁spam",-12.035730361938477],["▁interesant",-12.035815238952637],["▁Tagen",-12.03581714630127],["sig",-12.035886764526367],["étro",-12.036044120788574],["▁legendary",-12.036449432373049],["▁Alternative",-12.036643981933594],["iana",-12.036704063415527],["▁responsable",-12.036888122558594],["▁Mihai",-12.037237167358398],["▁decreased",-12.037345886230469],["▁organised",-12.037485122680664],["▁Lamp",-12.037589073181152],["litz",-12.037622451782228],["ohn",-12.037622451782228],["▁moteur",-12.0376615524292],["III",-12.03768539428711],["▁Montag",-12.037755012512209],["▁naturel",-12.037814140319824],["▁Hus",-12.037842750549316],["▁Schl",-12.037884712219238],["ains",-12.037968635559082],["▁dying",-12.0380859375],["▁HIV",-12.038115501403809],["],",-12.038164138793944],["alität",-12.03818416595459],["▁institute",-12.038249015808104],["mix",-12.038433074951172],["▁Regulation",-12.038453102111816],["▁pagina",-12.03857707977295],["▁Awesome",-12.03860092163086],["▁Official",-12.03860092163086],["▁Minute",-12.038601875305176],["▁dairy",-12.038787841796877],["▁carti",-12.038881301879885],["isk",-12.039091110229492],["▁thrilled",-12.039138793945312],["▁german",-12.039172172546388],["▁frustration",-12.039228439331056],["▁forums",-12.03927230834961],["command",-12.039361000061035],["▁router",-12.039399147033691],["▁Lösung",-12.039423942565918],["white",-12.039470672607422],["▁synthetic",-12.039487838745115],["▁retrouver",-12.039554595947266],["alle",-12.039621353149414],["daran",-12.039653778076172],["▁wahr",-12.039697647094728],["▁paths",-12.039875984191896],["▁unver",-12.039962768554688],["▁Environment",-12.0400972366333],["▁médecin",-12.040510177612305],["crypt",-12.040572166442873],["▁pursuit",-12.040595054626465],["flat",-12.040611267089844],["bron",-12.040698051452637],["▁Specialist",-12.040852546691896],["▁Vent",-12.041157722473145],["Gen",-12.04132080078125],["▁attraction",-12.04132080078125],["▁piese",-12.041372299194336],["CHE",-12.041665077209473],["fähig",-12.04172420501709],["▁28,",-12.041773796081545],["defender",-12.041810989379885],["▁stupid",-12.04181957244873],["enfin",-12.04185962677002],["▁composite",-12.04207706451416],["fragen",-12.042202949523926],["Part",-12.042232513427734],["may",-12.042238235473633],["▁Bucureşti",-12.042248725891112],["▁février",-12.042248725891112],["RED",-12.042417526245115],["▁makers",-12.042462348937988],["▁guns",-12.042594909667969],["▁pasta",-12.042706489562988],["STR",-12.04271125793457],["▁worthy",-12.042760848999023],["Poate",-12.042783737182615],["▁101",-12.04286003112793],["▁souhaitez",-12.04299545288086],["GN",-12.043449401855469],["drive",-12.043499946594238],["▁aveti",-12.043582916259766],["▁eventual",-12.043591499328612],["▁américain",-12.043642044067385],["▁Mine",-12.043678283691406],["▁sunset",-12.043729782104492],["▁Choice",-12.04384422302246],["▁offset",-12.043944358825684],["APP",-12.04410457611084],["▁suchen",-12.044130325317385],["▁aduc",-12.044228553771973],["▁Unternehmens",-12.044342041015623],["▁//",-12.044651985168455],["▁astept",-12.044678688049316],["▁Birthday",-12.045061111450195],["▁barn",-12.045083999633787],["apport",-12.045105934143066],["▁collar",-12.045212745666504],["▁gefunden",-12.045294761657717],["▁Hai",-12.045429229736328],["▁Soul",-12.04544162750244],["ismus",-12.045654296875],["letzt",-12.045754432678224],["▁maker",-12.045841217041016],["▁executed",-12.045857429504396],["▁Forschung",-12.045915603637695],["▁täglich",-12.045958518981934],["▁tailor",-12.045960426330566],["▁headquarters",-12.0460844039917],["▁physicians",-12.046112060546877],["▁Scout",-12.04612636566162],["folgen",-12.046175003051758],["▁cycling",-12.046184539794922],["mindestens",-12.04620361328125],["▁joli",-12.046216011047363],["▁classification",-12.046225547790527],["▁Führung",-12.046258926391602],["▁peau",-12.04629135131836],["INT",-12.046502113342283],["▁Garage",-12.046664237976074],["teile",-12.046714782714844],["util",-12.046716690063477],["▁petrec",-12.046751022338867],["▁Nevada",-12.046826362609863],["▁laisser",-12.04706859588623],["▁territoire",-12.047131538391112],["▁fichier",-12.047154426574709],["▁Formula",-12.047343254089355],["scopul",-12.04737949371338],["▁Tee",-12.047486305236816],["▁Monte",-12.047529220581056],["▁pumpkin",-12.04757022857666],["▁picnic",-12.047589302062988],["▁occupation",-12.047652244567873],["▁numérique",-12.047831535339355],["linie",-12.04786491394043],["▁masina",-12.048117637634276],["▁Prä",-12.048173904418944],["▁dezvoltare",-12.048177719116213],["▁vient",-12.048291206359863],["▁ranks",-12.048295021057127],["▁Bruce",-12.048420906066896],["▁seara",-12.048433303833008],["▁hungry",-12.04856300354004],["▁resolved",-12.048650741577148],["paired",-12.048735618591309],["▁Congratulations",-12.04888153076172],["▁religi",-12.04891872406006],["sätze",-12.04897689819336],["▁Eat",-12.049172401428224],["▁dense",-12.049442291259766],["▁slice",-12.049447059631348],["▁mulți",-12.049463272094728],["▁vorbe",-12.049517631530762],["▁terminate",-12.049779891967772],["worm",-12.049880981445312],["ignon",-12.0499267578125],["▁Howard",-12.049992561340332],["▁toddler",-12.05001735687256],["▁waters",-12.050033569335938],["▁graduates",-12.0501708984375],["▁fundraising",-12.050298690795898],["06.",-12.05031967163086],["▁scent",-12.05034637451172],["▁CPU",-12.050406455993652],["▁Kid",-12.05045223236084],["▁Years",-12.050460815429688],["▁Oktober",-12.05063533782959],["filled",-12.050726890563965],["▁Laser",-12.05079460144043],["▁tut",-12.051032066345217],["ively",-12.051101684570312],["▁WiFi",-12.051161766052246],["standen",-12.051176071166992],["▁publié",-12.051243782043455],["▁explaining",-12.051279067993164],["trieb",-12.051288604736328],["▁Rapid",-12.0513334274292],["▁unterstützt",-12.051352500915527],["▁Sonnen",-12.051401138305664],["▁lenses",-12.05141544342041],["▁pressing",-12.051477432250977],["▁respected",-12.051657676696776],["adapted",-12.051706314086914],["Don",-12.05172634124756],["▁mun",-12.051733016967772],["MAR",-12.05180835723877],["▁seam",-12.051852226257324],["chev",-12.05214023590088],["▁Sozial",-12.052424430847168],["▁Arabia",-12.052485466003418],["▁equation",-12.05257511138916],["▁elevi",-12.052780151367188],["▁piata",-12.052868843078612],["JA",-12.052873611450195],["▁wholesale",-12.05288791656494],["▁faithful",-12.05296516418457],["legal",-12.053092002868652],["▁Brexit",-12.053095817565918],["vention",-12.053120613098145],["▁adhere",-12.053221702575684],["▁Associate",-12.053257942199709],["▁decorations",-12.053272247314451],["▁crois",-12.053359985351562],["buck",-12.053370475769045],["▁smartphones",-12.053421020507812],["Regardless",-12.053427696228027],["center",-12.053434371948242],["eiß",-12.053481101989746],["▁emotion",-12.053584098815918],["▁Gespräch",-12.053797721862791],["▁Avi",-12.053963661193848],["▁loft",-12.054059982299805],["▁Wissen",-12.054391860961914],["▁orchestra",-12.05439567565918],["▁gehören",-12.054421424865724],["▁Reich",-12.054532051086426],["▁abandoned",-12.054548263549805],["▁Lanka",-12.05458641052246],["pala",-12.054832458496094],["▁Stell",-12.054838180541992],["logged",-12.054924964904783],["terie",-12.054935455322266],["▁educa",-12.054954528808594],["1).",-12.055097579956056],["▁disponibil",-12.055119514465332],["IND",-12.055197715759276],["▁Pont",-12.055288314819336],["▁téléphone",-12.05539894104004],["▁rope",-12.05559539794922],["ève",-12.055622100830078],["▁Trainer",-12.056062698364258],["▁présence",-12.0560941696167],["▁Oscar",-12.056121826171877],["▁VR",-12.056342124938965],["▁Besucher",-12.056357383728027],["▁disponibles",-12.056447982788086],["▁gelten",-12.056604385375977],["▁ports",-12.056645393371582],["Invest",-12.056693077087402],["ésormais",-12.056795120239258],["schauen",-12.056880950927734],["▁Command",-12.056958198547363],["▁alternate",-12.05709171295166],["citation",-12.05713939666748],["évolution",-12.05714225769043],["▁Maine",-12.05714511871338],["pflege",-12.057174682617188],["2011",-12.057343482971191],["▁Ground",-12.057364463806152],["▁ghost",-12.057418823242188],["lebt",-12.057530403137209],["▁scenarios",-12.057595252990724],["▁mall",-12.057634353637695],["▁Kings",-12.057653427124023],["▁15%",-12.057848930358888],["▁Paint",-12.057848930358888],["FD",-12.057849884033203],["ugg",-12.058011054992676],["▁Leon",-12.058023452758787],["▁grows",-12.058135032653809],["▁pharmacy",-12.058384895324709],["▁situat",-12.0584135055542],["20,000",-12.05855941772461],["▁10,000",-12.058760643005373],["▁membre",-12.058771133422852],["▁facilement",-12.05880641937256],["▁Analytics",-12.058915138244627],["▁Marvel",-12.058930397033691],["▁survived",-12.059097290039062],["▁conviction",-12.059124946594238],["▁Produktion",-12.059260368347168],["▁professionally",-12.059293746948242],["▁contributor",-12.059486389160156],["▁Kurs",-12.059503555297852],["▁humor",-12.05954933166504],["▁cinci",-12.059609413146973],["▁Different",-12.059670448303224],["▁Verarbeitung",-12.059800148010254],["▁inexpensive",-12.059800148010254],["▁sortie",-12.05980110168457],["▁thankful",-12.059951782226562],["▁vacances",-12.059978485107422],["▁vergangen",-12.059979438781738],["▁wings",-12.05998420715332],["▁nano",-12.06003475189209],["▁touches",-12.060088157653809],["▁Notice",-12.060348510742188],["▁reprezinta",-12.060466766357422],["▁rewarding",-12.060555458068848],["▁Kurz",-12.060580253601074],["▁mega",-12.060611724853516],["▁secrets",-12.060646057128906],["▁vorher",-12.060667037963867],["▁crescut",-12.06074333190918],["▁coordination",-12.060754776000977],["▁dissertation",-12.060863494873049],["▁header",-12.060873985290527],["existent",-12.061070442199709],["thal",-12.061185836791992],["▁translate",-12.061214447021484],["vertrag",-12.06124210357666],["GU",-12.06126594543457],["▁Arthur",-12.061315536499023],["wahl",-12.061534881591797],["▁octobre",-12.061573028564451],["▁bother",-12.06157398223877],["▁pencil",-12.061580657958984],["▁Dyna",-12.061604499816896],["▁complimentary",-12.061651229858398],["écoute",-12.06167697906494],["PB",-12.061722755432127],["▁independently",-12.061759948730469],["▁targeting",-12.061840057373049],["fought",-12.061944961547852],["mental",-12.06211280822754],["▁Veranstaltung",-12.062300682067873],["▁tatsächlich",-12.062314987182615],["▁Features",-12.0625],["▁1920",-12.062554359436035],["▁Domain",-12.062885284423828],["▁rally",-12.062901496887209],["▁iunie",-12.063036918640137],["▁fabrics",-12.063070297241213],["▁mint",-12.063331604003906],["▁antioxidant",-12.063347816467283],["hut",-12.063432693481444],["EPA",-12.063496589660645],["▁rigid",-12.063498497009276],["▁evit",-12.063549995422363],["▁personnage",-12.063977241516112],["▁garanti",-12.0640287399292],["▁Hä",-12.064042091369627],["▁Days",-12.064048767089844],["boarding",-12.064050674438477],["jemand",-12.064166069030762],["▁Pos",-12.06426239013672],["▁wool",-12.064288139343262],["▁boom",-12.064349174499512],["▁wichtige",-12.06447982788086],["▁emerged",-12.064517974853516],["▁smoothly",-12.064802169799805],["▁Interview",-12.064942359924316],["gemäß",-12.06505012512207],["▁suivi",-12.065064430236816],["▁missions",-12.065129280090332],["▁Kreis",-12.06532859802246],["century",-12.065348625183104],["▁tuned",-12.065370559692385],["isieren",-12.065407752990724],["▁Branch",-12.065427780151367],["▁Russell",-12.06548309326172],["▁**",-12.065519332885742],["▁Lehr",-12.065617561340332],["▁perspectives",-12.06569004058838],["▁handed",-12.06570816040039],["▁apporte",-12.065743446350098],["unta",-12.065959930419922],["▁contemplat",-12.066255569458008],["riel",-12.06633472442627],["▁freely",-12.066341400146484],["▁loyal",-12.066451072692873],["▁evolved",-12.066518783569336],["▁Cafe",-12.066548347473145],["▁assignments",-12.066598892211914],["▁Cream",-12.066718101501465],["▁Build",-12.066731452941896],["▁exams",-12.066746711730955],["▁graduation",-12.066765785217283],["▁Dining",-12.066773414611816],["inne",-12.06684398651123],["▁propriu",-12.067055702209473],["▁accordingly",-12.067241668701172],["▁seniors",-12.067484855651855],["▁sisters",-12.067505836486816],["formerly",-12.06765842437744],["▁fleur",-12.067702293395996],["▁alten",-12.06780242919922],["▁Gefühl",-12.06797981262207],["▁freeze",-12.068222045898438],["▁structured",-12.068312644958496],["▁reserved",-12.068367004394531],["stellt",-12.068638801574709],["▁foto",-12.068668365478516],["linger",-12.06871223449707],["▁profiter",-12.068737030029297],["▁trup",-12.068862915039062],["▁Hunter",-12.068974494934082],["▁widespread",-12.069050788879396],["entretien",-12.069242477416992],["▁Truck",-12.06958293914795],["Can",-12.069656372070312],["péri",-12.06976318359375],["▁>>",-12.069926261901855],["▁trains",-12.070141792297363],["▁faca",-12.070149421691896],["▁Patienten",-12.070170402526855],["▁scor",-12.070361137390137],["▁perceived",-12.070384979248049],["setzung",-12.070393562316896],["▁Robin",-12.070558547973633],["▁geboren",-12.07060718536377],["lons",-12.070687294006348],["inţa",-12.070836067199709],["glob",-12.070887565612791],["subsequently",-12.07111930847168],["▁vet",-12.071170806884766],["▁Holland",-12.071328163146973],["▁Clinical",-12.071370124816896],["▁uncertainty",-12.071381568908691],["hohen",-12.071386337280272],["uza",-12.071431159973145],["▁kleiner",-12.071518898010254],["▁substances",-12.07155704498291],["ados",-12.071627616882324],["wheel",-12.07178020477295],["▁cone",-12.071990966796877],["▁castig",-12.072218894958496],["▁Conditions",-12.072242736816406],["minus",-12.072643280029297],["▁permits",-12.07265853881836],["fond",-12.072784423828123],["▁reactions",-12.07278823852539],["▁Mario",-12.072819709777832],["▁materiale",-12.07291030883789],["AH",-12.072924613952637],["▁juillet",-12.073172569274902],["▁juridic",-12.073182106018066],["▁dropping",-12.073200225830078],["expérience",-12.073225021362305],["▁depot",-12.073345184326172],["▁plea",-12.073490142822266],["dezvoltarea",-12.073512077331545],["▁Independent",-12.07363224029541],["▁Homes",-12.073674201965332],["▁crust",-12.073808670043944],["▁pillow",-12.073899269104004],["kreis",-12.073920249938965],["▁boiler",-12.073928833007812],["latin",-12.073978424072266],["▁stet",-12.074131965637209],["GH",-12.074143409729004],["▁absent",-12.074334144592283],["▁Directors",-12.074501037597656],["zwischen",-12.07462215423584],["▁comprendre",-12.07465648651123],["▁25,",-12.074832916259766],["▁pharmaceutical",-12.075145721435549],["▁placeholder",-12.07517433166504],["KI",-12.075176239013672],["▁români",-12.07540225982666],["▁Dollar",-12.075509071350098],["▁Operations",-12.075525283813477],["▁Dublin",-12.075550079345703],["▁drawings",-12.0756196975708],["▁respir",-12.075769424438477],["▁haul",-12.0758056640625],["Obviously",-12.075864791870115],["▁Beat",-12.075864791870115],["▁jeans",-12.07590103149414],["▁Masters",-12.075927734375],["▁bits",-12.076213836669922],["poți",-12.076226234436035],["▁asigur",-12.076228141784668],["▁intampla",-12.076228141784668],["▁marc",-12.076282501220703],["......",-12.076404571533203],["▁districts",-12.076437950134276],["cru",-12.076457023620604],["nav",-12.076608657836914],["huile",-12.076644897460938],["▁limitation",-12.076647758483888],["boat",-12.076712608337402],["IRE",-12.076720237731934],["Unis",-12.07675838470459],["dated",-12.0769624710083],["▁consultants",-12.07699203491211],["▁Josh",-12.077007293701172],["tanz",-12.077184677124023],["launching",-12.0772066116333],["▁browsing",-12.077310562133787],["▁incerc",-12.077314376831056],["▁27,",-12.077375411987305],["не",-12.077398300170898],["wig",-12.077415466308594],["▁spar",-12.077458381652832],["▁token",-12.077547073364258],["▁09",-12.077548027038574],["spa",-12.07766056060791],["ometer",-12.07772159576416],["▁riders",-12.077869415283203],["▁Drop",-12.077898979187012],["RN",-12.078103065490724],["▁pairs",-12.07815933227539],["▁psychology",-12.078420639038086],["▁Douglas",-12.07843780517578],["▁verwenden",-12.078516960144045],["▁(9",-12.07857894897461],["▁Rental",-12.078728675842283],["▁délai",-12.078847885131836],["▁sooner",-12.078882217407228],["▁bankruptcy",-12.079109191894531],["04.",-12.079110145568848],["abend",-12.079194068908691],["çon",-12.079237937927246],["▁Ple",-12.079243659973145],["fug",-12.079337120056152],["▁Wohnung",-12.079410552978516],["▁Preise",-12.079424858093262],["▁Kay",-12.079427719116213],["▁notify",-12.079474449157717],["▁Brain",-12.079534530639648],["▁optical",-12.079580307006836],["▁modifications",-12.079727172851562],["▁repos",-12.07999324798584],["▁worksheet",-12.0800142288208],["continu",-12.08005428314209],["▁assumed",-12.08059024810791],["varying",-12.080626487731934],["feier",-12.080643653869627],["▁Freedom",-12.080717086791992],["▁Inhalte",-12.080740928649902],["▁observations",-12.080755233764648],["▁Gruppe",-12.080791473388672],["▁Cyber",-12.080883979797363],["hort",-12.080889701843262],["▁langue",-12.080915451049805],["führen",-12.08110523223877],["ganze",-12.081254005432127],["▁forte",-12.081327438354492],["▁Stefan",-12.081376075744627],["▁Jetzt",-12.081463813781738],["mehr",-12.08148956298828],["trip",-12.081549644470217],["▁poem",-12.081583976745604],["▁practitioners",-12.081720352172852],["▁connector",-12.08177661895752],["ECT",-12.081794738769531],["▁inseamna",-12.081820487976074],["addressing",-12.081867218017578],["▁beliebt",-12.081908226013184],["▁Mama",-12.082002639770508],["▁fade",-12.08204460144043],["messen",-12.08205509185791],["▁Visa",-12.082080841064451],["▁Meta",-12.082154273986816],["lene",-12.082188606262209],["▁remembered",-12.082334518432615],["/3",-12.082337379455566],["apte",-12.082347869873049],["▁uncomfortable",-12.082364082336426],["▁romance",-12.08253002166748],["▁réalis",-12.082601547241213],["▁Vincent",-12.082706451416016],["▁ABC",-12.08275318145752],["▁handicap",-12.082756042480469],["▁Shin",-12.082801818847656],["▁Hunde",-12.082847595214844],["▁Ach",-12.083131790161133],["▁Questions",-12.083136558532717],["▁particles",-12.083226203918455],["usch",-12.083230018615724],["▁SUV",-12.083279609680176],["▁Tous",-12.083301544189451],["▁empower",-12.08336067199707],["▁Yi",-12.083446502685549],["▁LinkedIn",-12.083453178405762],["▁Profile",-12.083507537841797],["▁surround",-12.083553314208984],["▁wh",-12.083560943603516],["▁Weiter",-12.083577156066896],["▁Weight",-12.083672523498535],["▁creatures",-12.083807945251465],["Especially",-12.08381462097168],["▁repede",-12.08383560180664],["▁albums",-12.083885192871094],["▁compatibil",-12.0839204788208],["▁Interesse",-12.083929061889648],["abili",-12.084062576293944],["▁roast",-12.084310531616213],["▁unii",-12.084310531616213],["▁Glad",-12.084421157836914],["▁enthusiasm",-12.084539413452148],["▁whisk",-12.084547996520996],["▁freezer",-12.084712982177734],["▁stolen",-12.084715843200684],["▁neighbour",-12.084883689880373],["▁sake",-12.084967613220217],["▁Effect",-12.0850191116333],["▁fighter",-12.085044860839844],["▁tranquil",-12.085084915161133],["▁organizer",-12.085199356079102],["pixel",-12.08530616760254],["▁Guest",-12.085338592529297],["▁Philipp",-12.085369110107422],["kunft",-12.085382461547852],["▁Meer",-12.085409164428713],["▁inviting",-12.085432052612305],["gänge",-12.085450172424316],["▁Position",-12.085627555847168],["giving",-12.085693359375],["▁marble",-12.085807800292969],["▁neg",-12.085813522338867],["▁Haar",-12.085914611816406],["Ein",-12.086039543151855],["▁buses",-12.086187362670898],["▁Lodge",-12.086188316345217],["soare",-12.08631992340088],["▁Barn",-12.08640956878662],["▁captain",-12.086527824401855],["▁Fix",-12.08657169342041],["ulate",-12.086629867553713],["ență",-12.086709022521973],["▁finances",-12.086770057678224],["▁VIP",-12.086800575256348],["▁Adams",-12.086801528930664],["▁spécialisé",-12.086960792541504],["▁fortunate",-12.087236404418944],["ility",-12.087345123291016],["▁democracy",-12.08749771118164],["shu",-12.087580680847168],["▁consiste",-12.087624549865724],["▁tort",-12.087692260742188],["▁branding",-12.087793350219728],["▁porch",-12.08780288696289],["UNI",-12.087867736816406],["▁placut",-12.087915420532228],["▁coupled",-12.088058471679688],["▁ministre",-12.088187217712402],["▁minerals",-12.088335037231444],["▁safer",-12.088335990905762],["▁outlets",-12.088438034057615],["▁caution",-12.08864688873291],["▁lightly",-12.0886869430542],["▁utilizator",-12.088700294494627],["▁Pala",-12.088959693908691],["▁doll",-12.088961601257324],["(1)",-12.089065551757812],["chol",-12.089120864868164],["▁Left",-12.08919620513916],["▁roulant",-12.089277267456056],["▁propune",-12.089301109313965],["▁Cred",-12.08933925628662],["▁negotiations",-12.089362144470217],["amba",-12.089393615722656],["▁grasp",-12.089420318603516],["▁Amsterdam",-12.089451789855955],["▁Zweck",-12.08945369720459],["▁conven",-12.089563369750977],["▁organizing",-12.089574813842772],["section",-12.089618682861328],["▁endeavor",-12.089634895324709],["▁basics",-12.089722633361816],["jud",-12.089874267578123],["▁yarn",-12.090049743652344],["▁shout",-12.09009075164795],["fällt",-12.090285301208496],["▁dragoste",-12.09054946899414],["▁Rein",-12.090594291687012],["Cal",-12.090688705444336],["▁deaths",-12.09072971343994],["▁24,",-12.0907564163208],["▁măr",-12.090773582458496],["server",-12.090825080871582],["▁explic",-12.09085464477539],["▁sufer",-12.090903282165527],["▁lucrări",-12.091097831726074],["▁Disease",-12.091126441955566],["▁prescribed",-12.091194152832031],["prozess",-12.091285705566406],["▁dessin",-12.091343879699709],["▁refuge",-12.091473579406738],["▁cope",-12.091631889343262],["pole",-12.09196949005127],["▁vacant",-12.091984748840332],["▁sezon",-12.092035293579102],["▁Carbon",-12.092227935791016],["▁goût",-12.092233657836914],["Ste",-12.092320442199709],["▁surroundings",-12.092754364013672],["definite",-12.09284496307373],["▁adaptation",-12.093358993530272],["cteur",-12.0933837890625],["System",-12.093442916870115],["▁Burg",-12.093550682067873],["▁retention",-12.093579292297363],["examen",-12.093618392944336],["▁adjustments",-12.093668937683104],["nies",-12.094213485717772],["▁RSS",-12.094215393066406],["▁Umwelt",-12.09425926208496],["▁strengths",-12.094326972961426],["loom",-12.094401359558104],["▁pics",-12.094404220581056],["phase",-12.09443187713623],["▁Poland",-12.094472885131836],["▁practicing",-12.094558715820312],["monetary",-12.094756126403809],["▁embodiment",-12.094756126403809],["▁jocuri",-12.094846725463867],["▁impreuna",-12.09493923187256],["▁Lyon",-12.094985961914062],["keeping",-12.095157623291016],["▁Starting",-12.095202445983888],["▁începe",-12.09535789489746],["▁clay",-12.095440864562988],["bildung",-12.095444679260254],["Technologie",-12.095513343811035],["toxic",-12.095624923706056],["▁gasit",-12.095819473266602],["rott",-12.095870018005373],["brook",-12.095935821533203],["▁wann",-12.096029281616213],["▁lined",-12.09610366821289],["▁Chelsea",-12.096223831176758],["▁Orlando",-12.096224784851074],["▁Otherwise",-12.096267700195312],["▁debit",-12.096273422241213],["▁entsprechend",-12.09648323059082],["nism",-12.09654426574707],["issen",-12.09664535522461],["▁rendez",-12.096646308898926],["▁processus",-12.096745491027832],["mbi",-12.096890449523926],["▁Graduate",-12.096960067749023],["▁cozy",-12.097119331359863],["▁Freunde",-12.097320556640623],["▁teme",-12.097389221191406],["▁bias",-12.097548484802246],["102",-12.09756851196289],["terrorism",-12.09770679473877],["threatening",-12.097756385803224],["ни",-12.097776412963867],["▁Sonntag",-12.098062515258787],["▁efect",-12.098116874694824],["▁prayers",-12.098134994506836],["▁backpack",-12.09841537475586],["?)",-12.09848976135254],["▁searches",-12.098788261413574],["ouverture",-12.09880256652832],["▁sustained",-12.098865509033203],["hawk",-12.098869323730469],["messe",-12.098958969116213],["▁prototype",-12.098989486694336],["▁stră",-12.09903335571289],["▁Neo",-12.099040985107422],["▁29,",-12.099109649658203],["izo",-12.099306106567385],["▁Anton",-12.09933376312256],["SIS",-12.099564552307127],["pendant",-12.099617958068848],["▁passive",-12.099813461303713],["▁Aaron",-12.099824905395508],["▁Karen",-12.099831581115724],["▁Bildung",-12.09994888305664],["ario",-12.099949836730955],["▁regulator",-12.100006103515623],["gruppe",-12.100032806396484],["stepped",-12.100053787231444],["▁interventions",-12.10014533996582],["▁rounds",-12.100149154663086],["▁Khan",-12.10020637512207],["▁railway",-12.10028076171875],["▁souvenir",-12.100296974182127],["▁Plans",-12.100336074829102],["aille",-12.100372314453123],["▁billing",-12.100473403930664],["▁Spiele",-12.100541114807127],["▁supermarket",-12.100556373596191],["▁flows",-12.100625991821287],["▁PayPal",-12.100641250610352],["▁tribe",-12.10067081451416],["anni",-12.100780487060549],["▁rides",-12.100934982299805],["▁Orleans",-12.101009368896484],["▁evaluated",-12.101021766662598],["founder",-12.10106372833252],["▁Feld",-12.10121250152588],["▁altele",-12.10122299194336],["▁thermo",-12.101290702819824],["ugh",-12.101330757141112],["▁adus",-12.101375579833984],["▁Taiwan",-12.101396560668944],["▁clause",-12.101409912109377],["oxi",-12.101465225219728],["alcool",-12.101495742797852],["▁Noi",-12.101531982421877],["rub",-12.101540565490724],["▁dosar",-12.101582527160645],["▁Nelson",-12.101751327514648],["fassung",-12.102316856384276],["▁Kill",-12.102489471435549],["▁Standards",-12.102490425109863],["▁upward",-12.102653503417969],["▁Coloring",-12.102664947509766],["Designed",-12.102754592895508],["▁Nou",-12.10281753540039],["▁borrow",-12.102940559387209],["▁Poll",-12.10321044921875],["▁antibiotic",-12.103277206420898],["▁fabrication",-12.103388786315918],["quo",-12.103432655334473],["▁crimes",-12.103464126586914],["▁nahe",-12.10348415374756],["▁aplicat",-12.103565216064451],["OST",-12.1035737991333],["▁Beijing",-12.103599548339844],["fight",-12.103612899780272],["▁lodge",-12.103612899780272],["dreh",-12.103922843933104],["▁harness",-12.104036331176758],["▁noiembrie",-12.104151725769045],["ounded",-12.104161262512209],["▁Imp",-12.1041841506958],["▁nächste",-12.104275703430176],["funktion",-12.104476928710938],["exploitation",-12.104569435119627],["▁Ready",-12.10457706451416],["▁Plate",-12.104598999023438],["▁octombrie",-12.104706764221191],["▁considerat",-12.104982376098633],["▁Xbox",-12.105067253112791],["mind",-12.105107307434082],["▁Lind",-12.105111122131348],["runde",-12.105352401733398],["mination",-12.105374336242676],["▁memori",-12.105377197265623],["▁cere",-12.105389595031738],["barkeit",-12.105517387390137],["▁găsi",-12.105761528015137],["2.1",-12.105863571166992],["▁Finding",-12.105891227722168],["▁static",-12.106405258178713],["court",-12.106439590454102],["▁Gem",-12.106489181518556],["▁pièce",-12.106494903564451],["▁reel",-12.10651969909668],["▁manuscript",-12.106560707092283],["▁complications",-12.106578826904297],["▁controlling",-12.106585502624512],["▁favour",-12.106738090515137],["▁advancement",-12.106739044189451],["▁Radi",-12.106870651245115],["▁faites",-12.10707664489746],["▁ordin",-12.107131958007812],["sorted",-12.107152938842772],["▁1982",-12.10715389251709],["▁brutal",-12.107154846191406],["▁Guy",-12.107226371765137],["▁accomplishment",-12.107248306274414],["▁wer",-12.107329368591309],["▁withdraw",-12.107460975646973],["abilitate",-12.1075439453125],["▁NBA",-12.107625961303713],["▁Benefit",-12.107675552368164],["▁divide",-12.107824325561523],["induced",-12.107913970947266],["▁văzut",-12.108049392700195],["▁peel",-12.10807991027832],["▁joints",-12.108160972595217],["▁enthalten",-12.108301162719728],["▁spy",-12.108397483825684],["▁occasional",-12.108437538146973],["warm",-12.108514785766602],["ême",-12.108542442321776],["▁Betriebs",-12.10855197906494],["▁Ioan",-12.1087064743042],["▁balloon",-12.108809471130373],["▁leap",-12.108869552612305],["pelled",-12.109000205993652],["▁realise",-12.109073638916016],["▁Retail",-12.109118461608888],["▁Farben",-12.10915184020996],["▁Kennedy",-12.10916519165039],["▁Firma",-12.109196662902832],["▁tineri",-12.10934066772461],["tub",-12.10935401916504],["PORT",-12.109381675720217],["▁stiff",-12.109416007995604],["▁notable",-12.10947608947754],["tler",-12.109498023986816],["▁utile",-12.10958480834961],["▁jouer",-12.109674453735352],["▁Primary",-12.109735488891602],["▁retailer",-12.109764099121094],["▁jederzeit",-12.109808921813965],["▁amend",-12.109817504882812],["▁sagte",-12.109845161437988],["atch",-12.10995864868164],["ution",-12.110008239746094],["once",-12.110018730163574],["ended",-12.1100435256958],["▁literary",-12.11013126373291],["▁wrist",-12.110281944274902],["vii",-12.11036205291748],["scriere",-12.11036777496338],["▁compassion",-12.110443115234377],["▁Milan",-12.110474586486816],["▁Dach",-12.110490798950195],["▁problèmes",-12.110630989074709],["▁Pré",-12.110687255859377],["▁Feder",-12.110759735107422],["Dr",-12.110814094543455],["Spr",-12.11090850830078],["▁né",-12.110969543457031],["François",-12.111023902893066],["▁Shu",-12.11111545562744],["▁poison",-12.111154556274414],["zier",-12.111176490783691],["▁attain",-12.11124038696289],["▁switching",-12.111310958862305],["▁vibration",-12.111348152160645],["▁Tablet",-12.11136531829834],["▁Lern",-12.11148452758789],["offrir",-12.111660957336426],["123",-12.11168098449707],["cheapest",-12.11173152923584],["▁numărul",-12.111764907836914],["break",-12.11180305480957],["cyto",-12.111836433410645],["▁Mississippi",-12.111955642700195],["▁dragon",-12.11207389831543],["fir",-12.112176895141602],["▁fête",-12.112180709838867],["▁Wait",-12.112350463867188],["buy",-12.112359046936035],["având",-12.112391471862791],["▁Scar",-12.11251735687256],["▁Hund",-12.112586975097656],["bug",-12.112807273864746],["▁classique",-12.112811088562012],["▁tenant",-12.112860679626465],["▁Walt",-12.11296272277832],["▁timber",-12.11296272277832],["inscription",-12.11300277709961],["BD",-12.11301612854004],["▁Commissioner",-12.113018989562988],["▁casinos",-12.11306095123291],["▁prochain",-12.113168716430664],["▁rustic",-12.11349868774414],["▁Kent",-12.113607406616213],["▁Deci",-12.113761901855469],["ли",-12.113855361938477],["▁crossed",-12.113861083984377],["▁delightful",-12.113869667053224],["▁metres",-12.113872528076172],["▁scandal",-12.113906860351562],["▁activitate",-12.113986015319824],["▁nimeni",-12.114009857177734],["ease",-12.11402416229248],["▁revenues",-12.1140775680542],["▁partially",-12.114187240600586],["AE",-12.114263534545898],["nique",-12.114410400390623],["▁fixtures",-12.114426612854004],["▁pupils",-12.114694595336914],["Lib",-12.11471176147461],["analyse",-12.114739418029783],["▁Oracle",-12.11476707458496],["troph",-12.114859580993652],["▁detected",-12.114879608154297],["▁servant",-12.11507797241211],["▁badly",-12.115121841430664],["comparing",-12.115150451660156],["abs",-12.115238189697266],["▁fotografi",-12.115443229675291],["▁Million",-12.115541458129885],["▁Gordon",-12.11557388305664],["▁Smok",-12.115592002868652],["▁Essay",-12.11565113067627],["eptic",-12.115665435791016],["▁Transportation",-12.115728378295898],["/2019",-12.115767478942873],["▁alignment",-12.115778923034668],["▁laut",-12.11578369140625],["stände",-12.11579132080078],["▁concerts",-12.115811347961426],["▁weekends",-12.11589241027832],["▁obstacles",-12.115941047668455],["wür",-12.115964889526367],["▁Fisher",-12.116219520568848],["▁supervisor",-12.11624240875244],["▁traders",-12.116262435913086],["▁scary",-12.116484642028809],["▁Grove",-12.116538047790527],["▁expose",-12.116583824157717],["▁enemies",-12.11663055419922],["▁Lux",-12.11667537689209],["▁Berufs",-12.11672306060791],["▁Sheet",-12.116780281066896],["▁Natürlich",-12.116819381713867],["▁examined",-12.116886138916016],["pursuing",-12.116920471191406],["▁pools",-12.116923332214355],["▁Thompson",-12.117005348205566],["▁SAP",-12.117010116577148],["claiming",-12.117053985595703],["buried",-12.117055892944336],["assurance",-12.117138862609863],["▁sandwich",-12.117195129394531],["uber",-12.117310523986816],["▁laisse",-12.117321968078612],["peak",-12.117348670959473],["spring",-12.1173677444458],["▁august",-12.117369651794434],["▁benötigt",-12.11738109588623],["▁achievements",-12.117470741271973],["coala",-12.117478370666504],["▁scr",-12.117842674255373],["gesagt",-12.118122100830078],["▁envelope",-12.118141174316406],["▁mapping",-12.118169784545898],["▁Suche",-12.118298530578612],["first",-12.118329048156738],["▁Quin",-12.118447303771973],["räu",-12.11856174468994],["▁răs",-12.11858367919922],["chemical",-12.118597984313965],["dad",-12.11892795562744],["formation",-12.118983268737791],["▁cushion",-12.119026184082031],["▁Maß",-12.119046211242676],["07.",-12.119184494018556],["▁perioadă",-12.119257926940918],["▁Wunsch",-12.11925983428955],["▁joi",-12.119423866271973],["▁$25",-12.119482040405272],["▁uploaded",-12.11952018737793],["▁hobby",-12.119633674621582],["▁septembrie",-12.119633674621582],["▁Dimension",-12.119634628295898],["▁domeniu",-12.119661331176758],["▁Tourism",-12.119747161865234],["▁fais",-12.119800567626951],["aches",-12.119919776916504],["neck",-12.119969367980955],["▁Chip",-12.119982719421388],["▁Tisch",-12.1199951171875],["▁Pai",-12.120006561279297],["▁Butter",-12.120083808898926],["▁altor",-12.12013339996338],["cultural",-12.120182991027832],["▁bases",-12.12028980255127],["▁Christopher",-12.120396614074709],["Kindle",-12.120401382446287],["▁bathrooms",-12.12049388885498],["▁civilian",-12.12052059173584],["▁Architecture",-12.12058162689209],["heiten",-12.120641708374023],["otte",-12.120763778686523],["ри",-12.120784759521484],["wash",-12.120792388916016],["▁evenimente",-12.12086296081543],["lade",-12.121132850646973],["▁ermöglicht",-12.121140480041504],["Port",-12.121149063110352],["▁Horn",-12.12119197845459],["▁Housing",-12.12123203277588],["▁Profit",-12.121304512023926],["▁stressed",-12.12136459350586],["▁70%",-12.121431350708008],["laying",-12.121458053588867],["▁specialize",-12.121490478515623],["▁Published",-12.121519088745115],["corp",-12.121554374694824],["▁revision",-12.121611595153809],["▁sail",-12.121804237365724],["courtesy",-12.121909141540527],["tax",-12.1219482421875],["▁perfekt",-12.122018814086914],["▁Risk",-12.122088432312012],["▁chaleur",-12.122129440307615],["ych",-12.122132301330566],["▁spine",-12.12218189239502],["▁holders",-12.122264862060549],["▁Speaking",-12.122271537780762],["▁Bernard",-12.122400283813477],["incarc",-12.122532844543455],["shalb",-12.122639656066896],["Potrivit",-12.12264633178711],["arising",-12.122654914855955],["▁kingdom",-12.122665405273438],["▁potato",-12.122766494750977],["▁promoted",-12.122814178466797],["▁judges",-12.1228609085083],["▁naturelle",-12.122992515563965],["▁Kindern",-12.123022079467772],["schicht",-12.123047828674316],["▁Drag",-12.123066902160645],["atta",-12.123132705688477],["soient",-12.123249053955078],["INS",-12.12336540222168],["▁legislative",-12.123642921447754],["▁teens",-12.123785018920898],["▁Fotos",-12.123842239379885],["▁illustrations",-12.12392520904541],["möglichkeiten",-12.12415599822998],["Votre",-12.124194145202637],["▁tarif",-12.124195098876951],["cli",-12.124488830566406],["▁landlord",-12.12473201751709],["cine",-12.124743461608888],["▁bot",-12.124798774719238],["enhancing",-12.12491226196289],["▁März",-12.12491226196289],["▁succès",-12.125106811523438],["▁disclose",-12.125120162963867],["▁Geräte",-12.125321388244627],["▁Magn",-12.125422477722168],["dessous",-12.12580680847168],["▁miracle",-12.125862121582031],["▁travailler",-12.125933647155762],["▁herb",-12.12594509124756],["-01",-12.126049041748049],["litre",-12.126104354858398],["▁tău",-12.126120567321776],["ACC",-12.126190185546877],["▁diminu",-12.126275062561035],["itzer",-12.126317024230955],["▁personenbezogen",-12.126395225524902],["▁Pure",-12.126436233520508],["▁influences",-12.12668228149414],["ană",-12.126765251159668],["▁proposer",-12.126856803894045],["▁longest",-12.12692642211914],["euses",-12.127080917358398],["/1",-12.127487182617188],["hafte",-12.127716064453123],["▁Dich",-12.127761840820312],["▁candle",-12.128026962280272],["ouche",-12.128191947937012],["installation",-12.128241539001465],["▁Includes",-12.128280639648438],["▁entfernt",-12.12831974029541],["traf",-12.128499031066896],["▁None",-12.12850856781006],["▁produc",-12.128510475158691],["held",-12.12851905822754],["graphic",-12.128531455993652],["▁demographic",-12.128584861755373],["ingham",-12.1287841796875],["schul",-12.128812789916992],["▁sneak",-12.128843307495115],["laub",-12.128889083862305],["▁thickness",-12.12911605834961],["▁killer",-12.129297256469728],["▁entsprechende",-12.129344940185549],["▁theft",-12.129396438598633],["▁Jerusalem",-12.129457473754885],["Adapt",-12.12949562072754],["▁updating",-12.129497528076172],["tete",-12.12954330444336],["▁warming",-12.129701614379885],["anlage",-12.12973976135254],["▁lenders",-12.12981414794922],["mobile",-12.130008697509766],["▁Package",-12.130080223083496],["▁Volume",-12.130152702331545],["---",-12.130167007446287],["▁Others",-12.130173683166504],["content",-12.130188941955566],["tement",-12.130253791809082],["bildet",-12.13027572631836],["▁washer",-12.13053035736084],["▁freelance",-12.130623817443848],["▁fein",-12.13075351715088],["▁catering",-12.130851745605469],["▁warmth",-12.130911827087402],["▁Month",-12.131103515625],["▁Federation",-12.131134033203123],["▁editorial",-12.13121223449707],["▁Shopping",-12.13124179840088],["▁efort",-12.131296157836914],["▁damp",-12.131314277648926],["▁declined",-12.131332397460938],["▁1978",-12.13135051727295],["6,000",-12.131355285644531],["location",-12.131551742553713],["▁blogger",-12.131572723388672],["▁goodness",-12.131826400756836],["▁Purchase",-12.132119178771973],["▁suspended",-12.132159233093262],["▁assessed",-12.132201194763184],["rada",-12.132286071777344],["▁Lac",-12.132291793823242],["▁angeboten",-12.13235092163086],["▁Wetter",-12.132370948791504],["ores",-12.13243579864502],["▁fourni",-12.132476806640623],["▁retire",-12.13269329071045],["▁Baptist",-12.132741928100586],["▁Saison",-12.13277530670166],["Bar",-12.132794380187988],["▁dossier",-12.132979393005373],["brow",-12.133044242858888],["▁Kaffee",-12.133071899414062],["-25",-12.133463859558104],["▁festivals",-12.133599281311035],["▁sellers",-12.133716583251951],["Ü",-12.13393783569336],["▁publisher",-12.133960723876951],["▁Designs",-12.133970260620115],["▁putut",-12.13400936126709],["▁Built",-12.134417533874512],["▁recreational",-12.134476661682127],["▁european",-12.134514808654783],["▁binary",-12.134631156921388],["▁Nieder",-12.134764671325684],["taking",-12.1348237991333],["▁Lots",-12.13494873046875],["▁recognised",-12.135031700134276],["ssant",-12.13506317138672],["ITE",-12.135271072387695],["oom",-12.135298728942873],["▁Kre",-12.135310173034668],["▁pipes",-12.135631561279297],["▁hinge",-12.135653495788574],["▁enterprises",-12.135664939880373],["▁texts",-12.13583755493164],["Organiz",-12.136080741882324],["▁suivre",-12.13612461090088],["noc",-12.136157989501951],["fair",-12.136194229125977],["▁darkness",-12.136305809020996],["▁Whi",-12.13631534576416],["natural",-12.13632106781006],["Bas",-12.136422157287598],["▁tribute",-12.13644313812256],["▁Naţional",-12.136573791503906],["hara",-12.136622428894045],["▁catégorie",-12.13669776916504],["▁Schedule",-12.136698722839355],["▁lernen",-12.13671875],["▁Plastic",-12.136725425720217],["▁giveaway",-12.13675594329834],["▁Ideen",-12.136906623840332],["▁circa",-12.13718032836914],["▁lice",-12.137242317199709],["▁Meinung",-12.137264251708984],["▁beside",-12.137566566467283],["▁vazut",-12.137673377990724],["strom",-12.137749671936035],["boro",-12.137775421142578],["▁Soon",-12.13779640197754],["dozens",-12.137896537780762],["▁Arena",-12.137943267822266],["▁viața",-12.137989044189451],["▁Impact",-12.13808250427246],["current",-12.138106346130373],["FM",-12.138117790222168],["▁coil",-12.138657569885254],["gold",-12.138679504394531],["▁spate",-12.138679504394531],["1.4",-12.13875675201416],["solution",-12.138769149780272],["▁Wayne",-12.138835906982422],["▁queen",-12.138898849487305],["illion",-12.139022827148438],["greifen",-12.139127731323242],["▁Bil",-12.139174461364746],["rote",-12.139185905456545],["END",-12.13918685913086],["äl",-12.139206886291504],["▁reçu",-12.139378547668455],["flower",-12.139495849609377],["▁draws",-12.139519691467283],["plant",-12.139605522155762],["2010",-12.139702796936035],["▁oper",-12.139762878417969],["▁conserve",-12.139777183532717],["▁sprinkle",-12.13984203338623],["mode",-12.13992404937744],["▁lifting",-12.139941215515137],["▁Institution",-12.139951705932615],["Când",-12.14001750946045],["Aus",-12.140048027038574],["▁fears",-12.140054702758787],["▁appointments",-12.140079498291016],["oarele",-12.140162467956545],["▁duck",-12.140193939208984],["▁stadium",-12.140213012695312],["▁vezi",-12.14022731781006],["▁lap",-12.140315055847168],["▁proceeds",-12.140382766723633],["geschlossen",-12.14041233062744],["▁tren",-12.140478134155272],["VS",-12.140536308288574],["▁vais",-12.14080047607422],["ținut",-12.140859603881836],["▁Concert",-12.140928268432615],["▁planting",-12.141008377075195],["▁honour",-12.141069412231444],["▁gras",-12.141071319580078],["woo",-12.14109230041504],["▁Hero",-12.141282081604004],["▁stimulate",-12.14134407043457],["▁überhaupt",-12.14142608642578],["▁bounce",-12.14148235321045],["oodle",-12.14151382446289],["▁packs",-12.141576766967772],["▁Poker",-12.14158821105957],["▁acea",-12.141684532165527],["▁parish",-12.141754150390623],["-24",-12.141766548156738],["▁iTunes",-12.141874313354492],["▁lumière",-12.141948699951172],["third",-12.142024993896484],["▁dynamics",-12.142038345336914],["Unless",-12.142162322998049],["▁immense",-12.142416000366213],["▁Sec",-12.142781257629396],["lois",-12.143009185791016],["époque",-12.14302921295166],["NB",-12.143139839172363],["written",-12.143210411071776],["▁logement",-12.143226623535156],["submitting",-12.143295288085938],["▁Quand",-12.14331340789795],["▁foi",-12.143322944641112],["▁catalogue",-12.143351554870604],["nova",-12.14343547821045],["▁prezentat",-12.143527030944824],["▁tart",-12.143877983093262],["те",-12.143912315368652],["hack",-12.143916130065918],["▁Politic",-12.144003868103027],["▁18,",-12.144048690795898],["▁ignored",-12.144145965576172],["▁spoon",-12.144245147705078],["▁Joy",-12.144280433654783],["▁reside",-12.144482612609863],[".99",-12.144488334655762],["lytic",-12.144625663757324],["▁bogat",-12.144643783569336],["▁nurses",-12.144845008850098],["▁funcţi",-12.145029067993164],["▁produselor",-12.145038604736328],["▁Associates",-12.145069122314451],["Est",-12.14511489868164],["▁peanut",-12.145187377929688],["▁résultat",-12.145257949829102],["08.",-12.145424842834473],["▁Astro",-12.14543914794922],["▁personnelle",-12.145527839660645],["320",-12.145668983459473],["▁Grab",-12.145748138427734],["éco",-12.145801544189451],["▁clasic",-12.14585781097412],["offre",-12.14588451385498],["▁idee",-12.14589786529541],["▁cheat",-12.146259307861328],["▁Flug",-12.146286964416504],["▁1500",-12.146413803100586],["▁kurze",-12.14643383026123],["With",-12.146512985229492],["▁Half",-12.146575927734377],["▁disciplines",-12.146642684936523],["sorption",-12.14669132232666],["▁greutate",-12.146927833557127],["mä",-12.146940231323242],["▁Literatur",-12.14695644378662],["3/",-12.147016525268556],["4.0",-12.147095680236816],["▁déco",-12.147119522094728],["▁Fuß",-12.147233963012695],["▁Deutsche",-12.147289276123049],["▁abundance",-12.14746379852295],["▁Luther",-12.14750862121582],["▁nutritional",-12.147562980651855],["▁Jude",-12.147687911987305],["AY",-12.14786148071289],["▁chore",-12.147916793823242],["▁Kro",-12.148006439208984],["▁alin",-12.14801025390625],["lösung",-12.148030281066896],["▁geworden",-12.148238182067873],["▁sociaux",-12.148255348205566],["▁Spark",-12.1486177444458],["▁phenomenon",-12.148624420166016],["ICA",-12.148805618286133],["▁Ran",-12.148836135864258],["▁Schwarz",-12.148959159851074],["▁1983",-12.148985862731934],["ет",-12.148990631103516],["möglich",-12.149084091186523],["vocation",-12.149087905883787],["▁Organic",-12.14926815032959],["Oh",-12.149408340454102],["▁blockchain",-12.149422645568848],["▁Bă",-12.14951515197754],["▁Bass",-12.14953899383545],["enie",-12.149687767028809],["▁rêve",-12.149807929992676],["▁Rap",-12.149986267089844],["▁democratic",-12.150044441223145],["▁Chart",-12.15016746520996],["▁Voi",-12.150189399719238],["process",-12.150263786315918],["▁preach",-12.150389671325684],["tient",-12.150456428527832],["▁Train",-12.150468826293944],["▁Reihe",-12.150472640991213],["help",-12.150514602661133],["1.6",-12.150547981262209],["▁cazuri",-12.150547981262209],["▁chap",-12.150559425354004],["aktiv",-12.150632858276367],["▁2006.",-12.15079116821289],["iene",-12.150849342346191],["▁BBQ",-12.15096950531006],["dauer",-12.151028633117676],["2).",-12.151226997375488],["▁Monat",-12.151277542114258],["Generally",-12.151285171508787],["▁bracelet",-12.151336669921877],["▁cartoon",-12.151349067687988],["▁pui",-12.151488304138184],["temp",-12.151506423950195],["▁Particip",-12.151555061340332],["▁dumneavoastră",-12.151725769042969],["▁Gin",-12.151824951171877],["iunile",-12.151829719543455],["reise",-12.151849746704102],["▁einzige",-12.15189266204834],["ANCE",-12.15192985534668],["▁humble",-12.151951789855955],["claim",-12.152093887329102],["LV",-12.152143478393556],["▁confiance",-12.152270317077637],["▁Trading",-12.152535438537598],["▁Fabric",-12.152770042419434],["▁Duke",-12.152851104736328],["spieler",-12.15293788909912],["▁reject",-12.152987480163574],["▁crise",-12.153170585632324],["▁borders",-12.153196334838867],["▁Vehicle",-12.153279304504396],["zeiten",-12.153481483459473],["enrolled",-12.153514862060549],["venue",-12.153555870056152],["▁forests",-12.153564453125],["vascular",-12.15358829498291],["▁phrases",-12.153661727905272],["▁receptor",-12.15368366241455],["schied",-12.153687477111816],["▁soirée",-12.153785705566406],["▁partener",-12.153987884521484],["▁Jobs",-12.15417194366455],["▁segments",-12.154216766357422],["▁violate",-12.154438972473145],["▁viable",-12.154500007629396],["▁encountered",-12.154533386230469],["▁travelers",-12.154552459716797],["▁împ",-12.15467929840088],["▁convince",-12.154693603515623],["▁mailing",-12.154693603515623],["▁Zahn",-12.154698371887209],["attend",-12.15477466583252],["▁eBay",-12.154836654663086],["▁Emergency",-12.154844284057615],["wirtschaft",-12.154882431030272],["▁scholars",-12.154947280883787],["▁considerably",-12.155118942260742],["▁combo",-12.1551513671875],["hiver",-12.155198097229004],["▁mysterious",-12.15522575378418],["▁Degree",-12.155234336853027],["▁fate",-12.155242919921877],["▁transplant",-12.155281066894531],["▁samedi",-12.155400276184082],["unit",-12.155519485473633],["▁moyenne",-12.155611991882324],["▁Liverpool",-12.155614852905272],["▁Champions",-12.155728340148926],["zzle",-12.155824661254885],["▁arena",-12.156228065490724],["▁Pipe",-12.15633487701416],["▁waterproof",-12.156356811523438],["▁eternal",-12.156463623046877],["Whenever",-12.156503677368164],["▁Hop",-12.156535148620604],["▁Betrieb",-12.156816482543944],["gne",-12.15692138671875],["▁spe",-12.156975746154783],["▁Corner",-12.157078742980955],["▁devenir",-12.157118797302246],["ambiance",-12.157144546508787],["▁Graham",-12.157200813293455],["▁desires",-12.157289505004885],["▁Applications",-12.157291412353516],["▁genutzt",-12.157477378845217],["tek",-12.157612800598145],["▁Career",-12.157641410827637],["▁staple",-12.157695770263672],["▁Dodge",-12.157817840576172],["▁strictly",-12.157889366149902],["▁Gruppen",-12.157952308654783],["▁Finanz",-12.157981872558594],["▁sporting",-12.15809440612793],["▁Wieder",-12.158127784729004],["anny",-12.158208847045898],["▁bucura",-12.158233642578123],["▁Pest",-12.15824031829834],["▁circles",-12.158246994018556],["▁richtige",-12.158309936523438],["▁cycles",-12.158379554748535],["static",-12.15845012664795],["lasting",-12.15847396850586],["▁calcium",-12.158549308776855],["▁digest",-12.158697128295898],["Enfin",-12.158865928649902],["▁stressful",-12.15895175933838],["▁schemes",-12.158981323242188],["▁décision",-12.158987045288086],["▁comercial",-12.15907096862793],["işti",-12.159098625183104],["▁Comic",-12.15910816192627],["▁extensions",-12.159140586853027],["▁Sieg",-12.159168243408203],["▁pine",-12.15919017791748],["ieß",-12.159272193908691],["▁Images",-12.159427642822266],["▁Mensch",-12.159668922424316],["Pap",-12.15977382659912],["▁crops",-12.15994930267334],["▁sheep",-12.159996032714844],["▁istoric",-12.160001754760742],["▁Assessment",-12.160035133361816],["▁mounting",-12.16035270690918],["wirken",-12.16046905517578],["▁augment",-12.16046905517578],["▁picioare",-12.160542488098145],["organisme",-12.160590171813965],["▁Monitor",-12.16060733795166],["▁celles",-12.160642623901367],["▁Maison",-12.160709381103516],["notified",-12.160783767700195],["▁chew",-12.160831451416016],["▁bleu",-12.16083812713623],["dow",-12.160844802856444],["▁Grav",-12.16097354888916],["▁curtains",-12.160975456237791],["▁Campus",-12.161076545715332],["▁controversial",-12.161087036132812],["▁soutien",-12.161189079284668],["▁Dell",-12.1613187789917],["▁instrumental",-12.161431312561035],["▁Nan",-12.161514282226562],["▁prom",-12.161520957946776],["▁spatial",-12.161523818969728],["Similarly",-12.161558151245115],["▁Gala",-12.161601066589355],["ultimul",-12.16162109375],["▁Vom",-12.161761283874512],["▁Foot",-12.161784172058104],["bike",-12.1618013381958],["▁acids",-12.161979675292969],["entend",-12.162002563476562],["ivă",-12.16204071044922],["▁Weitere",-12.162124633789062],["▁vitamins",-12.162131309509276],["▁enhancement",-12.16234016418457],["▁Cruise",-12.162367820739746],["assemble",-12.162385940551758],["▁spécifique",-12.16245937347412],["affaires",-12.16261100769043],["▁indispensable",-12.1626558303833],["▁logistics",-12.16283130645752],["▁manche",-12.162919044494627],["▁dealt",-12.16297435760498],["▁favorable",-12.163036346435549],["▁unwanted",-12.163047790527344],["▁handmade",-12.163065910339355],["▁Regi",-12.16310214996338],["safe",-12.163134574890137],["persoanele",-12.163202285766602],["▁destinat",-12.163252830505373],["▁Maxi",-12.163299560546877],["▁salmon",-12.163454055786133],["wag",-12.163578033447266],["210",-12.163769721984863],["▁warned",-12.163865089416504],["läuft",-12.16386604309082],["agging",-12.163931846618652],["▁responsabil",-12.16398811340332],["▁presse",-12.164271354675291],["▁amis",-12.164305686950684],["▁rolls",-12.164377212524414],["control",-12.164405822753906],["▁Manufacturer",-12.164422988891602],["hnen",-12.16444969177246],["▁buget",-12.164546012878418],["OW",-12.16467571258545],["etro",-12.164745330810549],["▁communauté",-12.164837837219238],["unci",-12.164944648742676],["▁Chine",-12.164952278137209],["combines",-12.16501235961914],["▁learners",-12.165046691894531],["STE",-12.16505527496338],["ckel",-12.16511344909668],["Service",-12.165169715881348],["▁veröffentlicht",-12.165209770202637],["besides",-12.165266036987305],["getragen",-12.165349960327148],["▁opponent",-12.165521621704102],["▁volum",-12.165533065795898],["▁confusing",-12.165802001953123],["invasive",-12.165813446044922],["▁conseils",-12.165881156921388],["▁vibe",-12.165928840637209],["View",-12.166062355041504],["oară",-12.166086196899414],["Link",-12.166261672973633],["▁holy",-12.166261672973633],["▁crema",-12.16629409790039],["▁Michelle",-12.166303634643556],["▁Wien",-12.166383743286133],["▁undertake",-12.166404724121094],["▁Photograph",-12.166421890258787],["humain",-12.16645336151123],["▁Hang",-12.166545867919922],["designed",-12.16657829284668],["▁analyses",-12.166614532470703],["▁compose",-12.166653633117676],["▁substantially",-12.166765213012695],["▁marking",-12.166772842407228],["▁campagne",-12.166826248168944],["▁$15",-12.166828155517578],["pharma",-12.166972160339355],["▁playoff",-12.1669921875],["▁momentum",-12.167091369628906],["Temp",-12.16714096069336],["▁vinegar",-12.167143821716309],["▁descriptions",-12.16758155822754],["christ",-12.167656898498535],["wore",-12.16773509979248],["ITY",-12.167768478393556],["stehen",-12.167771339416504],["▁insulation",-12.1677827835083],["grav",-12.167842864990234],["2.2",-12.167887687683104],["▁Explore",-12.168028831481934],["▁dye",-12.168127059936523],["stair",-12.168155670166016],["artisan",-12.168207168579102],["▁zoom",-12.168285369873049],["▁turkey",-12.168573379516602],["▁locksmith",-12.168577194213867],["▁sewing",-12.16861057281494],["▁modeling",-12.168627738952637],["lied",-12.16870403289795],["adel",-12.168773651123049],["▁Going",-12.168785095214844],["WH",-12.168798446655272],["▁deserves",-12.168919563293455],["▁arriving",-12.168960571289062],["OFF",-12.169039726257324],["torului",-12.169109344482422],["ucked",-12.16921615600586],["▁approached",-12.169351577758787],["▁élevé",-12.169354438781738],["▁quotidien",-12.169416427612305],["▁derzeit",-12.16942024230957],["nutzt",-12.16965675354004],["science",-12.169729232788086],["▁Emma",-12.169841766357422],["▁builds",-12.169879913330078],["▁Logo",-12.169949531555176],["▁clouds",-12.170061111450195],["inflammatory",-12.170141220092772],["țiuni",-12.170199394226074],["▁Cisco",-12.17025089263916],["▁würden",-12.170254707336426],["▁Shaw",-12.17025661468506],["▁Ell",-12.170266151428224],["avance",-12.1703519821167],["anglais",-12.170365333557127],["weil",-12.170368194580078],["▁singura",-12.170464515686035],["ACK",-12.170489311218262],["likewise",-12.170522689819336],["ographie",-12.170646667480469],["liegen",-12.17088508605957],["▁Crow",-12.170964241027832],["▁unic",-12.171187400817873],["▁Ale",-12.171241760253906],["▁păstr",-12.17125129699707],["▁informal",-12.171337127685549],["650",-12.17136287689209],["Benz",-12.171489715576172],["▁antenna",-12.17154026031494],["▁pagini",-12.171552658081056],["▁lansat",-12.171561241149902],["▁Fans",-12.171576499938965],["taine",-12.171822547912598],["JO",-12.171853065490724],["▁Tips",-12.172091484069824],["cir",-12.172130584716797],["nou",-12.17238426208496],["▁planted",-12.17241382598877],["▁steering",-12.172423362731934],["▁Waren",-12.172475814819336],["▁clearance",-12.172515869140623],["▁Moscow",-12.17251682281494],["▁Faith",-12.172534942626951],["▁Pizza",-12.172572135925291],["▁Tank",-12.17273998260498],["QUE",-12.172783851623535],["▁studii",-12.172804832458496],["éné",-12.172829627990724],["▁guerre",-12.1728515625],["▁celebr",-12.173083305358888],["▁Factory",-12.17311191558838],["▁Browse",-12.173198699951172],["▁Request",-12.17323112487793],["▁taxpayer",-12.173311233520508],["▁assert",-12.173562049865724],["unternehmen",-12.173588752746582],["▁Ergebnis",-12.173687934875488],["▁Antwort",-12.17372703552246],["▁Photography",-12.173808097839355],["▁plă",-12.173866271972656],["IME",-12.173982620239258],["▁prochaine",-12.174074172973633],["ajouter",-12.17410373687744],["▁buffet",-12.174227714538574],["▁pixels",-12.174239158630373],["▁pledge",-12.174250602722168],["▁Inhalt",-12.17435359954834],["▁chase",-12.174384117126465],["Flow",-12.174493789672852],["▁melodi",-12.174872398376465],["▁Abu",-12.174991607666016],["▁1979",-12.175042152404783],["▁Photos",-12.175042152404783],["▁qualifications",-12.175148963928224],["▁zis",-12.175213813781738],["IAL",-12.175354957580566],["▁lender",-12.175390243530272],["▁indiferent",-12.175494194030762],["▁behaviors",-12.175506591796877],["▁flowing",-12.175531387329102],["▁zweite",-12.1756010055542],["abl",-12.17576503753662],["Schw",-12.17600440979004],["opi",-12.176030158996582],["ggi",-12.176164627075195],["▁depart",-12.176314353942873],["▁garde",-12.17640209197998],["▁tuition",-12.176490783691406],["fälle",-12.17650032043457],["▁determina",-12.17652702331543],["▁spice",-12.176627159118652],["▁petites",-12.176777839660645],["kot",-12.176973342895508],["▁intersection",-12.177242279052734],["hak",-12.177248001098633],["▁autumn",-12.177284240722656],["▁verbunden",-12.177284240722656],["▁ferme",-12.177287101745604],["PN",-12.17733097076416],["▁insurer",-12.177390098571776],["arten",-12.177401542663574],["▁Turkish",-12.177715301513672],["▁shoulders",-12.177732467651367],["=>",-12.177742004394531],["▁Nike",-12.177760124206545],["uire",-12.177763938903809],["▁Chile",-12.177811622619627],["jon",-12.177842140197754],["▁fragrance",-12.177884101867676],["▁bean",-12.177908897399902],["ips",-12.178108215332031],["assuming",-12.17819118499756],["liens",-12.178215026855469],["tocmai",-12.178267478942873],["▁60%",-12.178301811218262],["ipped",-12.178384780883787],["DIS",-12.178473472595217],["▁predicted",-12.178537368774414],["▁Picture",-12.178555488586426],["Bahn",-12.178796768188477],["104",-12.178854942321776],["tended",-12.178958892822266],["▁approve",-12.179031372070312],["▁magasin",-12.17908000946045],["▁mindset",-12.179208755493164],["rase",-12.179363250732422],["grand",-12.179469108581545],["▁Principal",-12.17947769165039],["▁informații",-12.17959976196289],["▁legătur",-12.179628372192385],["▁Farb",-12.179692268371582],["▁Dieu",-12.179710388183594],["▁alliance",-12.180378913879396],["weiligen",-12.180397987365724],["▁Câ",-12.18048095703125],["▁counseling",-12.18052101135254],["▁traveled",-12.180533409118652],["▁translated",-12.18055820465088],["▁carne",-12.180679321289062],["aked",-12.180707931518556],["▁LCD",-12.180868148803713],["▁Folge",-12.180909156799316],["▁Erfahrungen",-12.18093204498291],["▁1981",-12.18106460571289],["▁răspuns",-12.181075096130373],["itori",-12.18117618560791],["▁elementary",-12.181200981140137],["▁vorbei",-12.18127727508545],["▁cargo",-12.181361198425291],["disciplinary",-12.18140983581543],["WR",-12.181492805480955],["▁counterpart",-12.18162727355957],["family",-12.181641578674316],["▁viață",-12.181644439697266],["▁Definition",-12.18167495727539],["▁Cow",-12.18171501159668],["fällig",-12.182003021240234],["▁Sicht",-12.182025909423828],["▁mum",-12.18214511871338],["▁Mediterranean",-12.182275772094728],["nev",-12.182278633117676],["bü",-12.182293891906738],["▁slave",-12.182293891906738],["schnitt",-12.18233871459961],["▁firme",-12.182430267333984],["▁spill",-12.182454109191896],["▁wages",-12.182592391967772],["▁refine",-12.182615280151367],["▁upgraded",-12.182632446289062],["▁gospel",-12.182698249816896],["▁quartier",-12.182744979858398],["▁#2",-12.182772636413574],["▁Situation",-12.18298625946045],["▁suggesting",-12.183075904846191],["▁acne",-12.183113098144531],["▁Murray",-12.183337211608888],["▁Ian",-12.183469772338867],["hören",-12.183489799499512],["bia",-12.183603286743164],["▁Bewegung",-12.18368434906006],["▁abzu",-12.18379020690918],["reveals",-12.183795928955078],["friend",-12.184025764465332],["▁Connecticut",-12.18407917022705],["▁Testament",-12.184151649475098],["▁Lit",-12.184199333190918],["▁Ship",-12.184209823608398],["▁minunat",-12.184344291687012],["▁Moving",-12.184346199035645],["▁Device",-12.184486389160156],["▁Bake",-12.18453598022461],["▁qualification",-12.184633255004885],["▁challenged",-12.184640884399414],["▁Hinweis",-12.184721946716309],["▁sechs",-12.184769630432127],["та",-12.184903144836426],["120",-12.184904098510742],["licht",-12.184940338134766],["▁supervision",-12.185022354125977],["▁milestone",-12.18503189086914],["zeig",-12.185050964355469],["▁emphasize",-12.185224533081056],["▁complain",-12.185232162475586],["sack",-12.185341835021973],["▁rebuild",-12.18544578552246],["projekt",-12.18548583984375],["▁saint",-12.185644149780272],["lette",-12.185752868652344],["rade",-12.18580150604248],["▁pacient",-12.185893058776855],["signed",-12.186169624328612],["▁mil",-12.186261177062988],["cali",-12.186266899108888],["▁brochure",-12.186487197875977],["▁Bulgaria",-12.186488151550291],["Har",-12.186623573303224],["DH",-12.186697006225586],["▁jumping",-12.186712265014648],["ären",-12.186732292175291],["▁tactics",-12.186911582946776],["▁soleil",-12.187030792236328],["lessness",-12.18705940246582],["steigen",-12.187085151672363],["▁Brief",-12.18711757659912],["▁Oz",-12.18718433380127],["credit",-12.18723964691162],["glass",-12.187241554260254],["▁Baltimore",-12.187292098999023],["varies",-12.187445640563965],["sourced",-12.187575340270996],["▁documented",-12.187604904174805],["▁devine",-12.187664985656738],["möglichst",-12.187732696533203],["▁früher",-12.187756538391112],["outefois",-12.18790054321289],["▁Engagement",-12.18793487548828],["▁anumit",-12.18806266784668],["▁1930",-12.188186645507812],["▁Aufgaben",-12.188214302062988],["▁lineup",-12.188227653503418],["▁Cad",-12.188349723815918],["améliorer",-12.188437461853027],["▁februarie",-12.188499450683594],["▁cancellation",-12.18852996826172],["▁locks",-12.18857765197754],["▁modèles",-12.188711166381836],["▁breakdown",-12.188748359680176],["Ticket",-12.188810348510742],["▁Chen",-12.188855171203612],["▁Competition",-12.188910484313965],["▁median",-12.18896770477295],["rische",-12.189159393310549],["▁multipli",-12.189269065856934],["▁Belgium",-12.189305305480955],["▁Physical",-12.189308166503906],["▁parameter",-12.18943214416504],["▁carrot",-12.189435005187988],["▁mandat",-12.189617156982422],["▁towel",-12.189697265625],["▁insured",-12.189825057983398],["PRI",-12.189868927001951],["etter",-12.189915657043455],["▁Oder",-12.190083503723145],["argued",-12.190171241760254],["FB",-12.190196990966797],["versicherung",-12.190197944641112],["abila",-12.190251350402832],["▁Coin",-12.190324783325195],["around",-12.19050121307373],["▁Lorsqu",-12.190773963928224],["valent",-12.190918922424316],["▁weltweit",-12.19092082977295],["Mod",-12.191039085388184],["▁defect",-12.191044807434082],["ibly",-12.191136360168455],["▁Juan",-12.191153526306152],["▁Jur",-12.191171646118164],["large",-12.191307067871094],["▁indicators",-12.191461563110352],["invest",-12.19168472290039],["▁rehabilitation",-12.191705703735352],["nag",-12.191823959350586],["▁Grundlage",-12.191829681396484],["▁Strategy",-12.192131042480469],["▁supérieur",-12.192173957824709],["▁orbit",-12.19228172302246],["▁Auftrag",-12.192360877990724],["▁Verb",-12.192441940307615],["ANA",-12.19256591796875],["▁trimis",-12.192611694335938],["▁Rub",-12.192704200744627],["institu",-12.19273281097412],["▁inspect",-12.1927490234375],["▁Princess",-12.192757606506348],["especially",-12.192777633666992],["▁combinations",-12.192793846130373],["▁gaze",-12.192842483520508],["elemente",-12.192970275878906],["deal",-12.192980766296388],["polis",-12.193157196044922],["shaw",-12.19316864013672],["▁Republicans",-12.193203926086426],["aded",-12.193244934082031],["▁Louisiana",-12.193364143371582],["▁Ville",-12.193368911743164],["▁afterwards",-12.193389892578123],["ONG",-12.193608283996582],["▁dryer",-12.193636894226074],["▁Manhattan",-12.19374942779541],["▁recomanda",-12.19412612915039],["▁juca",-12.194253921508787],["▁Crown",-12.194260597229004],["▁flesh",-12.194347381591797],["sichtig",-12.194358825683594],["▁rempli",-12.19437026977539],["▁deposits",-12.19438362121582],["▁Voll",-12.194599151611328],["▁analysts",-12.194672584533691],["▁Krieg",-12.19484806060791],["▁Rosa",-12.19495964050293],["▁Supply",-12.194964408874512],["GF",-12.19497013092041],["idad",-12.195098876953123],["▁flush",-12.195103645324709],["▁circular",-12.195355415344238],["▁național",-12.195379257202148],["▁lorsqu",-12.195441246032717],["▁analyst",-12.195459365844728],["▁Jahrhundert",-12.195586204528809],["▁biology",-12.195713996887209],["copy",-12.195733070373535],["▁bringt",-12.195765495300291],["▁Gospel",-12.195780754089355],["▁sorgen",-12.195842742919922],["zeichnung",-12.196181297302246],["chair",-12.196197509765623],["EB",-12.19636344909668],["▁Beth",-12.1964111328125],["115",-12.196416854858398],["▁Neue",-12.19647979736328],["▁faible",-12.196599960327148],["▁methodology",-12.196603775024414],["spiele",-12.196647644042969],["▁cherry",-12.196727752685549],["▁Mak",-12.196802139282228],["▁volet",-12.196982383728027],["funk",-12.197196006774902],["▁aktuelle",-12.197372436523438],["▁Yahoo",-12.19740867614746],["▁Zusammenarbeit",-12.197669982910156],["▁Serve",-12.197754859924316],["▁simpler",-12.197978019714355],["intégr",-12.197990417480469],["ndlich",-12.198083877563477],["▁actress",-12.198320388793944],["▁reuse",-12.19833278656006],["▁reviewing",-12.198405265808104],["statt",-12.198457717895508],["▁diving",-12.198469161987305],["▁Național",-12.19867706298828],["voi",-12.19873332977295],["Disc",-12.198812484741213],["▁Mineral",-12.19886302947998],["▁emit",-12.199007034301758],["witz",-12.199078559875488],["▁forgot",-12.19909954071045],["▁dim",-12.199115753173828],["upper",-12.19947624206543],["sichtlich",-12.19949722290039],["▁parcours",-12.199670791625977],["8:00",-12.199697494506836],["▁keyword",-12.199701309204102],["▁upgrades",-12.199763298034668],["kunden",-12.200177192687988],["▁Seg",-12.200257301330566],["▁Circle",-12.200289726257324],["▁ginger",-12.200336456298828],["mment",-12.200516700744627],["▁expenditure",-12.200655937194824],["▁parle",-12.200693130493164],["▁Counsel",-12.200722694396973],["▁Gui",-12.200722694396973],["resident",-12.20103645324707],["▁benchmark",-12.20103931427002],["▁Elektro",-12.201064109802246],["▁réalité",-12.201064109802246],["▁ridiculous",-12.201067924499512],["▁necklace",-12.20108699798584],["nian",-12.201117515563965],["▁Move",-12.20113468170166],["▁elevated",-12.201204299926758],["WE",-12.201281547546388],["▁Drum",-12.20132064819336],["▁Delivery",-12.201350212097168],["indicating",-12.201452255249023],["▁Benjamin",-12.201472282409668],["▁Samuel",-12.2014741897583],["bene",-12.201666831970217],["▁experienta",-12.20167636871338],["▁rocket",-12.201839447021484],["▁fossil",-12.20188331604004],["▁festive",-12.20193099975586],["▁conscience",-12.201964378356934],["▁bacon",-12.202136993408203],["▁aero",-12.202159881591797],["public",-12.202187538146973],["▁zic",-12.202218055725098],["ombre",-12.202356338500977],["▁Drain",-12.202550888061523],["7.5",-12.202672004699709],["▁Deutschen",-12.202703475952148],["reportedly",-12.202754974365234],["▁Français",-12.203105926513672],["▁enzyme",-12.203106880187988],["▁inquiry",-12.203117370605469],["▁presque",-12.20319366455078],["▁Airlines",-12.203228950500488],["▁Salon",-12.203237533569336],["▁Volunteer",-12.203310012817385],["▁modular",-12.203349113464355],["ón",-12.203364372253418],["NH",-12.203449249267578],["▁souhaite",-12.203516960144045],["social",-12.203659057617188],["▁Include",-12.203729629516602],["▁Decor",-12.2037992477417],["dded",-12.203965187072754],["▁Außen",-12.203969955444336],["rendu",-12.20412540435791],["▁MBA",-12.204150199890137],["▁columns",-12.204155921936035],["▁Wing",-12.20443630218506],["▁landmark",-12.204442977905272],["schritt",-12.204594612121582],["▁désir",-12.204630851745604],["(5)",-12.20468044281006],["▁réseaux",-12.204693794250488],["income",-12.204710960388184],["▁revised",-12.204819679260254],["HY",-12.204863548278809],["▁Explorer",-12.204873085021973],["▁Lam",-12.204877853393556],["▁almond",-12.204910278320312],["▁faux",-12.204910278320312],["opt",-12.204923629760742],["Out",-12.20493984222412],["▁virtue",-12.205025672912598],["▁Chocolate",-12.205151557922363],["▁spannend",-12.205305099487305],["▁spices",-12.205327033996582],["▁Climate",-12.205560684204102],["▁Residential",-12.205560684204102],["gung",-12.205700874328612],["▁filtr",-12.20606803894043],["circ",-12.20612335205078],["sisted",-12.206172943115234],["▁dedicat",-12.206243515014648],["▁foil",-12.206387519836426],["▁uita",-12.206392288208008],["▁lié",-12.206402778625488],["▁Demo",-12.206409454345703],["▁spoil",-12.2064208984375],["Cu",-12.206448554992676],["naut",-12.206525802612305],["▁configured",-12.206535339355469],["UK",-12.206543922424316],["▁disagree",-12.20656967163086],["Medic",-12.206767082214355],["cosm",-12.207074165344238],["Toute",-12.207109451293944],["▁beneficia",-12.207170486450195],["fassen",-12.207327842712402],["▁bail",-12.207337379455566],["igue",-12.207439422607422],["▁Mă",-12.20744800567627],["▁strips",-12.20748519897461],["▁Dritte",-12.207537651062012],["▁putere",-12.207597732543944],["Play",-12.20763111114502],["▁Samstag",-12.207632064819336],["▁households",-12.207791328430176],["▁persistent",-12.207914352416992],["uben",-12.207942962646484],["Web",-12.20809555053711],["▁scenery",-12.20820140838623],["▁défini",-12.208257675170898],["news",-12.208337783813477],["eira",-12.208428382873535],["▁Mumbai",-12.208438873291016],["▁Ward",-12.208558082580566],["▁ladder",-12.2086181640625],["▁plaque",-12.208623886108398],["nés",-12.20863914489746],["▁condamn",-12.20864486694336],["▁attribute",-12.208687782287598],["atti",-12.20873737335205],["▁Emily",-12.208953857421877],["▁pleine",-12.20896053314209],["▁automatisch",-12.209004402160645],["ifies",-12.209052085876465],["onna",-12.209104537963867],["▁inject",-12.209157943725586],["▁evolve",-12.20929718017578],["▁breeze",-12.209299087524414],["▁montre",-12.209415435791016],["▁memorial",-12.209425926208496],["ämlich",-12.209465026855469],["NBC",-12.209589958190918],["▁1940",-12.209836959838867],["▁trouvé",-12.20989227294922],["when",-12.209914207458496],["▁Büro",-12.209959983825684],["▁probability",-12.209978103637695],["cute",-12.21006965637207],["▁sturdy",-12.210078239440918],["AMP",-12.210165023803713],["▁Constantin",-12.210283279418944],["▁batter",-12.21037483215332],["▁bist",-12.21047019958496],["▁streams",-12.210528373718262],["rushing",-12.21057415008545],["▁shaft",-12.21065902709961],["▁proprii",-12.210722923278809],["émi",-12.21074390411377],["online",-12.210817337036133],["▁vanity",-12.210870742797852],["▁mural",-12.210878372192385],["▁distinguish",-12.210905075073242],["▁niciun",-12.211191177368164],["▁européenne",-12.211252212524414],["▁secretary",-12.211289405822754],["▁gaps",-12.211492538452148],["▁realm",-12.211499214172363],["▁elastic",-12.211504936218262],["▁Avoid",-12.211519241333008],["▁mauvais",-12.211931228637695],["▁innovations",-12.212663650512695],["▁suprem",-12.212776184082031],["▁vederea",-12.212817192077637],["wenden",-12.212892532348633],["-40",-12.213075637817385],["prenant",-12.21315574645996],["utilisateur",-12.213210105895996],["▁Oliver",-12.213228225708008],["111",-12.21326732635498],["▁manifestation",-12.213382720947266],["▁Rachel",-12.213458061218262],["agog",-12.21348762512207],["▁seamless",-12.213534355163574],["▁Employee",-12.213576316833496],["▁dimanche",-12.213582038879396],["▁banii",-12.213631629943848],["▁Ruth",-12.213781356811523],["▁Roy",-12.21385383605957],["▁homeless",-12.2139253616333],["▁Lower",-12.213932037353516],["health",-12.21393871307373],["▁atenti",-12.2140474319458],["▁touched",-12.214183807373049],["May",-12.214195251464844],["▁Buc",-12.214225769042969],["▁explored",-12.214393615722656],["▁declare",-12.21446132659912],["▁garment",-12.214469909667969],["▁buzz",-12.214483261108398],["▁rappel",-12.214662551879885],["▁uscat",-12.214903831481934],["▁Hyper",-12.214914321899414],["Etat",-12.215007781982422],["▁Titel",-12.215035438537598],["product",-12.215191841125488],["woman",-12.215280532836914],["▁Gab",-12.215450286865234],["▁advances",-12.215615272521973],["2/",-12.215753555297852],["prone",-12.215770721435549],["kö",-12.215986251831056],["▁counting",-12.21599292755127],["Sollte",-12.21604347229004],["▁Konzept",-12.216063499450684],["▁backgrounds",-12.216153144836426],["jährige",-12.216154098510742],["▁Alltag",-12.216187477111816],["▁metrics",-12.21619701385498],["▁illustrated",-12.216222763061523],["▁Charge",-12.21631908416748],["▁thoughtful",-12.216423034667969],["gesetz",-12.216527938842772],["pfen",-12.216611862182615],["▁déroul",-12.216713905334473],["▁checkout",-12.216876029968262],["quette",-12.216936111450195],["▁pierdut",-12.2170991897583],["▁Seat",-12.217140197753906],["▁linen",-12.217193603515623],["archiv",-12.217245101928713],["arna",-12.217254638671877],["importe",-12.21742057800293],["▁PHP",-12.217496871948242],["▁Parents",-12.217503547668455],["▁Birmingham",-12.21751308441162],["▁Integr",-12.217588424682615],["▁Mason",-12.217607498168944],["zieht",-12.217781066894531],["▁camps",-12.217803001403809],["OG",-12.21786117553711],["▁syrup",-12.217927932739258],["▁Cookies",-12.217928886413574],["▁Comfort",-12.217955589294434],["ută",-12.217976570129396],["abia",-12.217979431152344],["zeci",-12.218003273010254],["▁Gardens",-12.218009948730469],["▁incidents",-12.218149185180664],["▁participat",-12.218235969543455],["▁glimpse",-12.218342781066896],["5.5",-12.21843719482422],["▁dealers",-12.218469619750977],["▁Grande",-12.218565940856934],["▁raid",-12.218944549560549],["owing",-12.21903133392334],["▁contrary",-12.219109535217283],["Earlier",-12.219138145446776],["tien",-12.21916389465332],["drop",-12.21916961669922],["▁angajat",-12.219359397888184],["▁procesul",-12.219515800476074],["▁focal",-12.219564437866213],["▁impart",-12.219703674316406],["▁Abschluss",-12.219749450683594],["carui",-12.219830513000488],["insul",-12.220277786254885],["▁creamy",-12.22028350830078],["eille",-12.22032356262207],["suppl",-12.220335960388184],["▁Heaven",-12.220471382141112],["éna",-12.220667839050291],["▁swap",-12.220739364624023],["▁vreau",-12.220762252807615],["▁Bryan",-12.220809936523438],["▁Zug",-12.220815658569336],["▁glance",-12.220848083496094],["▁elimin",-12.220900535583496],["▁yeux",-12.221084594726562],["wehr",-12.221238136291504],["2.5",-12.221287727355955],["▁poses",-12.221364974975586],["▁parcel",-12.221585273742676],["▁Apartment",-12.221749305725098],["▁NASA",-12.221768379211426],["▁bénéfici",-12.22187614440918],["▁Umgebung",-12.221890449523926],["asia",-12.221946716308594],["abi",-12.221967697143556],["coup",-12.222002983093262],["synchron",-12.222017288208008],["▁Sicherheits",-12.22202968597412],["bic",-12.222076416015623],["▁distract",-12.222148895263672],["▁rentals",-12.222163200378418],["constru",-12.222290992736816],["curs",-12.222345352172852],["genannten",-12.222386360168455],["▁Shanghai",-12.222501754760742],["▁vague",-12.222504615783691],["▁Leather",-12.22250747680664],["▁Vintage",-12.222532272338867],["pointing",-12.22259521484375],["avant",-12.22268295288086],["gues",-12.222949028015137],["sweise",-12.22302532196045],["▁Greater",-12.223065376281738],["fig",-12.22310733795166],["▁Blut",-12.223217964172363],["▁Stellen",-12.22326946258545],["▁isolation",-12.22337818145752],["▁overhead",-12.22338581085205],["▁wondered",-12.223508834838867],["essai",-12.223609924316406],["aves",-12.2236328125],["▁Shore",-12.223637580871582],["▁INC",-12.223709106445312],["rufen",-12.223980903625488],["▁magnifique",-12.224069595336914],["▁intéressant",-12.224072456359863],["▁tanks",-12.224075317382812],["▁Tun",-12.224367141723633],["▁approaching",-12.224390029907228],["▁relay",-12.224479675292969],["▁Küche",-12.224529266357422],["describing",-12.224587440490724],["▁Certification",-12.22458839416504],["▁Breakfast",-12.224597930908203],["▁Frame",-12.224891662597656],["▁Stoff",-12.224909782409668],["▁victime",-12.224924087524414],["Observ",-12.224943161010742],["▁gutter",-12.224989891052246],["standard",-12.225220680236816],["▁Sci",-12.225244522094728],["▁sept",-12.225377082824709],["▁Potter",-12.225423812866213],["letter",-12.22577953338623],["▁tobacco",-12.225852012634276],["▁threatened",-12.22591781616211],["MW",-12.225936889648438],["▁Cher",-12.225944519042969],["0.1",-12.225957870483398],["mitted",-12.22596263885498],["zustellen",-12.225967407226562],["dominated",-12.226165771484377],["/16",-12.22623348236084],["POS",-12.226317405700684],["▁Zin",-12.226373672485352],["▁Okay",-12.226381301879885],["▁projected",-12.226405143737791],["▁selber",-12.226548194885254],["▁proiectului",-12.2266206741333],["▁Shell",-12.226683616638184],["▁cartridge",-12.226706504821776],["Message",-12.2267484664917],["haben",-12.226799964904783],["▁slides",-12.226829528808594],["▁gleichzeitig",-12.226886749267578],["▁Racing",-12.227051734924316],["▁20,",-12.227070808410645],["▁separat",-12.227094650268556],["▁repeatedly",-12.227110862731934],["▁casting",-12.22728157043457],["▁sacred",-12.227283477783203],["verfahren",-12.227387428283691],["▁echilibr",-12.227514266967772],["▁rebel",-12.2277250289917],["säu",-12.227794647216797],["ummy",-12.227815628051758],["▁backing",-12.22788906097412],["▁sponsors",-12.227912902832031],["▁Stress",-12.22802448272705],["▁Rules",-12.228083610534668],["▁render",-12.228241920471191],["▁funktioniert",-12.228384971618652],["▁Pearl",-12.228472709655762],["▁Scho",-12.228527069091797],["schwer",-12.228595733642578],["▁descoperit",-12.228702545166016],["holen",-12.228720664978027],["imposed",-12.228960990905762],["▁appearing",-12.228968620300291],["▁höher",-12.229082107543944],["▁Victorian",-12.229111671447754],["▁founding",-12.229155540466309],["▁Polish",-12.229239463806152],["▁anume",-12.229248046875],["Box",-12.229488372802734],["▁intrat",-12.229598999023438],["▁Inspiration",-12.229610443115234],["▁Canyon",-12.229625701904297],["▁Franklin",-12.22974681854248],["▁susceptible",-12.22982120513916],["trap",-12.229839324951172],["▁Roma",-12.23000717163086],["▁ethics",-12.230009078979492],["▁Privat",-12.230027198791504],["▁journalists",-12.230090141296388],["▁Universität",-12.230246543884276],["▁conditioner",-12.230308532714844],["folge",-12.230327606201172],["kirche",-12.230416297912598],["gehalten",-12.230530738830566],["midi",-12.230570793151855],["▁radar",-12.230619430541992],["▁Yard",-12.230775833129885],["▁professionnelle",-12.230863571166992],["▁Orchestra",-12.230870246887209],["▁immigrants",-12.230870246887209],["▁refined",-12.230929374694824],["▁Bishop",-12.231036186218262],["string",-12.23109531402588],["▁majoritatea",-12.231231689453123],["▁workflow",-12.23123836517334],["▁întreg",-12.231306076049805],["went",-12.231563568115234],["▁trat",-12.231689453125],["felul",-12.23176383972168],["▁hardwood",-12.231821060180664],["▁Task",-12.231867790222168],["branded",-12.231921195983888],["▁cinq",-12.231966018676758],["▁curb",-12.232041358947754],["▁Discount",-12.232043266296388],["▁Episode",-12.232131958007812],["▁Knowledge",-12.232144355773926],["▁tricky",-12.232173919677734],["▁characteristic",-12.232233047485352],["▁plata",-12.23226261138916],["▁Labour",-12.23232650756836],["▁Tha",-12.232372283935549],["▁Liefer",-12.232430458068848],["▁Reader",-12.232471466064451],["▁Linda",-12.232521057128906],["ittlerweile",-12.232552528381348],["defining",-12.23256492614746],["▁delayed",-12.232635498046877],["▁Bewertung",-12.232674598693848],["▁Unique",-12.232791900634766],["▁Champion",-12.232866287231444],["2008",-12.232897758483888],["▁conclu",-12.232934951782228],["▁câștig",-12.2329740524292],["▁scheduling",-12.2329740524292],["▁sailing",-12.233116149902344],["▁Storm",-12.23318862915039],["▁Stil",-12.23320198059082],["▁Album",-12.233211517333984],["▁ultime",-12.233343124389648],["url",-12.233369827270508],["▁terrific",-12.23339557647705],["▁remedy",-12.233396530151367],["▁Around",-12.233592987060549],["▁Kni",-12.233756065368652],["etty",-12.23376750946045],["Managing",-12.233809471130373],["▁Bedeutung",-12.233816146850586],["▁earthquake",-12.233817100524902],["▁Telefon",-12.23381805419922],["▁Upper",-12.233869552612305],["▁validation",-12.233892440795898],["-22",-12.233997344970703],["▁queue",-12.23401165008545],["tinde",-12.23402500152588],["built",-12.234047889709473],["▁voix",-12.234125137329102],["▁Resource",-12.234126091003418],["ţiuni",-12.234143257141112],["▁satisfying",-12.234299659729004],["▁Kohl",-12.234441757202148],["▁Materials",-12.234618186950684],["▁esp",-12.234732627868652],["enseignement",-12.234773635864258],["danach",-12.234883308410645],["peux",-12.234932899475098],["▁deployed",-12.235113143920898],["▁1976",-12.235126495361328],["ușor",-12.235334396362305],["élection",-12.235380172729492],["ettes",-12.235437393188477],["▁Madison",-12.235506057739258],["108",-12.235685348510742],["berger",-12.23569679260254],["▁pedal",-12.235702514648438],["▁quasi",-12.235820770263672],["▁lend",-12.235843658447266],["VER",-12.23594093322754],["▁chapters",-12.236002922058104],["▁idei",-12.23600959777832],["Deine",-12.236034393310549],["▁endure",-12.236092567443848],["▁Studios",-12.23625946044922],["structure",-12.23627471923828],["▁puiss",-12.236370086669922],["▁Morning",-12.236443519592283],["guide",-12.236462593078612],["▁Wave",-12.236617088317873],["▁banque",-12.236879348754885],["änd",-12.236912727355955],["oubli",-12.237070083618164],["▁mixer",-12.237125396728516],["▁remedi",-12.237210273742676],["▁scop",-12.237421989440918],["▁Rosen",-12.237561225891112],["▁spital",-12.23773193359375],["blau",-12.237811088562012],["▁financiar",-12.237865447998049],["avour",-12.237871170043944],["Def",-12.238025665283203],["▁socket",-12.238076210021973],["▁occurring",-12.238360404968262],["▁munci",-12.238368034362791],["▁realiza",-12.238426208496094],["▁beating",-12.2384614944458],["▁Phillip",-12.238490104675291],["▁courant",-12.23850917816162],["Auto",-12.238608360290527],["▁Lager",-12.238685607910156],["▁folos",-12.238696098327637],["▁moyens",-12.238770484924316],["▁Ec",-12.238780975341797],["▁Strip",-12.238788604736328],["sparen",-12.238848686218262],["▁Nintendo",-12.238886833190918],["▁Murphy",-12.23891258239746],["▁flux",-12.23903465270996],["▁mots",-12.23903465270996],["▁rechts",-12.23904514312744],["▁cardio",-12.239142417907717],["avoiding",-12.239343643188477],["érer",-12.239453315734863],["hiel",-12.239461898803713],["▁rezistent",-12.239521980285645],["close",-12.23954963684082],["hésitez",-12.239596366882324],["Hz",-12.239631652832031],["▁elaborate",-12.239689826965332],["▁permanently",-12.239709854125977],["▁Pittsburgh",-12.239734649658203],["▁counties",-12.239819526672363],["▁bookmark",-12.239919662475586],["▁Label",-12.239965438842772],["▁Freude",-12.23997402191162],["▁preferat",-12.239986419677734],["▁Mein",-12.239995002746582],["▁Crew",-12.24021816253662],["▁clips",-12.240253448486328],["8,000",-12.240263938903809],["▁recognise",-12.240311622619627],["ință",-12.240365028381348],["▁prieteni",-12.24044704437256],["Heute",-12.240522384643556],["ancienne",-12.240534782409668],["▁annoying",-12.240583419799805],["▁awful",-12.240704536437988],["▁Comments",-12.240774154663086],["▁musician",-12.240830421447754],["▁Elite",-12.241023063659668],["▁patri",-12.241024017333984],["▁Coupon",-12.241037368774414],["▁Farbe",-12.241097450256348],["▁contribui",-12.241110801696776],["hari",-12.241294860839844],["▁activitati",-12.24161148071289],["▁Traum",-12.2416410446167],["1.8",-12.24170207977295],["▁Healthcare",-12.24172306060791],["▁refresh",-12.241943359375],["▁Maha",-12.242060661315918],["▁dép",-12.242082595825195],["▁Studien",-12.242314338684082],["▁spectacol",-12.24237823486328],["impro",-12.24254035949707],["▁commentaire",-12.242544174194336],["ported",-12.242570877075195],["▁reclam",-12.242612838745115],["▁Verkauf",-12.242634773254396],["▁newspapers",-12.242661476135254],["▁iubit",-12.242838859558104],["▁Kenne",-12.242844581604004],["▁Consultant",-12.242958068847656],["▁stau",-12.242986679077148],["TON",-12.243057250976562],["▁Fehler",-12.243070602416992],["▁lettre",-12.243167877197266],["▁investigator",-12.243172645568848],["▁quantities",-12.243184089660645],["ogram",-12.243208885192873],["avaient",-12.24323844909668],["▁reducere",-12.24326515197754],["Lite",-12.243402481079102],["kurs",-12.243443489074709],["pré",-12.24383544921875],["pap",-12.243898391723633],["▁Männer",-12.243983268737791],["▁gauche",-12.244022369384766],["▁ähnlich",-12.244027137756348],["▁sunlight",-12.244063377380373],["▁rester",-12.24422550201416],["jumped",-12.244586944580078],["▁exclusiv",-12.24463176727295],["▁electoral",-12.244640350341797],["▁Portal",-12.244650840759276],["ulent",-12.244688987731934],["▁sonst",-12.24474048614502],["entraîne",-12.24483585357666],["▁repas",-12.244837760925291],["▁redus",-12.244858741760254],["aku",-12.244866371154783],["▁Graphic",-12.245251655578612],["▁geringe",-12.24539566040039],["plätze",-12.245474815368652],["Trebuie",-12.245479583740234],["▁rezultate",-12.245479583740234],["▁configure",-12.245683670043944],["▁PV",-12.245834350585938],["▁insect",-12.24610996246338],["▁Reviews",-12.246129035949709],["releasing",-12.246186256408691],["▁appliance",-12.246246337890623],["▁oferte",-12.246482849121094],["▁WILL",-12.246484756469728],["rion",-12.246499061584473],["▁Cole",-12.246582984924316],["▁1975",-12.24665069580078],["Admin",-12.24677848815918],["▁parade",-12.246800422668455],["▁mélange",-12.24692153930664],["▁shortage",-12.247007369995115],["▁Measure",-12.247400283813477],["anchmal",-12.24742603302002],["▁transfers",-12.247432708740234],["▁sistemului",-12.247573852539062],["▁deschide",-12.247819900512695],["▁Künstler",-12.247821807861328],["▁Plain",-12.247848510742188],["▁messaging",-12.247855186462402],["▁metabolism",-12.247879981994627],["fill",-12.248031616210938],["▁Bomb",-12.24814224243164],["usine",-12.248208045959473],["▁restart",-12.248233795166016],["▁Discussion",-12.248336791992188],["smith",-12.248472213745115],["▁Bh",-12.248607635498049],["▁sap",-12.248689651489258],["Moo",-12.248714447021484],["▁indirect",-12.248785972595217],["▁eingesetzt",-12.248863220214844],["▁Hip",-12.248870849609377],["▁iulie",-12.249113082885742],["▁atac",-12.249201774597168],["▁passport",-12.2492036819458],["▁Egyptian",-12.249290466308594],["▁soluți",-12.249349594116213],["▁cakes",-12.249356269836426],["▁Fellow",-12.24949836730957],["▁collision",-12.249533653259276],["▁abundant",-12.249961853027344],["▁Wonder",-12.24997329711914],["▁theories",-12.249991416931152],["landed",-12.250046730041504],["▁meantime",-12.2500638961792],["schlüsse",-12.25022029876709],["▁helicopter",-12.25039005279541],["Voici",-12.250479698181152],["▁Honey",-12.25049877166748],["▁deleted",-12.250511169433594],["▁Projekte",-12.250523567199709],["▁gasi",-12.2506742477417],["applique",-12.25068473815918],["TAL",-12.250699043273926],["notch",-12.250699996948242],["▁Response",-12.250818252563477],["▁deveni",-12.250818252563477],["▁regulate",-12.250829696655272],["▁vegetarian",-12.25083065032959],["▁Pastor",-12.250880241394045],["▁Strong",-12.250940322875977],["▁élèves",-12.251055717468262],["▁alimente",-12.25113582611084],["graphy",-12.251181602478027],["▁spirits",-12.251266479492188],["▁Cau",-12.251282691955566],["determin",-12.251304626464844],["arilor",-12.251382827758787],["▁masura",-12.251470565795898],["RAN",-12.251500129699709],["marked",-12.251564979553224],["cuba",-12.251602172851562],["omni",-12.251609802246094],["▁detox",-12.251662254333496],["▁quartz",-12.251741409301758],["▁Bug",-12.25177001953125],["▁Sugar",-12.25185775756836],["▁opponents",-12.25197982788086],["▁solved",-12.25207805633545],["semn",-12.252257347106934],["▁Prepare",-12.252558708190918],["ffel",-12.252586364746094],["▁Highlight",-12.252608299255373],["▁curent",-12.252618789672852],["▁praktisch",-12.252626419067385],["▁lending",-12.252676963806152],["▁minority",-12.252752304077148],["Free",-12.252970695495604],["business",-12.252997398376465],["▁outlook",-12.253097534179688],["▁assessments",-12.253168106079102],["▁Brother",-12.253266334533691],["▁partager",-12.25326919555664],["▁Brun",-12.25329303741455],["▁pedestrian",-12.25339412689209],["anța",-12.253413200378418],["▁recycled",-12.253457069396973],["▁quicker",-12.253626823425291],["▁lamps",-12.25368309020996],["▁nationally",-12.253813743591309],["▁Supplier",-12.253823280334473],["ograph",-12.253936767578123],["engage",-12.253981590270996],["▁Marg",-12.254131317138672],["▁aplicare",-12.25418186187744],["▁scared",-12.254194259643556],["▁accredited",-12.254255294799805],["▁outils",-12.25436019897461],["▁bâtiment",-12.254446029663086],["▁existed",-12.254586219787598],["gegangen",-12.254619598388672],["▁elevation",-12.25463581085205],["▁Tradition",-12.25467014312744],["▁Gericht",-12.254677772521973],["hub",-12.254680633544922],["strahl",-12.25473690032959],["build",-12.254796981811523],["▁Customers",-12.25487232208252],["klasse",-12.254890441894531],["▁pierre",-12.254895210266112],["(2)",-12.255006790161133],["Life",-12.255125999450684],["▁bachelor",-12.25513744354248],["▁quad",-12.25519561767578],["▁dispozitiv",-12.25523567199707],["106",-12.255266189575195],["▁suburb",-12.255495071411133],["▁1977",-12.255586624145508],["▁Alzheimer",-12.255973815917969],["▁spicy",-12.255988121032717],["▁spreading",-12.25600242614746],["nötigen",-12.256078720092772],["▁novels",-12.256104469299316],["▁responsabilité",-12.256141662597656],["▁Bud",-12.256332397460938],["▁desirable",-12.256407737731934],["TOR",-12.256444931030272],["five",-12.256547927856444],["▁Firmen",-12.256860733032228],["oeuvre",-12.257075309753418],["grass",-12.25723361968994],["▁practically",-12.257277488708496],["▁runners",-12.257281303405762],["▁mothers",-12.257341384887695],["Shop",-12.25734519958496],["▁Chicken",-12.257408142089844],["▁License",-12.257593154907228],["▁Bach",-12.25765323638916],["earliest",-12.257729530334473],["▁replica",-12.25774097442627],["▁haunt",-12.25783348083496],["▁materi",-12.257854461669922],["▁Finland",-12.257893562316896],["▁europene",-12.257919311523438],["abilă",-12.257944107055664],["cati",-12.258007049560549],["▁cholesterol",-12.258132934570312],["...).",-12.258151054382324],["cardi",-12.25838565826416],["▁(12",-12.258387565612791],["analyzed",-12.258506774902344],["▁respondents",-12.258591651916504],["▁höchste",-12.25864601135254],["▁Kern",-12.258647918701172],["▁knapp",-12.258781433105469],["▁Someone",-12.258955001831056],["▁équipé",-12.258997917175291],["credited",-12.259106636047363],["▁numar",-12.259163856506348],["▁Ace",-12.259185791015623],["zentrum",-12.2592191696167],["nehmer",-12.259270668029783],["arrivée",-12.259282112121582],["ELE",-12.259291648864746],["clean",-12.259418487548828],["Boost",-12.259538650512695],["call",-12.259575843811035],["▁Polizei",-12.25965976715088],["▁Januar",-12.259663581848145],["▁Tile",-12.259681701660156],["▁traduc",-12.25974464416504],["▁promptly",-12.259773254394531],["limit",-12.259809494018556],["▁recharge",-12.2598237991333],["▁wipe",-12.259862899780272],["▁Norway",-12.26001262664795],["▁Municipal",-12.260077476501465],["▁medieval",-12.260117530822754],["▁Treat",-12.26021671295166],["Orient",-12.260283470153809],["▁Stewart",-12.260294914245604],["▁lol",-12.26039981842041],["appartement",-12.260522842407228],["▁payer",-12.260655403137209],["▁splash",-12.260723114013672],["doubtedly",-12.260726928710938],["dry",-12.260846138000488],["▁Forex",-12.260939598083496],["▁Edinburgh",-12.260943412780762],["▁Traditional",-12.261032104492188],["▁1968",-12.261134147644045],["▁glow",-12.261248588562012],["Alternatively",-12.261265754699709],["▁partly",-12.261354446411133],["égi",-12.261401176452637],["▁Prices",-12.261640548706056],["haupt",-12.261651992797852],["▁sentences",-12.261711120605469],["ouvre",-12.261735916137695],["▁Liter",-12.261746406555176],["▁Important",-12.2620267868042],["▁Collins",-12.262077331542969],["▁reproduce",-12.262106895446776],["▁selten",-12.262124061584473],["▁Mitte",-12.262170791625977],["OA",-12.262174606323242],["▁Sister",-12.262358665466309],["▁responding",-12.262385368347168],["▁ballot",-12.262455940246582],["▁Nutrition",-12.262460708618164],["occurrence",-12.26246452331543],["Atunci",-12.26260471343994],["▁hockey",-12.262680053710938],["▁undertaking",-12.262697219848633],["▁educators",-12.262885093688965],["▁Swedish",-12.262893676757812],["▁Recovery",-12.262894630432127],["▁circum",-12.262910842895508],["▁chains",-12.263084411621094],["▁genug",-12.263113021850586],["▁Pil",-12.263227462768556],["▁farms",-12.263265609741213],["▁simplicity",-12.263336181640623],["-21",-12.263399124145508],["▁partition",-12.263493537902832],["▁Relations",-12.26360034942627],["zentrale",-12.263794898986816],["lapse",-12.263855934143066],["▁toast",-12.26386260986328],["▁citi",-12.263946533203123],["▁longtemps",-12.26398468017578],["maj",-12.264448165893556],["▁Cin",-12.264483451843262],["zeichen",-12.264504432678224],["▁Zoo",-12.264567375183104],["▁frisch",-12.264570236206056],["▁permettra",-12.26459503173828],["▁Liberty",-12.264642715454102],["▁playground",-12.264873504638672],["▁Mate",-12.265031814575195],["▁evolving",-12.265066146850586],["national",-12.265207290649414],["▁signifie",-12.26527976989746],["▁Related",-12.265292167663574],["NES",-12.265337944030762],["euil",-12.265473365783691],["▁struggles",-12.265542030334473],["▁instinct",-12.265628814697266],["arbre",-12.26608943939209],["▁commands",-12.266222953796388],["▁frumoase",-12.26637077331543],["▁watches",-12.266779899597168],["NM",-12.266804695129396],["▁influential",-12.266807556152344],["▁gewesen",-12.266901969909668],["▁Pictures",-12.267224311828612],["▁HVAC",-12.267242431640623],["▁skate",-12.26732063293457],["▁Robot",-12.267327308654783],["▁Boys",-12.267404556274414],["▁Mutter",-12.267425537109377],["▁marques",-12.267539024353027],["utiliser",-12.267793655395508],["▁amazed",-12.267799377441406],["ächtig",-12.26783275604248],["▁Success",-12.267870903015137],["gramm",-12.267956733703612],["▁1972",-12.267956733703612],["▁marina",-12.268269538879396],["▁lou",-12.268321990966797],["▁précis",-12.268380165100098],["ographic",-12.268482208251951],["people",-12.26848316192627],["fahr",-12.268547058105469],["▁Contemporary",-12.268550872802734],["▁frustrating",-12.26858139038086],["chide",-12.268704414367676],["1.5",-12.268807411193848],["▁ankle",-12.268850326538086],["▁proximity",-12.268986701965332],["▁Leute",-12.269006729125977],["UA",-12.269031524658203],["union",-12.269131660461426],["▁recovered",-12.26913356781006],["▁sword",-12.269216537475586],["▁Mut",-12.26923942565918],["▁Rin",-12.269360542297363],["▁lectures",-12.26942253112793],["▁licensing",-12.269423484802246],["MAC",-12.269498825073242],["▁commute",-12.269776344299316],["Acesta",-12.269858360290527],["▁Koch",-12.27008819580078],["▁depozit",-12.270119667053224],["▁erstmal",-12.270163536071776],["arhi",-12.270271301269531],["▁Normal",-12.270462036132812],["EZ",-12.270464897155762],["ărilor",-12.270986557006836],["▁favoris",-12.271041870117188],["▁$9",-12.271050453186035],["▁Lawrence",-12.271172523498535],["▁fixing",-12.271200180053713],["▁researching",-12.271288871765137],["▁Pant",-12.271467208862305],["▁candid",-12.271490097045898],["▁Arkansas",-12.27160930633545],["▁bitcoin",-12.271612167358398],["ва",-12.271645545959473],["▁Finger",-12.271692276000977],["▁SRL",-12.271718978881836],["Arg",-12.27179718017578],["trade",-12.27190399169922],["▁extraction",-12.27194118499756],["▁footprint",-12.2720308303833],["▁folosite",-12.272085189819336],["▁Flex",-12.272184371948242],["▁dys",-12.272294998168944],["▁Wright",-12.272343635559082],["▁multitude",-12.272378921508787],["▁Chu",-12.272494316101074],["▁Jerry",-12.27249526977539],["▁notebook",-12.272722244262695],["▁SIM",-12.272932052612305],["dietary",-12.272963523864746],["▁polished",-12.272984504699709],["▁carriers",-12.272993087768556],["▁cardiac",-12.27299976348877],["▁burned",-12.273038864135742],["▁sealed",-12.273062705993652],["▁pumps",-12.27322483062744],["▁consumed",-12.273233413696287],["▁Teaching",-12.273446083068848],["▁daughters",-12.27348518371582],["serviciile",-12.273600578308104],["▁Teams",-12.273690223693848],["▁avoided",-12.273903846740724],["▁compagnie",-12.274019241333008],["▁mașin",-12.274024963378906],["▁Sean",-12.27418041229248],["▁arunc",-12.274208068847656],["kräfte",-12.27423858642578],["vani",-12.274255752563477],["Metall",-12.27437973022461],["2009",-12.274449348449709],["moi",-12.274688720703123],["▁THAT",-12.274700164794922],["▁Ny",-12.274809837341309],["▁countertops",-12.274860382080078],["Pod",-12.274938583374023],["amente",-12.274943351745604],["▁offshore",-12.275001525878906],["luti",-12.275087356567385],["parked",-12.275160789489746],["ajout",-12.27524757385254],["Shirt",-12.275328636169434],["▁3/4",-12.275389671325684],["▁gratuite",-12.27543830871582],["mètres",-12.27557373046875],["▁Wish",-12.2755765914917],["▁holistic",-12.27558422088623],["gren",-12.275607109069824],["compiled",-12.275660514831545],["▁innocent",-12.275779724121094],["▁sorte",-12.275787353515623],["▁insulin",-12.275792121887209],["▁Academic",-12.275996208190918],["▁acrylic",-12.27600383758545],["▁hinzu",-12.27616024017334],["▁compression",-12.27619457244873],["▁viral",-12.276220321655272],["▁stereo",-12.2764892578125],["▁Concept",-12.27654266357422],["▁Margaret",-12.276659965515137],["▁consolidation",-12.276875495910645],["Figure",-12.277058601379396],["zzo",-12.277061462402344],["▁Egg",-12.277098655700684],["weiterhin",-12.277213096618652],["▁Vista",-12.277252197265623],["▁necessity",-12.277316093444824],["▁kayak",-12.277490615844728],["▁consensus",-12.277535438537598],["▁Katz",-12.277602195739746],["▁Warren",-12.277640342712402],["▁custody",-12.277755737304688],["++",-12.277759552001951],["▁paiement",-12.277782440185549],["▁foul",-12.277878761291504],["Chaque",-12.277934074401855],["▁Syrian",-12.277998924255373],["▁photographers",-12.278056144714355],["▁dismiss",-12.278270721435549],["▁Gaz",-12.278526306152344],["▁développer",-12.278529167175291],["▁Dakota",-12.27863883972168],["▁cardiovascular",-12.278642654418944],["▁tattoo",-12.278858184814451],["▁Lighting",-12.278918266296388],["▁nowhere",-12.278940200805664],["vada",-12.27895450592041],["▁Favor",-12.27908420562744],["ruled",-12.2791748046875],["▁Dating",-12.2793550491333],["gain",-12.279963493347168],["rism",-12.28016471862793],["coloured",-12.280169486999512],["▁refugees",-12.280184745788574],["▁Schm",-12.2803955078125],["▁happily",-12.280402183532717],["▁specification",-12.280607223510742],["WM",-12.280736923217772],["▁intro",-12.280823707580566],["rack",-12.28097915649414],["characterized",-12.28107738494873],["▁externe",-12.281136512756348],["▁arrives",-12.28114128112793],["WO",-12.28118133544922],["bericht",-12.28123378753662],["▁delays",-12.281242370605469],["▁Flight",-12.281256675720217],["1-3",-12.281524658203123],["▁Singh",-12.281548500061035],["▁shifting",-12.281651496887209],["▁dashboard",-12.281729698181152],["▁lieux",-12.281781196594238],["▁validate",-12.281901359558104],["▁uniquement",-12.281963348388672],["clip",-12.28199291229248],["cov",-12.282132148742676],["▁tendance",-12.282215118408203],["èle",-12.28225803375244],["▁incepe",-12.282261848449709],["▁chunk",-12.282585144042969],["▁Nr",-12.28266716003418],["▁Montana",-12.282674789428713],["▁sticks",-12.28277587890625],["▁caps",-12.28309154510498],["▁Jimmy",-12.283167839050291],["▁Levi",-12.283285140991213],["▁cables",-12.28345012664795],["▁SB",-12.283550262451172],["▁thème",-12.2836275100708],["ADA",-12.283672332763672],["▁garant",-12.283686637878418],["▁Joint",-12.283820152282717],["▁partage",-12.28398323059082],["schreib",-12.284119606018066],["ether",-12.28420352935791],["▁Klima",-12.284303665161133],["▁medicines",-12.284317016601562],["▁pH",-12.284320831298828],["Architect",-12.284378051757812],["știi",-12.284396171569824],["▁retrouve",-12.284700393676758],["▁posture",-12.284753799438477],["Feature",-12.28477382659912],["▁drying",-12.284884452819824],["trifft",-12.28488826751709],["ibi",-12.285079002380373],["▁rezerv",-12.285116195678713],["▁Vă",-12.28518009185791],["▁Speaker",-12.285282135009766],["▁illustration",-12.285319328308104],["oooo",-12.285419464111328],["▁initiated",-12.285518646240234],["PK",-12.285545349121094],["▁algorithms",-12.285630226135254],["▁zice",-12.285757064819336],["WI",-12.28581428527832],["urgence",-12.285823822021484],["▁bloggers",-12.285887718200684],["▁realitate",-12.285894393920898],["eks",-12.28598690032959],["▁cushions",-12.28614902496338],["▁Kri",-12.286224365234377],["▁réalisation",-12.286396026611328],["▁Photoshop",-12.286407470703123],["cret",-12.286462783813477],["faire",-12.286613464355469],["▁Cei",-12.286782264709473],["ICO",-12.286789894104004],["Contin",-12.28681755065918],["▁Builder",-12.286916732788086],["look",-12.28698444366455],["▁tenants",-12.287023544311523],["▁gloves",-12.287113189697266],["Day",-12.287169456481934],["firmly",-12.28725814819336],["CIA",-12.287352561950684],["▁TVA",-12.28741455078125],["▁notifications",-12.287446975708008],["▁Higher",-12.28745937347412],["▁Weihnachts",-12.28749179840088],["▁blur",-12.287755012512209],["ов",-12.288087844848633],["feder",-12.288159370422363],["▁explosion",-12.288171768188477],["▁Fenster",-12.288189888000488],["▁junge",-12.288225173950195],["▁Highland",-12.288230895996094],["▁Lü",-12.288290023803713],["▁Alba",-12.28832721710205],["▁Dort",-12.288338661193848],["▁recruiting",-12.28835391998291],["▁Multiple",-12.288549423217772],["▁animated",-12.288604736328123],["▁Virgin",-12.288637161254885],["1000",-12.288676261901855],["▁resin",-12.288700103759766],["▁matrix",-12.288826942443848],["irri",-12.289011001586914],["▁chiffre",-12.28904914855957],["▁Corps",-12.289252281188965],["▁advocacy",-12.28927230834961],["▁pozitiv",-12.289274215698242],["▁pouss",-12.289451599121094],["événement",-12.28950309753418],["▁pielii",-12.289717674255373],["onnais",-12.289750099182127],["▁Statement",-12.289754867553713],["crimin",-12.289868354797363],["hidrat",-12.289942741394045],["▁Jugendliche",-12.290057182312012],["TRI",-12.290223121643066],["erra",-12.290240287780762],["chat",-12.290321350097656],["▁traits",-12.290359497070312],["▁incentives",-12.29038143157959],["▁accelerate",-12.290568351745604],["woven",-12.29063320159912],["UST",-12.290688514709473],["▁premiers",-12.290717124938965],["▁Ferien",-12.29075527191162],["▁mariage",-12.290796279907228],["▁financially",-12.290801048278809],["gesellschaft",-12.290863037109377],["▁situaţi",-12.290865898132324],["▁quoted",-12.291373252868652],["▁periodic",-12.291421890258787],["▁chaos",-12.291543960571287],["▁remodel",-12.29159927368164],["▁Contractor",-12.291641235351562],["▁recuper",-12.291729927062988],["▁driveway",-12.291755676269531],["▁entertain",-12.291765213012695],["▁condus",-12.29176902770996],["▁chefs",-12.29184341430664],["pak",-12.291866302490234],["▁possède",-12.291948318481444],["▁outreach",-12.291984558105469],["▁navig",-12.292036056518556],["▁renewal",-12.292071342468262],["▁Rice",-12.292309761047363],["▁Czech",-12.292398452758787],["▁entstehen",-12.292445182800291],["▁droite",-12.29244899749756],["▁Investor",-12.292497634887695],["▁Soci",-12.29250431060791],["▁scalp",-12.292622566223145],["▁politiques",-12.29281520843506],["▁plaintiff",-12.292841911315918],["extending",-12.29287052154541],["▁paperwork",-12.29300594329834],["vizi",-12.293142318725586],["assisting",-12.29317569732666],["local",-12.293272972106934],["▁Wear",-12.293323516845703],["▁descend",-12.293340682983398],["▁Wikipedia",-12.293513298034668],["▁Consiliului",-12.293516159057615],["▁Nokia",-12.293540000915527],["▁facult",-12.293560028076172],["▁altogether",-12.293851852416992],["▁rankings",-12.29391860961914],["▁downloading",-12.293953895568848],["QU",-12.294007301330566],["▁Olive",-12.294041633605955],["▁backdrop",-12.294110298156738],["▁recomandat",-12.294116020202637],["▁Faculty",-12.294184684753418],["ANS",-12.29422092437744],["▁fracture",-12.294225692749023],["job",-12.29448127746582],["▁anticipate",-12.294525146484377],["▁drift",-12.294543266296388],["▁Marco",-12.294632911682127],["▁witnessed",-12.294700622558594],["▁comprend",-12.294974327087402],["▁bulb",-12.29504680633545],["▁shallow",-12.295059204101562],["stärke",-12.295063972473145],["▁Jessica",-12.295080184936523],["▁démarche",-12.29508113861084],["▁traditionally",-12.29508113861084],["Deputy",-12.295093536376951],["▁rivers",-12.295260429382324],["▁livraison",-12.29531192779541],["▁lacking",-12.295421600341797],["▁remodeling",-12.29542636871338],["▁acesteia",-12.295514106750488],["▁grosse",-12.295669555664062],["▁propus",-12.295833587646484],["lessly",-12.29587459564209],["▁Kredit",-12.295931816101074],["reputable",-12.295981407165527],["▁Sell",-12.2960205078125],["▁Crime",-12.29611110687256],["Ent",-12.296310424804688],["finity",-12.296422004699709],["▁Complex",-12.296500205993652],["easing",-12.296638488769531],["dynamic",-12.296670913696287],["▁eaten",-12.296727180480955],["gezogen",-12.296734809875488],["▁2004,",-12.296774864196776],["▁Muslims",-12.296822547912598],["▁Sprache",-12.296883583068848],["▁Truth",-12.296927452087402],["▁guarantees",-12.29692840576172],["/5",-12.29712963104248],["”).",-12.29713535308838],["▁Medium",-12.2972993850708],["▁décidé",-12.297445297241213],["▁balcony",-12.29747200012207],["leuchte",-12.297502517700195],["hik",-12.297849655151367],["▁Agriculture",-12.298221588134766],["▁securities",-12.298221588134766],["Probably",-12.298224449157717],["▁macar",-12.29824161529541],["▁Signal",-12.298399925231934],["lake",-12.298677444458008],["▁compétences",-12.298726081848145],["▁proprietary",-12.298812866210938],["allons",-12.298850059509276],["▁belongs",-12.298916816711426],["▁missile",-12.298958778381348],["țiune",-12.298999786376951],["▁Integration",-12.299116134643556],["▁testimony",-12.299120903015137],["▁wesentlich",-12.299142837524414],["▁donors",-12.299152374267578],["▁pivot",-12.299202919006348],["▁Uber",-12.299219131469728],["▁databases",-12.299281120300291],["▁studi",-12.299317359924316],["totdeauna",-12.299351692199709],["▁briefly",-12.299449920654297],["▁livr",-12.29952335357666],["▁CRM",-12.29958152770996],["gone",-12.299697875976562],["10)",-12.299761772155762],["▁zilele",-12.299920082092283],["Basically",-12.300008773803713],["▁medie",-12.300041198730469],["spotted",-12.30006217956543],["▁troubles",-12.30009937286377],["▁acknowledged",-12.300176620483398],["350",-12.300185203552246],["LB",-12.300273895263672],["Phy",-12.30038833618164],["natal",-12.300397872924805],["illé",-12.300445556640623],["bilder",-12.300625801086426],["▁apples",-12.300636291503906],["graphical",-12.300889015197754],["organiser",-12.301024436950684],["▁ochii",-12.301040649414062],["glas",-12.30117893218994],["CAP",-12.301180839538574],["▁Doors",-12.301331520080566],["▁Eis",-12.30156135559082],["tipuri",-12.301590919494627],["▁Worth",-12.301684379577637],["izează",-12.301719665527344],["nunț",-12.30180549621582],["▁Trip",-12.30186653137207],["ISS",-12.301976203918455],["efficient",-12.30201530456543],["Luckily",-12.302099227905272],["▁vase",-12.302133560180664],["▁gay",-12.302343368530272],["▁certificates",-12.302434921264648],["riad",-12.302549362182615],["stab",-12.302570343017578],["affiche",-12.302604675292969],["▁iPod",-12.302645683288574],["▁aștept",-12.302726745605469],["▁$500",-12.302751541137695],["▁Catherine",-12.302952766418455],["▁Circuit",-12.30295753479004],["▁ranch",-12.303045272827148],["▁consequence",-12.303118705749512],["listened",-12.303131103515623],["▁Options",-12.303187370300291],["feed",-12.30318832397461],["▁adviser",-12.303248405456545],["▁présenter",-12.30333423614502],["substant",-12.30337905883789],["▁Flag",-12.303604125976562],["▁Keith",-12.30366325378418],["▁inima",-12.303709983825684],["▁substrate",-12.30373764038086],["▁charger",-12.303803443908691],["▁reporter",-12.303844451904297],["ütz",-12.304068565368652],["▁unten",-12.30417537689209],["▁sympa",-12.304542541503906],["▁defeated",-12.304600715637209],["ändig",-12.304644584655762],["individu",-12.304747581481934],["▁Straßen",-12.304774284362791],["▁Nepal",-12.304791450500488],["million",-12.304803848266602],["▁Cake",-12.30499267578125],["▁investigations",-12.30526065826416],["▁inspector",-12.3054780960083],["▁Campbell",-12.305486679077148],["▁consommation",-12.305489540100098],["▁Ministerul",-12.305628776550291],["Advisory",-12.305749893188477],["▁Leistungs",-12.30593967437744],["▁Pull",-12.306157112121582],["▁lover",-12.306194305419922],["▁trunk",-12.30638027191162],["▁folosesc",-12.30639934539795],["pom",-12.306558609008787],["wunder",-12.30679416656494],["▁happier",-12.306801795959473],["▁embark",-12.30689525604248],["▁mediul",-12.3069486618042],["riff",-12.306973457336426],["▁copilul",-12.307039260864258],["ommage",-12.307126998901367],["rechnung",-12.307218551635742],["NU",-12.307220458984377],["▁fellowship",-12.307395935058594],["▁Mental",-12.307403564453123],["▁fever",-12.3074312210083],["▁silly",-12.307547569274902],["Object",-12.30756664276123],["NV",-12.307591438293455],["от",-12.30774974822998],["▁Strand",-12.307762145996094],["▁Exist",-12.30777359008789],["warum",-12.307832717895508],["CY",-12.307848930358888],["kä",-12.307856559753418],["!!!!!",-12.307869911193848],["▁moarte",-12.30793571472168],["▁waterfall",-12.308024406433104],["left",-12.30815601348877],["▁Nursing",-12.308225631713867],["▁invalid",-12.30826187133789],["struktur",-12.308385848999023],["Allerdings",-12.30838680267334],["étranger",-12.30838680267334],["▁prost",-12.308517456054688],["▁Parent",-12.30856227874756],["▁întreag",-12.308611869812012],["▁compensate",-12.308871269226074],["▁sometime",-12.308955192565918],["graduate",-12.308968544006348],["▁Carter",-12.30898380279541],["▁crap",-12.308998107910156],["▁mathematics",-12.309067726135254],["resemble",-12.309069633483888],["Dame",-12.309152603149414],["▁Swa",-12.309198379516602],["▁celebrity",-12.309239387512209],["▁verified",-12.309338569641112],["▁Behind",-12.309349060058594],["carbon",-12.309432983398438],["▁gateway",-12.309490203857422],["▁ambitious",-12.30952262878418],["▁Wellness",-12.30966567993164],["30,000",-12.30968189239502],["defined",-12.309929847717283],["specializes",-12.310121536254885],["▁Chase",-12.310199737548828],["HF",-12.310233116149902],["ABLE",-12.310348510742188],["▁Ehr",-12.310467720031738],["▁régime",-12.310480117797852],["▁awake",-12.310487747192385],["▁seafood",-12.310487747192385],["leading",-12.310554504394531],["▁Rule",-12.310602188110352],["verkehr",-12.310726165771484],["erem",-12.31073760986328],["▁1973",-12.310795783996582],["personal",-12.311171531677246],["ența",-12.311330795288086],["apprend",-12.311396598815918],["faisant",-12.311420440673828],["▁Sounds",-12.31151008605957],["▁Launch",-12.31151294708252],["half",-12.311636924743652],["▁verre",-12.311859130859377],["▁Regular",-12.31207275390625],["▁Nancy",-12.312142372131348],["quelles",-12.312161445617676],["▁erhält",-12.312169075012209],["▁socks",-12.3121919631958],["lamp",-12.312387466430664],["▁durchgeführt",-12.312472343444824],["▁advertise",-12.31260871887207],["powered",-12.31265354156494],["▁concur",-12.312699317932127],["▁ressources",-12.31293773651123],["▁allocation",-12.312986373901367],["chon",-12.31304168701172],["▁Larry",-12.313177108764648],["lässig",-12.313254356384276],["OLD",-12.313493728637695],["itty",-12.313599586486816],["▁immuno",-12.313645362854004],["▁(+",-12.313651084899902],["▁Essential",-12.313674926757812],["▁semaines",-12.313719749450684],["Ru",-12.31375503540039],["▁Gear",-12.313764572143556],["völlig",-12.313850402832031],["liga",-12.31391716003418],["▁Neg",-12.314082145690918],["▁gratitude",-12.31408977508545],["aventure",-12.314108848571776],["▁frustrated",-12.314115524291992],["▁retrait",-12.31422233581543],["▁statut",-12.314231872558594],["550",-12.31434440612793],["ла",-12.314428329467772],["risto",-12.314448356628418],["WAY",-12.314607620239258],["▁pigment",-12.314652442932127],["Selon",-12.314715385437012],["stil",-12.3148775100708],["▁Marin",-12.315055847167969],["ashi",-12.315085411071776],["▁contine",-12.31519889831543],["▁Economics",-12.315200805664062],["both",-12.3152437210083],["▁Dou",-12.31527328491211],["Fel",-12.315373420715332],["UNT",-12.315434455871582],["▁grandmother",-12.31548023223877],["▁domicile",-12.315678596496582],["▁buffer",-12.31574535369873],["▁fuse",-12.315815925598145],["▁dosage",-12.315821647644045],["▁Nici",-12.315839767456056],["▁worries",-12.315908432006836],["▁Rail",-12.3159818649292],["uneori",-12.315990447998049],["▁Sierra",-12.316030502319336],["▁porni",-12.316032409667969],["▁NOTE",-12.31605625152588],["▁tendency",-12.316065788269045],["Set",-12.316256523132324],["▁Hof",-12.31629753112793],["▁Ruhe",-12.31630039215088],["harm",-12.316360473632812],["▁Developer",-12.316367149353027],["suing",-12.316400527954102],["persönlichen",-12.31658935546875],["▁agréable",-12.316596031188965],["commissioned",-12.316696166992188],["▁1974",-12.31672191619873],["▁1969",-12.316758155822754],["▁regl",-12.316996574401855],["▁terror",-12.317042350769045],["▁température",-12.317051887512209],["▁Archiv",-12.31706714630127],["▁Military",-12.317140579223633],["▁König",-12.317290306091309],["▁forex",-12.31737232208252],["wiki",-12.31745719909668],["thetic",-12.317506790161133],["alaturi",-12.317974090576172],["▁montant",-12.3179931640625],["▁maladie",-12.318044662475586],["gust",-12.318151473999023],["▁demander",-12.318164825439451],["avocat",-12.318191528320312],["▁sci",-12.318192481994627],["▁Wireless",-12.318214416503906],["▁Dein",-12.318220138549805],["▁trio",-12.3183012008667],["▁Same",-12.318395614624023],["Datei",-12.318464279174805],["▁alerg",-12.318578720092772],["crowded",-12.318657875061035],["▁Punkt",-12.318853378295898],["▁sanctions",-12.318864822387695],["stating",-12.318922996520996],["▁discusse",-12.318949699401855],["▁Eigen",-12.319068908691406],["▁sănătate",-12.31911563873291],["▁correspondence",-12.319211959838867],["cred",-12.319331169128418],["VG",-12.319347381591797],["▁différence",-12.319347381591797],["▁Montreal",-12.319391250610352],["▁masini",-12.319398880004885],["iata",-12.319487571716309],["▁sampling",-12.319574356079102],["▁Gib",-12.319831848144531],["▁sheer",-12.319944381713867],["330",-12.319947242736816],["CHI",-12.319990158081056],["▁damn",-12.320030212402344],["▁Advisor",-12.320201873779297],["Typically",-12.320302963256836],["ssé",-12.320352554321287],["quart",-12.320361137390137],["chete",-12.320385932922363],["▁Puerto",-12.32049560546875],["2-1",-12.32050609588623],["NN",-12.320674896240234],["▁styling",-12.320707321166992],["rud",-12.320777893066406],["од",-12.320856094360352],["▁Hydro",-12.320941925048828],["▁Cable",-12.320961952209473],["video",-12.320974349975586],["▁Wirkung",-12.321194648742676],["▁noble",-12.321270942687988],["▁Sonder",-12.32129192352295],["mati",-12.321317672729492],["850",-12.321395874023438],["▁Richmond",-12.32143497467041],["▁niciodată",-12.32144260406494],["AO",-12.321527481079102],["▁altered",-12.321648597717283],["▁(15",-12.32168960571289],["▁Motiv",-12.322052001953123],["AKE",-12.322089195251465],["▁bestimmte",-12.322172164916992],["6.5",-12.322176933288574],["hectare",-12.322333335876465],["atorită",-12.322335243225098],["▁phases",-12.322447776794434],["▁Nova",-12.322566032409668],["ordinateur",-12.322579383850098],["▁corrupt",-12.322813034057615],["error",-12.322895050048828],["▁attacked",-12.323005676269531],["▁Kirche",-12.323019981384276],["heir",-12.323040962219238],["Das",-12.323254585266112],["▁anxious",-12.32325839996338],["▁Doc",-12.323386192321776],["▁Roth",-12.323415756225586],["▁Cine",-12.32388687133789],["▁auditor",-12.324418067932127],["▁beverage",-12.324586868286133],["▁précédent",-12.324637413024902],["▁deploy",-12.324837684631348],["▁accessibility",-12.324843406677246],["▁cage",-12.324885368347168],["▁Contra",-12.324934005737305],["Best",-12.324952125549316],["iji",-12.32497215270996],["▁père",-12.325060844421388],["▁scenic",-12.32511043548584],["synthesis",-12.325165748596191],["ßen",-12.32534408569336],["▁Videos",-12.325482368469238],["▁refus",-12.325484275817873],["stimmen",-12.3255615234375],["▁sleek",-12.32557773590088],["artige",-12.32563591003418],["mari",-12.32568359375],["▁excelent",-12.325740814208984],["▁negativ",-12.325806617736816],["▁blocking",-12.32590103149414],["spricht",-12.326001167297363],["▁discomfort",-12.32602310180664],["▁stratégie",-12.32602310180664],["▁Datenschutz",-12.326078414916992],["curg",-12.326128005981444],["▁lapte",-12.32643222808838],["▁acasă",-12.326491355895996],["▁ausschließlich",-12.32653522491455],["▁unbedingt",-12.326802253723145],["▁Linie",-12.32689380645752],["▁subscribers",-12.327019691467283],["109",-12.32702350616455],["▁Waste",-12.32712173461914],["▁Planung",-12.327231407165527],["▁visually",-12.32734489440918],["utilizarea",-12.327370643615724],["uba",-12.327381134033203],["▁fifteen",-12.327411651611328],["▁légère",-12.327411651611328],["ința",-12.327446937561035],["▁tolerance",-12.327460289001465],["▁piscine",-12.327536582946776],["▁nails",-12.327569007873535],["▁accus",-12.327693939208984],["▁coeur",-12.327773094177246],["freie",-12.32784938812256],["enţă",-12.32812213897705],["▁glucose",-12.328336715698242],["▁Jar",-12.32838249206543],["▁commencer",-12.328387260437012],["▁eliminating",-12.328414916992188],["▁mutation",-12.32844352722168],["▁afirma",-12.328444480895996],["▁Consulting",-12.328454971313477],["adia",-12.328543663024902],["zog",-12.328604698181152],["▁pielea",-12.328658103942873],["rton",-12.328706741333008],["exercice",-12.3287935256958],["namely",-12.328847885131836],["▁ajutor",-12.3289155960083],["▁markers",-12.328917503356934],["▁gardening",-12.328932762145996],["Karte",-12.329038619995115],["▁Pump",-12.329142570495604],["▁Dual",-12.329169273376465],["▁pratiques",-12.329349517822266],["▁behavioral",-12.329358100891112],["▁construire",-12.329511642456056],["▁Leonard",-12.329596519470217],["ediglich",-12.329630851745604],["ubbed",-12.3297758102417],["NK",-12.329792022705078],["shell",-12.329912185668944],["▁persönliche",-12.329996109008787],["ecuring",-12.329998970031738],["beaten",-12.33000373840332],["ALE",-12.330053329467772],["▁puppy",-12.33023452758789],["▁capac",-12.33027458190918],["▁seventh",-12.330394744873049],["▁nursery",-12.330400466918944],["▁Rum",-12.330419540405272],["▁exquisite",-12.33042335510254],["▁Legi",-12.330483436584473],["▁persist",-12.33049774169922],["bacterial",-12.330548286437988],["▁cereal",-12.330572128295898],["▁principe",-12.330693244934082],["chip",-12.330766677856444],["rush",-12.330832481384276],["▁funnel",-12.330904006958008],["▁calitatea",-12.331024169921877],["ibă",-12.33104419708252],["▁reign",-12.33108615875244],["▁congregation",-12.331120491027832],["▁obtine",-12.331270217895508],["▁découverte",-12.331286430358888],["▁gama",-12.33131504058838],["▁judec",-12.33132553100586],["Plan",-12.331351280212402],["▁gesture",-12.331539154052734],["öffentlichen",-12.33164405822754],["▁imported",-12.331693649291992],["▁rotate",-12.331747055053713],["blown",-12.331756591796877],["▁Protein",-12.331827163696287],["parfaitement",-12.331832885742188],["ondo",-12.331868171691896],["ologists",-12.331890106201172],["▁neighborhoods",-12.331989288330078],["▁Pope",-12.33202075958252],["▁museums",-12.332194328308104],["▁porter",-12.332330703735352],["▁kiss",-12.332335472106934],["pdf",-12.332354545593262],["sided",-12.332359313964844],["▁gern",-12.332395553588867],["bedingungen",-12.332496643066406],["▁Ride",-12.332582473754885],["Apoi",-12.332584381103516],["▁bestehen",-12.332603454589844],["5\"",-12.33285903930664],["bob",-12.332862854003906],["ficient",-12.33303165435791],["premise",-12.333086967468262],["▁Clip",-12.333112716674805],["▁concours",-12.333213806152344],["olar",-12.333281517028809],["▁Centr",-12.333356857299805],["outlined",-12.333429336547852],["▁observa",-12.333511352539062],["▁negotiate",-12.333537101745604],["▁Partnership",-12.33358383178711],["clock",-12.333662033081056],["roasted",-12.333755493164062],["Pourquoi",-12.33391284942627],["▁Marshall",-12.33400535583496],["▁Gerade",-12.334052085876465],["▁pachet",-12.334160804748535],["▁preliminary",-12.334162712097168],["▁tragic",-12.334200859069824],["author",-12.334268569946287],["▁Gov",-12.334309577941896],["▁comunic",-12.33440399169922],["▁coordinator",-12.334410667419434],["YA",-12.33445930480957],["▁Steam",-12.33476734161377],["▁Nag",-12.334796905517578],["▁Kara",-12.334851264953612],["▁Gang",-12.334858894348145],["aurez",-12.334868431091309],["▁horrible",-12.334869384765623],["▁Luxury",-12.335076332092283],["▁encouragement",-12.335169792175291],["▁conceptual",-12.335250854492188],["▁constituent",-12.335431098937988],["nvelop",-12.335494041442873],["ucc",-12.335500717163086],["▁conçu",-12.335542678833008],["pfel",-12.33559513092041],["special",-12.335700988769531],["▁Growth",-12.335834503173828],["cada",-12.33591651916504],["▁oamenilor",-12.335976600646973],["▁vendredi",-12.336021423339844],["▁coupe",-12.336055755615234],["▁Danke",-12.336134910583496],["reflects",-12.336181640625],["▁girlfriend",-12.336273193359377],["▁diffuse",-12.336325645446776],["HER",-12.336328506469728],["storing",-12.336464881896973],["ailing",-12.336591720581056],["▁Desi",-12.33660125732422],["stitution",-12.336832046508787],["▁adun",-12.336844444274902],["▁Partie",-12.336869239807127],["▁tissues",-12.336958885192873],["▁discovering",-12.337154388427734],["Jacques",-12.337178230285645],["lungs",-12.33724594116211],["▁Handy",-12.337261199951172],["centric",-12.337285995483398],["slav",-12.337442398071287],["▁sights",-12.337560653686523],["▁Category",-12.337644577026367],["▁Einrichtung",-12.337957382202148],["▁Robinson",-12.33804702758789],["▁Terra",-12.33815097808838],["▁creep",-12.338167190551758],["▁Lob",-12.338184356689451],["001",-12.33820629119873],["kop",-12.338208198547363],["Emb",-12.338292121887209],["▁forgive",-12.338391304016112],["▁icons",-12.33847427368164],["electric",-12.3385009765625],["▁faucet",-12.338516235351562],["▁invisible",-12.3386812210083],["sprach",-12.338801383972168],["▁beachten",-12.33881664276123],["rahm",-12.338833808898926],["▁Teacher",-12.338919639587402],["Fab",-12.339070320129396],["▁joue",-12.339101791381836],["▁Popular",-12.339120864868164],["▁Februar",-12.339171409606934],["sound",-12.339251518249512],["▁(0",-12.339317321777344],["▁Compare",-12.33938980102539],["▁pads",-12.339455604553224],["270",-12.33949851989746],["ousse",-12.339548110961914],["▁UAE",-12.339786529541016],["izări",-12.339787483215332],["▁bonuses",-12.33993911743164],["▁switches",-12.3400239944458],["▁Brothers",-12.340166091918944],["▁environmentally",-12.340171813964844],["vista",-12.340264320373535],["▁intentions",-12.3402738571167],["▁Terri",-12.340301513671877],["▁diabet",-12.34030532836914],["▁prese",-12.340333938598633],["▁parcurs",-12.340389251708984],["Warum",-12.340449333190918],["▁credentials",-12.340455055236816],["▁PLA",-12.34046459197998],["▁instruct",-12.34047031402588],["▁benefic",-12.340633392333984],["write",-12.340675354003906],["▁poids",-12.340773582458496],["▁Anspruch",-12.340923309326172],["▁avocado",-12.340923309326172],["▁inevitable",-12.340923309326172],["▁poorly",-12.340950965881348],["karte",-12.340994834899902],["▁Publishing",-12.340999603271484],["odată",-12.341140747070312],["▁scientifique",-12.341157913208008],["▁lăsa",-12.341262817382812],["▁secol",-12.34131908416748],["▁nevertheless",-12.341392517089844],["SAT",-12.341597557067873],["280",-12.341651916503906],["▁prevederi",-12.341670989990234],["▁chrome",-12.342002868652344],["institut",-12.342267036437988],["richtigen",-12.34228515625],["▁grief",-12.34233856201172],["▁penalties",-12.342373847961426],["▁Bayern",-12.34238052368164],["▁caramel",-12.342473983764648],["Now",-12.342495918273926],["Stiftung",-12.342576026916504],["country",-12.342737197875977],["dication",-12.34278678894043],["▁Chor",-12.342801094055176],["▁rămâne",-12.342936515808104],["▁TOP",-12.34300708770752],["▁complète",-12.34301471710205],["▁Marian",-12.34302806854248],["▁Avant",-12.343121528625488],["▁Shower",-12.343156814575195],["treu",-12.34316349029541],["▁chop",-12.34321403503418],["▁comfortably",-12.343220710754396],["▁autism",-12.34323787689209],["▁Sind",-12.34328556060791],["▁(20",-12.343340873718262],["▁Cinema",-12.343414306640623],["compania",-12.34360694885254],["▁Lex",-12.343622207641602],["▁Sofa",-12.343716621398926],["dru",-12.343753814697266],["▁verification",-12.343770027160645],["▁Immer",-12.343825340270996],["lomb",-12.343829154968262],["meric",-12.34385871887207],["▁slower",-12.34398365020752],["▁propag",-12.344090461730955],["Inter",-12.344097137451172],["selling",-12.34418773651123],["▁Bright",-12.34426975250244],["condition",-12.344280242919922],["PDF",-12.34429168701172],["oyez",-12.34439182281494],["▁Fried",-12.344420433044434],["▁Nazi",-12.34443187713623],["▁Buffalo",-12.344447135925291],["▁Sue",-12.344449043273926],["▁Rhein",-12.34468936920166],["▁Klaus",-12.344889640808104],["▁indiqu",-12.344963073730469],["echte",-12.344996452331545],["▁frecvent",-12.345165252685549],["▁conveniently",-12.345187187194824],["▁Moi",-12.345197677612305],["▁greenhouse",-12.345220565795898],["▁rédui",-12.34524154663086],["▁lengthy",-12.34542179107666],["verband",-12.345534324645996],["inţă",-12.345622062683104],["▁rigorous",-12.345625877380373],["▁Finish",-12.34580135345459],["▁FBI",-12.346052169799805],["cultura",-12.346083641052246],["▁compartment",-12.346110343933104],["▁pretend",-12.346117973327637],["▁assembled",-12.34621238708496],["▁Nie",-12.34639835357666],["fession",-12.34640884399414],["▁£2",-12.34642219543457],["algré",-12.3468017578125],["▁anterior",-12.34681797027588],["▁Wissenschaft",-12.34683609008789],["▁Harbor",-12.346923828125],["lix",-12.346985816955566],["=\"",-12.347049713134766],["▁breathtaking",-12.34705638885498],["▁Stern",-12.34708309173584],["▁Internetseite",-12.347132682800291],["▁locker",-12.347216606140137],["▁feather",-12.34726619720459],["Serv",-12.347297668457031],["▁snake",-12.347332000732422],["▁Border",-12.347396850585938],["▁undergo",-12.347518920898438],["▁petrol",-12.347558975219728],["▁dealership",-12.3475923538208],["▁commander",-12.347596168518066],["▁Monate",-12.347599983215332],["▁Guardian",-12.347665786743164],["▁Todd",-12.347774505615234],["Ann",-12.347825050354004],["ibilité",-12.347918510437012],["▁Quarter",-12.347987174987791],["▁portray",-12.348097801208496],["▁Tai",-12.34813404083252],["▁strikes",-12.348224639892578],["illage",-12.348381042480469],["▁IRS",-12.348417282104492],["▁lupta",-12.348455429077148],["▁Sper",-12.348493576049805],["PRO",-12.348530769348145],["▁Export",-12.348549842834473],["▁crypto",-12.348587989807127],["▁barbecue",-12.348692893981934],["▁portions",-12.348787307739258],["▁explicit",-12.348793983459473],["▁angenehm",-12.348834037780762],["▁marathon",-12.348946571350098],["▁apartament",-12.34898281097412],["▁Eva",-12.349079132080078],["plate",-12.349181175231934],["viel",-12.34925365447998],["FIN",-12.34926986694336],["dependent",-12.34935188293457],["▁cercet",-12.34942626953125],["▁midnight",-12.349499702453612],["copie",-12.349563598632812],["▁companii",-12.349621772766112],["▁tenu",-12.349660873413086],["1/2",-12.34966278076172],["2.4",-12.349693298339844],["abri",-12.34969997406006],["▁warn",-12.34980297088623],["▁luggage",-12.349875450134276],["numarul",-12.349968910217283],["▁contour",-12.350014686584473],["▁Ghost",-12.350016593933104],["Angaben",-12.35012435913086],["▁unemployment",-12.350296020507812],["▁rău",-12.350380897521973],["▁dispatch",-12.350445747375488],["investissement",-12.350547790527344],["▁passt",-12.35057258605957],["▁Germania",-12.350578308105469],["▁webpage",-12.350651741027832],["▁reservations",-12.350688934326172],["▁Kai",-12.350743293762209],["▁Cav",-12.350890159606934],["▁Patient",-12.351109504699709],["ер",-12.351213455200195],["▁Belle",-12.351236343383787],["▁Nashville",-12.351296424865724],["▁Talent",-12.351332664489746],["ouvrage",-12.351364135742188],["▁bekommt",-12.351365089416504],["USA",-12.351430892944336],["CES",-12.351432800292969],["▁Peru",-12.351499557495115],["▁erkennen",-12.35153579711914],["prinde",-12.351569175720217],["▁constitution",-12.351922035217283],["itatile",-12.351998329162598],["bah",-12.352147102355955],["▁avail",-12.352148056030272],["▁disponibile",-12.352149963378906],["hér",-12.352258682250977],["ол",-12.352411270141602],["▁startups",-12.352435111999512],["▁carton",-12.35248565673828],["▁Newsletter",-12.35251235961914],["éti",-12.352560997009276],["▁investigating",-12.352779388427734],["itul",-12.352925300598145],["touch",-12.352962493896484],["Sport",-12.353137016296388],["AME",-12.353203773498535],["MIN",-12.353222846984863],["metry",-12.353371620178224],["icy",-12.353492736816406],["▁Luna",-12.35351848602295],["▁asthma",-12.353614807128906],["▁conduc",-12.35365104675293],["▁Ari",-12.35369873046875],["trust",-12.353832244873049],["▁defines",-12.353894233703612],["▁Blend",-12.353927612304688],["azo",-12.353989601135254],["▁sweep",-12.354169845581056],["lope",-12.354331016540527],["ţinut",-12.35439682006836],["WD",-12.354503631591797],["▁appetite",-12.354619979858398],["▁Seed",-12.354753494262695],["Friend",-12.354854583740234],["▁repet",-12.354876518249512],["▁throat",-12.354936599731444],["philosoph",-12.355141639709473],["▁connaître",-12.355156898498535],["▁Counter",-12.355299949645996],["▁Anforderungen",-12.35533332824707],["▁Polit",-12.355363845825195],["▁Weather",-12.3554048538208],["bow",-12.355423927307127],["▁recreation",-12.355484008789062],["▁culinary",-12.355571746826172],["▁plage",-12.355609893798828],["▁Cruz",-12.35565948486328],["▁equip",-12.355668067932127],["▁Recent",-12.355697631835938],["LED",-12.355767250061035],["▁steak",-12.355772972106934],["▁belly",-12.355880737304688],["photo",-12.356130599975586],["▁lakes",-12.35623836517334],["▁intact",-12.356287956237791],["▁spiral",-12.356386184692385],["▁Billy",-12.356468200683594],["▁Understanding",-12.356534957885742],["▁Lay",-12.356558799743652],["▁roster",-12.356632232666016],["▁admire",-12.356647491455078],["▁android",-12.356732368469238],["▁technician",-12.356734275817873],["gène",-12.356818199157717],["motiv",-12.35695457458496],["▁Boat",-12.356988906860352],["▁genießen",-12.357000350952148],["▁Geschmack",-12.357001304626465],["▁heroes",-12.3570556640625],["▁1800",-12.357137680053713],["numeroase",-12.35776138305664],["▁anschließend",-12.357802391052246],["▁Spur",-12.357813835144045],["▁clarify",-12.35784912109375],["▁warmer",-12.35788917541504],["▁Ranch",-12.357955932617188],["▁simti",-12.358024597167969],["Thank",-12.35838508605957],["▁freight",-12.358434677124023],["▁administrators",-12.358453750610352],["Reg",-12.358588218688965],["Această",-12.358670234680176],["▁legume",-12.358741760253906],["▁utilizare",-12.358786582946776],["CON",-12.358904838562012],["urgi",-12.358917236328123],["▁Gesicht",-12.358920097351074],["▁counselor",-12.358954429626465],["▁mondiale",-12.359009742736816],["helm",-12.359137535095217],["▁Promo",-12.359156608581545],["▁Schweiz",-12.35917854309082],["Ich",-12.35929012298584],["▁intalni",-12.359295845031738],["▁Bloom",-12.359318733215332],["▁Score",-12.359362602233888],["▁Fruit",-12.35944652557373],["▁constraints",-12.359447479248049],["▁farmer",-12.359745979309082],["▁précise",-12.359807014465332],["evaluating",-12.359868049621582],["▁Period",-12.359891891479492],["byte",-12.359893798828123],["wah",-12.360025405883787],["Mac",-12.36012363433838],["iron",-12.360197067260742],["′",-12.360337257385254],["▁tehnic",-12.360539436340332],["▁legat",-12.36054515838623],["▁Pilot",-12.36057472229004],["▁Carpet",-12.36064624786377],["TEN",-12.360812187194824],["▁shareholders",-12.36082649230957],["vină",-12.360880851745604],["▁parole",-12.360939979553224],["ătă",-12.360984802246094],["bbing",-12.361000061035156],["▁switched",-12.361002922058104],["▁Petro",-12.361010551452637],["▁Vertrags",-12.36111831665039],["cham",-12.361178398132324],["wang",-12.361284255981444],["▁Bean",-12.36139965057373],["minister",-12.361442565917969],["▁Wu",-12.361522674560549],["▁Olympics",-12.361539840698242],["tipul",-12.361542701721191],["▁Citi",-12.36166763305664],["▁Fold",-12.361873626708984],["▁Partei",-12.361940383911133],["▁centrale",-12.361984252929688],["île",-12.362032890319824],["pflicht",-12.362175941467283],["heli",-12.362398147583008],["▁erwartet",-12.362414360046388],["▁oferta",-12.36245822906494],["▁NHS",-12.36246395111084],["annon",-12.362570762634276],["▁Rud",-12.362701416015623],["▁Stuttgart",-12.362737655639648],["▁rămas",-12.362746238708496],["▁eliminated",-12.36275577545166],["▁hiding",-12.362797737121582],["▁cadeau",-12.362832069396973],["▁mock",-12.363115310668944],["▁elder",-12.363333702087402],["▁Liz",-12.363364219665527],["aji",-12.363544464111328],["▁endlich",-12.363653182983398],["sufficient",-12.36366844177246],["▁zusätzliche",-12.363712310791016],["scient",-12.363757133483888],["▁Adjust",-12.363883972167969],["▁incentive",-12.36394500732422],["▁Papa",-12.364012718200684],["▁Pharma",-12.364041328430176],["▁conflicts",-12.364107131958008],["zählen",-12.364113807678224],["▁chien",-12.364118576049805],["KB",-12.36413288116455],["ultimi",-12.364188194274902],["▁Jul",-12.36421012878418],["▁Male",-12.36422061920166],["▁viewer",-12.36427116394043],["▁Sector",-12.364328384399414],["▁REAL",-12.364344596862791],["▁arbitr",-12.36436939239502],["resistant",-12.364399909973145],["▁Bristol",-12.364423751831056],["▁shy",-12.364540100097656],["SW",-12.364593505859377],["▁Kirk",-12.36460018157959],["centrul",-12.364653587341309],["▁Venezuela",-12.364657402038574],["▁communicating",-12.364657402038574],["▁Chemical",-12.364663124084473],["▁surprises",-12.364843368530272],["▁Jamie",-12.364933967590332],["▁Heavy",-12.364965438842772],["▁turnover",-12.36498737335205],["▁étudiants",-12.365114212036133],["welcher",-12.365124702453612],["▁preturi",-12.365200996398926],["▁Mono",-12.365283966064451],["▁paddle",-12.365309715270996],["▁accountability",-12.365364074707031],["OUS",-12.365592956542969],["▁marketers",-12.365762710571287],["fection",-12.365900993347168],["▁Outside",-12.365921020507812],["▁Jefferson",-12.366114616394045],["oaie",-12.36617660522461],["tenue",-12.366275787353516],["HU",-12.366329193115234],["Très",-12.36639404296875],["valoarea",-12.36642837524414],["103",-12.366482734680176],["▁Privacy",-12.366580963134766],["▁Leistungen",-12.36659812927246],["(3)",-12.36662483215332],["▁études",-12.366734504699709],["sko",-12.366750717163086],["drum",-12.366822242736816],["▁lamb",-12.36684226989746],["▁nicio",-12.367094993591309],["▁NATO",-12.367104530334473],["▁Freitag",-12.367178916931152],["▁precedent",-12.367178916931152],["▁partenaires",-12.367202758789062],["▁companiei",-12.367234230041504],["▁Plaza",-12.367249488830566],["▁disruption",-12.367274284362791],["▁violations",-12.367338180541992],["▁Reference",-12.367446899414062],["▁habitants",-12.36770248413086],["▁compost",-12.36776351928711],["▁citoyen",-12.367785453796388],["▁Historical",-12.367857933044434],["vollen",-12.36793327331543],["▁Eck",-12.36815357208252],["▁lumii",-12.36818027496338],["▁reusit",-12.368278503417969],["genic",-12.36830711364746],["Why",-12.368436813354492],["ASE",-12.368474006652832],["▁athlete",-12.36854076385498],["▁Spitze",-12.368559837341309],["▁schimbat",-12.368566513061523],["▁anonymous",-12.368850708007812],["jedes",-12.368856430053713],["exclu",-12.368874549865724],["factor",-12.369199752807615],["▁Dezember",-12.36923122406006],["▁scientist",-12.369373321533203],["▁likelihood",-12.36947250366211],["▁Rhode",-12.369488716125488],["▁Balance",-12.369521141052246],["istoria",-12.36959457397461],["▁Neil",-12.369780540466309],["▁bush",-12.369919776916504],["▁Ergebnisse",-12.369935989379885],["▁Sinn",-12.369956016540527],["▁spezielle",-12.370128631591797],["▁jucat",-12.37015438079834],["▁spite",-12.370179176330566],["▁Ultimate",-12.370365142822266],["▁fructe",-12.370401382446287],["▁asleep",-12.370441436767578],["▁Goal",-12.370539665222168],["▁PAR",-12.370631217956545],["▁rows",-12.370705604553224],["▁Fol",-12.3709135055542],["▁durata",-12.370945930480955],["▁traditionnel",-12.37100887298584],["▁tema",-12.37122917175293],["▁crédit",-12.371232986450195],["smallest",-12.37135887145996],["▁amino",-12.37135887145996],["▁elephant",-12.371405601501465],["▁tubes",-12.371685028076172],["▁Verwendung",-12.371719360351562],["▁Excellence",-12.371889114379885],["▁utilities",-12.371962547302246],["frau",-12.372111320495604],["▁poze",-12.3721342086792],["août",-12.372307777404783],["ango",-12.372514724731444],["give",-12.372532844543455],["▁appelé",-12.372576713562012],["▁yeast",-12.372671127319336],["▁enrollment",-12.372676849365234],["organiz",-12.3727445602417],["▁asociat",-12.372753143310549],["▁cattle",-12.372772216796877],["▁Solution",-12.372798919677734],["evoke",-12.372807502746582],["▁Hampshire",-12.372857093811035],["▁yeah",-12.372878074645996],["▁Argentina",-12.372928619384766],["▁abnormal",-12.373022079467772],["▁Heights",-12.373082160949709],["▁Mitchell",-12.373099327087402],["▁Quad",-12.373350143432615],["▁textures",-12.373382568359377],["▁coalition",-12.373384475708008],["▁dataset",-12.37338924407959],["World",-12.373438835144045],["ständ",-12.373456001281738],["▁groove",-12.373476028442385],["▁emotionally",-12.373562812805176],["▁preciz",-12.37363624572754],["kte",-12.373741149902344],["berechtigt",-12.373828887939451],["▁1971",-12.373888969421388],["grandes",-12.373907089233398],["▁Broadway",-12.37391185760498],["▁comunicat",-12.373994827270508],["nui",-12.37402629852295],["GER",-12.374079704284668],["pick",-12.374125480651855],["inscrit",-12.37414264678955],["▁Gross",-12.374258995056152],["▁McDonald",-12.374310493469238],["▁Zero",-12.374330520629885],["▁Halb",-12.374341011047363],["▁caractère",-12.374553680419922],["▁doctrine",-12.374553680419922],["▁Sinne",-12.37458610534668],["MLS",-12.374594688415527],["▁réel",-12.374759674072266],["▁Ful",-12.37476921081543],["limiting",-12.37483024597168],["▁Gan",-12.374870300292969],["▁exclude",-12.37490463256836],["imba",-12.374974250793455],["rolul",-12.374991416931152],["▁veggies",-12.375059127807615],["▁fasci",-12.375092506408691],["▁oval",-12.375173568725586],["▁contacter",-12.375221252441406],["▁linking",-12.375279426574709],["▁knit",-12.375308990478516],["▁enroll",-12.37550449371338],["▁dédié",-12.375533103942873],["▁renting",-12.37554168701172],["▁genera",-12.37567138671875],["citing",-12.375691413879396],["▁bend",-12.37570095062256],["guin",-12.375752449035645],["▁caregiver",-12.375768661499023],["▁könnt",-12.375791549682615],["▁Scripture",-12.375795364379885],["▁Mic",-12.375899314880373],["▁Denmark",-12.37590217590332],["▁qualifying",-12.375917434692385],["▁costumes",-12.375958442687988],["▁dwelling",-12.37601375579834],["▁recrut",-12.376099586486816],["▁bedding",-12.37618637084961],["gesprochen",-12.376253128051758],["▁editors",-12.376386642456056],["/12",-12.37657642364502],["▁cumparat",-12.376583099365234],["fiction",-12.376730918884276],["▁spinal",-12.37674045562744],["▁pathway",-12.37679958343506],["▁vârst",-12.37683391571045],["mba",-12.376874923706056],["▁enthusiastic",-12.37692642211914],["▁Watt",-12.37697982788086],["symptom",-12.376992225646973],["▁pup",-12.37712287902832],["▁glorious",-12.377225875854492],["▁fața",-12.37722873687744],["▁prohibited",-12.377256393432615],["vergleich",-12.377286911010742],["▁suspected",-12.377334594726562],["▁Railway",-12.377381324768066],["▁Aujourd",-12.377469062805176],["▁Patients",-12.377476692199709],["▁séance",-12.377501487731934],["▁contraire",-12.377503395080566],["▁cuvânt",-12.37771224975586],["▁trotzdem",-12.37773609161377],["émission",-12.377795219421388],["▁bore",-12.37782096862793],["▁safeguard",-12.377851486206056],["▁galleries",-12.37820053100586],["cron",-12.378268241882324],["▁Rica",-12.378335952758787],["fläche",-12.37839126586914],["▁Slow",-12.37842082977295],["▁vara",-12.378549575805664],["▁Swan",-12.378564834594728],["▁compounds",-12.378564834594728],["▁Slo",-12.378621101379396],["▁accommodations",-12.378621101379396],["▁Putin",-12.378708839416504],["▁undertaken",-12.37876796722412],["▁prépar",-12.37879467010498],["▁gandi",-12.37881088256836],["sediul",-12.378924369812012],["▁Nathan",-12.379143714904783],["▁fountain",-12.379173278808594],["▁mère",-12.379194259643556],["fatty",-12.379201889038086],["▁concentrated",-12.379241943359377],["richtung",-12.379300117492676],["▁appropriately",-12.37955379486084],["107",-12.379631996154783],["▁shark",-12.379735946655272],["▁Topic",-12.379867553710938],["▁Ausstellung",-12.379880905151367],["▁SUA",-12.380267143249512],["SER",-12.380359649658203],["▁Nicole",-12.38039779663086],["▁utilisateurs",-12.380620956420898],["▁Brazilian",-12.38075351715088],["▁continut",-12.380865097045898],["▁sanatate",-12.380881309509276],["faudra",-12.380882263183594],["nahm",-12.380938529968262],["▁Specific",-12.381153106689451],["aiba",-12.381199836730955],["cepând",-12.381296157836914],["▁Beer",-12.381366729736328],["roni",-12.381616592407228],["kay",-12.381636619567873],["▁gravity",-12.381844520568848],["▁verfügt",-12.38185691833496],["7:30",-12.381878852844238],["▁Players",-12.381945610046388],["▁Industries",-12.38198184967041],["punkte",-12.382119178771973],["▁yacht",-12.382135391235352],["-04",-12.382149696350098],["onné",-12.382192611694336],["▁Cards",-12.382221221923828],["▁fete",-12.382420539855955],["breaking",-12.38257884979248],["baum",-12.38262176513672],["nada",-12.382651329040527],["▁geplant",-12.382750511169434],["genuinely",-12.382766723632812],["talk",-12.382871627807615],["▁disadvantage",-12.382920265197754],["▁shutter",-12.38300323486328],["virus",-12.38302230834961],["▁cricket",-12.38308048248291],["▁comenzi",-12.383102416992188],["hier",-12.383170127868652],["▁aufzu",-12.383198738098145],["▁Rez",-12.38321304321289],["▁conclusions",-12.383329391479492],["▁Wang",-12.383509635925291],["Darüber",-12.383524894714355],["▁CSS",-12.383573532104492],["CW",-12.383780479431152],["▁Chr",-12.383790969848633],["▁traded",-12.383843421936035],["▁Schon",-12.384265899658203],["mped",-12.38429069519043],["▁alloy",-12.384385108947754],["AVE",-12.38451099395752],["▁imagery",-12.38454246520996],["▁resurse",-12.38479995727539],["▁Thunder",-12.38483428955078],["▁schimbare",-12.384860038757324],["▁Youtube",-12.38499927520752],["▁Monster",-12.385189056396484],["phil",-12.385234832763672],["▁bébé",-12.385284423828123],["Creating",-12.385428428649902],["ănă",-12.38546657562256],["▁Staat",-12.385504722595217],["adică",-12.385531425476074],["▁boyfriend",-12.385552406311035],["▁Winner",-12.385594367980955],["▁disputes",-12.385653495788574],["▁lush",-12.3856840133667],["▁CMS",-12.385719299316406],["▁locaux",-12.385725021362305],["▁Verfahren",-12.38576889038086],["▁Café",-12.385786056518556],["▁Vorstand",-12.385870933532717],["▁lucrat",-12.385960578918455],["▁Root",-12.38602352142334],["▁decis",-12.386059761047363],["▁Shadow",-12.386062622070312],["▁countryside",-12.386067390441896],["▁analiza",-12.386114120483398],["obos",-12.38616943359375],["opera",-12.386175155639648],["actu",-12.386207580566406],["▁Songs",-12.3864164352417],["reifen",-12.38648509979248],["▁hilft",-12.38665008544922],["region",-12.386727333068848],["▁categoria",-12.387001991271973],["capturing",-12.38701343536377],["▁1967",-12.387025833129885],["▁optimized",-12.387032508850098],["▁Dim",-12.387353897094728],["▁adapté",-12.387447357177734],["zeichnet",-12.387524604797363],["▁strada",-12.387625694274902],["fulness",-12.38774585723877],["▁technically",-12.38774585723877],["▁marker",-12.387757301330566],["▁vizita",-12.387808799743652],["▁imperative",-12.387986183166504],["▁pensé",-12.38802719116211],["▁drilling",-12.38803005218506],["ISA",-12.38818073272705],["▁Massage",-12.388201713562012],["▁Terry",-12.388238906860352],["▁pourtant",-12.38835334777832],["▁declaration",-12.388440132141112],["▁instructors",-12.388453483581545],["Eventually",-12.38847827911377],["▁banned",-12.38847827911377],["MAT",-12.388520240783691],["▁medici",-12.38856315612793],["▁Warm",-12.388615608215332],["▁trec",-12.388731002807615],["▁ecran",-12.388763427734377],["▁goat",-12.388838768005373],["▁manipulation",-12.388850212097168],["▁mayor",-12.388898849487305],["▁unterwegs",-12.388975143432615],["▁journals",-12.3890380859375],["▁hedge",-12.389239311218262],["Merc",-12.389300346374512],["▁joueurs",-12.389411926269531],["▁Religion",-12.3894624710083],["▁Mountains",-12.389477729797363],["▁renewed",-12.389497756958008],["▁Limit",-12.389543533325195],["ikea",-12.389771461486816],["▁utiliza",-12.38977336883545],["sogenannte",-12.389808654785156],["0.2",-12.389836311340332],["▁Organ",-12.38987922668457],["▁Shakespeare",-12.389952659606934],["▁Maintenance",-12.38995361328125],["▁Wärme",-12.389954566955566],["▁Northwest",-12.390060424804688],["▁numit",-12.390106201171877],["▁mica",-12.390165328979492],["turm",-12.39016819000244],["▁motivate",-12.390250205993652],["▁Staats",-12.390355110168455],["optimum",-12.390487670898438],["▁sortir",-12.390546798706056],["▁Asset",-12.390555381774902],["▁hervorragend",-12.390692710876465],["▁commentary",-12.39071273803711],["▁actuellement",-12.390732765197754],["NER",-12.390765190124512],["NL",-12.390789985656738],["ritt",-12.390803337097168],["▁Wirtschafts",-12.390813827514648],["träger",-12.390840530395508],["▁Versand",-12.390870094299316],["▁nostri",-12.390953063964844],["▁enorm",-12.391227722167969],["▁whale",-12.391260147094728],["▁Aufgabe",-12.391277313232422],["▁unfair",-12.391291618347168],["▁Cord",-12.391315460205078],["incorporating",-12.39134693145752],["luck",-12.39157772064209],["Afrique",-12.39168643951416],["▁coated",-12.391857147216797],["▁india",-12.391908645629885],["▁temporarily",-12.39193058013916],["▁ciuda",-12.392097473144531],["▁coral",-12.392184257507324],["▁wirkt",-12.392203330993652],["▁folding",-12.392309188842772],["wichtigsten",-12.392398834228516],["impacted",-12.392422676086426],["▁wählen",-12.392423629760742],["▁differentiate",-12.392492294311523],["▁froid",-12.392544746398926],["▁hug",-12.39255142211914],["▁construi",-12.39255428314209],["▁membru",-12.392603874206545],["▁masculin",-12.392667770385742],["partisan",-12.392711639404297],["▁schimba",-12.392725944519045],["▁economies",-12.392827987670898],["▁Abraham",-12.392914772033691],["wesen",-12.393013954162598],["enia",-12.393026351928713],["▁answering",-12.393080711364746],["▁activități",-12.39309024810791],["▁mémoire",-12.393160820007324],["▁versucht",-12.393305778503418],["ember",-12.39333438873291],["▁instala",-12.39334774017334],["▁eligibility",-12.393407821655272],["▁enjoyment",-12.393409729003906],["▁Arme",-12.39350414276123],["although",-12.393534660339355],["▁encompass",-12.393596649169922],["▁zufrieden",-12.393658638000488],["Script",-12.393691062927246],["KG",-12.39385986328125],["▁adhesive",-12.393902778625488],["▁Verkehrs",-12.393908500671388],["▁monitored",-12.394103050231934],["▁Conservation",-12.39414882659912],["hav",-12.394156455993652],["▁Above",-12.394174575805664],["▁Former",-12.394241333007812],["▁Certain",-12.394250869750977],["saving",-12.394311904907228],["▁Pun",-12.394390106201172],["▁awkward",-12.394397735595703],["▁Pretty",-12.394410133361816],["▁scanning",-12.394417762756348],["layer",-12.394527435302734],["motor",-12.39453125],["▁beginnt",-12.39455795288086],["▁affiliated",-12.394681930541992],["▁archives",-12.394686698913574],["▁sunshine",-12.394892692565918],["kha",-12.39498805999756],["▁investigated",-12.395149230957031],["▁fantas",-12.395277976989746],["▁united",-12.395355224609377],["allegedly",-12.395373344421388],["▁Eugen",-12.3955078125],["▁proprie",-12.395843505859377],["uca",-12.396183013916016],["DES",-12.396187782287598],["ştii",-12.396190643310549],["▁Running",-12.39620590209961],["lbstverständlich",-12.396248817443848],["index",-12.396300315856934],["▁studiu",-12.396512031555176],["URE",-12.39655303955078],["gültig",-12.39662742614746],["▁lundi",-12.396649360656738],["▁Zucker",-12.396650314331056],["▁positively",-12.396721839904783],["folgenden",-12.396758079528809],["anță",-12.396800994873049],["▁clan",-12.39686679840088],["▁literacy",-12.396879196166992],["▁ober",-12.39699935913086],["John",-12.397003173828123],["greg",-12.39700984954834],["▁titlu",-12.397049903869627],["▁ţări",-12.39707088470459],["Bra",-12.397100448608398],["▁Evans",-12.397164344787598],["modern",-12.397172927856444],["▁hauteur",-12.397353172302246],["refers",-12.397416114807127],["▁plasma",-12.397575378417969],["▁optic",-12.397595405578612],["▁shampoo",-12.397619247436523],["▁cheek",-12.397727966308594],["opted",-12.397741317749023],["▁persönlich",-12.397832870483398],["▁1945",-12.398118019104004],["ICI",-12.398193359375],["biotic",-12.398222923278809],["▁Beruf",-12.398372650146484],["▁trez",-12.398383140563965],["▁diploma",-12.398388862609863],["nahmen",-12.39842128753662],["▁curl",-12.398625373840332],["▁agricole",-12.39882469177246],["▁recomand",-12.398844718933104],["▁pediatric",-12.398862838745115],["Fiecare",-12.39887523651123],["Anlage",-12.398906707763672],["weiß",-12.398974418640137],["elecommunication",-12.39898681640625],["hog",-12.399184226989746],["▁Stamp",-12.399364471435549],["▁Tipp",-12.399369239807127],["▁kindness",-12.399415969848633],["▁Marina",-12.399577140808104],["▁Gleich",-12.39963436126709],["▁grij",-12.39970588684082],["▁desperate",-12.39974594116211],["▁recordings",-12.399842262268066],["▁neglect",-12.399861335754396],["▁inherent",-12.400035858154297],["▁Rezept",-12.400138854980469],["▁soins",-12.400164604187012],["▁brut",-12.400250434875488],["▁revolutionary",-12.400495529174805],["▁liberté",-12.400530815124512],["cours",-12.400945663452148],["▁Similar",-12.401247024536133],["▁cheveux",-12.40136432647705],["▁ieftin",-12.401599884033203],["▁promovare",-12.40160846710205],["▁grains",-12.401729583740234],["ти",-12.40174961090088],["▁fonctionnement",-12.401789665222168],["▁Coming",-12.401832580566406],["▁analytical",-12.401847839355469],["▁simplify",-12.401856422424316],["▁chambres",-12.401893615722656],["▁fifty",-12.401930809020996],["jour",-12.402070999145508],["▁(17",-12.402194023132324],["cărui",-12.402292251586914],["▁harmony",-12.402352333068848],["grin",-12.402355194091797],["▁drunk",-12.40235996246338],["260",-12.402374267578123],["3-5",-12.40243148803711],["▁articole",-12.402442932128906],["▁flooding",-12.402482986450195],["halle",-12.402580261230469],["▁defects",-12.40276050567627],["▁rifle",-12.402839660644531],["▁Boc",-12.402843475341797],["▁Athletic",-12.40284538269043],["▁acordat",-12.40292739868164],["AIR",-12.402969360351562],["▁entwickeln",-12.403104782104492],["▁Advance",-12.403188705444336],["▁Heil",-12.403216361999512],["Stainless",-12.403345108032228],["▁Psychology",-12.40337085723877],["▁omul",-12.403435707092283],["▁Arbeiten",-12.403494834899902],["▁rabbit",-12.40349578857422],["▁méta",-12.40351390838623],["ismul",-12.403534889221191],["▁Herausforderung",-12.403594970703123],["▁Euch",-12.403654098510742],["geschichte",-12.40390682220459],["▁Milk",-12.404057502746582],["▁pregăt",-12.404065132141112],["▁Standort",-12.404141426086426],["Val",-12.404180526733398],["▁Ronald",-12.40435028076172],["▁Werbe",-12.404558181762695],["▁restrict",-12.404658317565918],["▁tablespoon",-12.404844284057615],["▁Amendment",-12.404845237731934],["▁Johnny",-12.404914855957031],["▁lively",-12.40493869781494],["ORD",-12.405147552490234],["▁mulţi",-12.40523624420166],["èrent",-12.405241012573242],["Every",-12.405277252197266],["eignet",-12.405296325683594],["GD",-12.40546989440918],["▁Ghana",-12.405628204345703],["▁wealthy",-12.40576171875],["▁advocates",-12.405818939208984],["▁Campaign",-12.40584659576416],["▁posters",-12.405964851379396],["flug",-12.406011581420898],["▁métier",-12.406139373779297],["kir",-12.40614891052246],["bond",-12.406176567077637],["datorita",-12.406188011169434],["▁Hochzeit",-12.406230926513672],["▁effectué",-12.406271934509276],["▁angles",-12.40654182434082],["▁Electrical",-12.406705856323242],["▁Administrator",-12.40674114227295],["▁spur",-12.407389640808104],["▁größere",-12.407444953918455],["woke",-12.407515525817873],["▁gewinnen",-12.407689094543455],["▁ajută",-12.407712936401367],["▁ventilation",-12.40785312652588],["▁viaţa",-12.40785312652588],["▁Dinner",-12.408079147338867],["respond",-12.408095359802246],["▁OEM",-12.408120155334473],["▁affair",-12.4081392288208],["▁öffentlich",-12.408143043518066],["ENS",-12.408209800720217],["▁Cent",-12.40822410583496],["▁făc",-12.408267974853516],["▁Doppel",-12.408285140991213],["▁fericit",-12.408363342285156],["▁coordon",-12.40845775604248],["geht",-12.408547401428224],["▁perfekte",-12.408610343933104],["▁sportive",-12.408700942993164],["▁proiectul",-12.40870189666748],["▁deadly",-12.408804893493652],["Geschäft",-12.408822059631348],["▁inspirational",-12.408854484558104],["+1",-12.409013748168944],["▁pearl",-12.409022331237791],["▁scrub",-12.40903663635254],["▁scheint",-12.409079551696776],["poo",-12.409147262573242],["▁Pier",-12.409220695495604],["▁commented",-12.40928554534912],["lute",-12.409302711486816],["▁cancelled",-12.409488677978516],["Win",-12.409605979919434],["▁payroll",-12.409781455993652],["▁varsta",-12.409881591796877],["stuffed",-12.410097122192385],["▁beads",-12.410138130187988],["▁poems",-12.410356521606444],["pokesman",-12.410399436950684],["▁checklist",-12.410523414611816],["▁Mich",-12.410636901855469],["GEN",-12.41067600250244],["▁Lau",-12.410783767700195],["▁stie",-12.410965919494627],["▁Lovely",-12.4110107421875],["▁Anschluss",-12.411062240600586],["▁personaj",-12.41108226776123],["▁ausgestattet",-12.411121368408203],["▁beginners",-12.411163330078123],["▁noon",-12.411189079284668],["▁celule",-12.41128921508789],["Trans",-12.411324501037598],["boot",-12.411331176757812],["▁drumul",-12.41136646270752],["gruppen",-12.41140079498291],["étend",-12.41140365600586],["▁risques",-12.411405563354492],["acclaimed",-12.411447525024414],["▁celelalte",-12.411617279052734],["▁condiţii",-12.411620140075684],["▁skiing",-12.411685943603516],["▁optimale",-12.41168975830078],["technology",-12.411773681640623],["▁renew",-12.411784172058104],["Cloud",-12.41179084777832],["▁damaging",-12.411905288696287],["GT",-12.412219047546388],["▁Reform",-12.41230583190918],["vedem",-12.412349700927734],["▁indicat",-12.412461280822754],["▁Maker",-12.412467002868652],["▁lichid",-12.412582397460938],["3.1",-12.412614822387695],["păt",-12.412620544433594],["lumina",-12.41264820098877],["▁Situ",-12.412806510925291],["▁Archives",-12.412857055664062],["▁allergies",-12.41287899017334],["▁Cameron",-12.412883758544922],["▁Immun",-12.412899017333984],["wissenschaftlich",-12.41301441192627],["▁supplémentaire",-12.413128852844238],["▁puterea",-12.41326141357422],["Lab",-12.413331985473633],["inspired",-12.413384437561035],["▁shrink",-12.413403511047363],["▁voit",-12.413426399230955],["▁chopped",-12.413467407226562],["▁Franz",-12.413537979125977],["oku",-12.413652420043944],["▁suppress",-12.413673400878906],["▁impress",-12.413751602172852],["▁Liga",-12.413755416870115],["▁Eight",-12.41378402709961],["720",-12.413795471191406],["▁securely",-12.413870811462402],["KU",-12.413934707641602],["modell",-12.413992881774902],["Ensure",-12.414154052734377],["größte",-12.414204597473145],["▁réuni",-12.414215087890623],["▁Internal",-12.41423225402832],["▁Punkte",-12.414320945739746],["▁replicate",-12.41441249847412],["▁spreadsheet",-12.414434432983398],["▁Hindu",-12.414549827575684],["▁Cham",-12.414578437805176],["nati",-12.414670944213867],["imply",-12.414679527282717],["funded",-12.414894104003906],["▁charitable",-12.41489601135254],["▁imagined",-12.415014266967772],["hausen",-12.41517448425293],["Keeping",-12.415239334106444],["▁attitudes",-12.415287971496582],["esque",-12.415365219116213],["▁Tennis",-12.415409088134766],["Jeremy",-12.415410041809082],["▁majeur",-12.415475845336914],["▁stii",-12.4155912399292],["▁herbal",-12.415790557861328],["▁cauta",-12.41580867767334],["▁voluntary",-12.415828704833984],["wohl",-12.41587734222412],["▁ideea",-12.41588306427002],["▁WW",-12.415899276733398],["▁erneut",-12.416010856628418],["größten",-12.416094779968262],["Grâce",-12.416159629821776],["▁Köln",-12.416193008422852],["▁mobilier",-12.416199684143066],["▁fool",-12.416254043579102],["▁Calcul",-12.416295051574709],["attaque",-12.41637897491455],["▁digestive",-12.41656494140625],["performance",-12.416647911071776],["▁homeowner",-12.41675853729248],["▁hunger",-12.4169282913208],["2.3",-12.41696834564209],["▁Sort",-12.417085647583008],["▁Dennis",-12.41723918914795],["▁certificat",-12.417250633239746],["▁Canal",-12.41733741760254],["▁Yesterday",-12.417424201965332],["▁sausage",-12.417499542236328],["▁perdu",-12.417736053466797],["ösen",-12.417741775512695],["▁preserved",-12.417750358581545],["▁trendy",-12.4177885055542],["▁iubire",-12.417935371398926],["▁grandfather",-12.417961120605469],["▁shoppers",-12.41820240020752],["▁verschieden",-12.418252944946287],["▁gagner",-12.41826343536377],["▁lucra",-12.418437004089355],["metru",-12.418464660644531],["buz",-12.418469429016112],["▁flourish",-12.418484687805176],["affin",-12.418523788452148],["▁Pflanzen",-12.41858196258545],["agh",-12.418588638305664],["▁Gill",-12.418660163879396],["▁Kä",-12.418671607971191],["▁Wege",-12.41876220703125],["▁Liberal",-12.41892910003662],["▁Glasgow",-12.418944358825684],["Objekt",-12.4189453125],["▁Huawei",-12.4189453125],["appropri",-12.418986320495604],["▁genius",-12.419037818908691],["▁brokers",-12.419068336486816],["▁themed",-12.41918659210205],["▁barre",-12.41921043395996],["1.7",-12.419219017028809],["▁Electro",-12.419303894042969],["▁umbrella",-12.419333457946776],["▁advisory",-12.41941738128662],["▁comport",-12.419421195983888],["▁neuer",-12.419452667236328],["▁Wick",-12.419568061828612],["wak",-12.419618606567385],["▁Woman",-12.419695854187012],["▁lesser",-12.419843673706056],["▁replied",-12.419987678527832],["▁représente",-12.420050621032717],["▁thé",-12.420135498046877],["Deutsch",-12.420428276062012],["Cat",-12.420483589172363],["▁équipes",-12.420534133911133],["▁spider",-12.420578956604004],["▁Gaming",-12.420589447021484],["▁Liste",-12.420592308044434],["▁affection",-12.420639038085938],["lipsa",-12.420982360839844],["▁Spider",-12.420987129211426],["▁Julia",-12.421034812927246],["anlagen",-12.421159744262695],["Kon",-12.421363830566406],["nței",-12.421368598937988],["▁Verwaltung",-12.421483993530272],["▁raspuns",-12.421489715576172],["samt",-12.421491622924805],["▁creștere",-12.421512603759766],["▁decorate",-12.421701431274414],["▁Chain",-12.422021865844728],["ów",-12.42205047607422],["0-0",-12.422104835510254],["▁Cran",-12.422407150268556],["▁streak",-12.42242431640625],["ор",-12.422517776489258],["▁căuta",-12.422754287719728],["wende",-12.422801971435549],["▁haine",-12.42280387878418],["▁landscaping",-12.423009872436523],["▁historian",-12.423016548156738],["▁grandchildren",-12.423033714294434],["▁crawl",-12.423056602478027],["▁Cub",-12.423239707946776],["▁nécessaires",-12.42351531982422],["▁swift",-12.42352294921875],["▁calculation",-12.423656463623049],["▁acteurs",-12.423715591430664],["VT",-12.423752784729004],["▁Hristos",-12.423778533935549],["▁slices",-12.423850059509276],["See",-12.424203872680664],["▁Bran",-12.424233436584473],["Symbol",-12.424449920654297],["▁allowance",-12.424492835998535],["▁Effective",-12.424537658691406],["▁Wünsche",-12.42453956604004],["▁shiny",-12.424569129943848],["▁professionalism",-12.424715995788574],["/6",-12.424970626831056],["▁terrasse",-12.425087928771973],["▁researcher",-12.425156593322754],["▁fragile",-12.425203323364258],["▁greeting",-12.425274848937988],["freien",-12.4253511428833],["▁valuation",-12.425372123718262],["▁incur",-12.425386428833008],["▁Zwischen",-12.425559997558594],["▁comfy",-12.425569534301758],["▁méthode",-12.42569351196289],["▁Pirate",-12.425816535949709],["▁Moto",-12.425822257995604],["(6)",-12.425823211669922],["▁devin",-12.42582893371582],["▁civic",-12.425837516784668],["usage",-12.425889015197754],["▁istorie",-12.425945281982422],["▁piste",-12.425955772399902],["▁Rug",-12.426091194152832],["pä",-12.426129341125488],["▁matur",-12.426148414611816],["CAS",-12.426155090332031],["TIC",-12.42618465423584],["▁Reduce",-12.426234245300291],["▁commemorat",-12.426321983337402],["▁cease",-12.42653751373291],["unterschiedliche",-12.42656421661377],["▁cinnamon",-12.426581382751465],["▁Font",-12.426583290100098],["▁justify",-12.426751136779783],["deteriorat",-12.426797866821287],["▁Schön",-12.42684555053711],["plain",-12.426993370056152],["frist",-12.427002906799316],["▁helmet",-12.42712116241455],["▁statute",-12.42721939086914],["accept",-12.427236557006836],["▁1,5",-12.42724323272705],["▁recon",-12.42724323272705],["▁Möbel",-12.427348136901855],["▁idées",-12.427367210388184],["automat",-12.427552223205566],["Team",-12.42758846282959],["▁performers",-12.427688598632812],["▁microphone",-12.427722930908203],["impotriva",-12.427775382995604],["▁pillows",-12.42780876159668],["▁accountable",-12.427812576293944],["▁strings",-12.42782974243164],["hydrate",-12.42783546447754],["▁Yan",-12.427865028381348],["starea",-12.427918434143066],["▁présenté",-12.42793083190918],["▁extensively",-12.428048133850098],["äst",-12.428114891052246],["▁correlation",-12.428115844726562],["bespoke",-12.428119659423828],["▁creste",-12.428196907043455],["▁Armenia",-12.428248405456545],["nose",-12.428426742553713],["▁strengthening",-12.428604125976562],["▁Horizon",-12.428627014160156],["▁obesity",-12.428627967834473],["seasoned",-12.428686141967772],["▁screenshot",-12.428736686706545],["girl",-12.42875862121582],["▁hardest",-12.428826332092283],["▁weakness",-12.428855895996094],["effectuer",-12.429012298583984],["▁Florence",-12.429034233093262],["▁Europene",-12.429062843322754],["triggered",-12.429333686828612],["Apparently",-12.42939567565918],["▁diagnose",-12.42943286895752],["rushed",-12.429494857788086],["▁trotz",-12.429516792297363],["▁spécial",-12.429680824279783],["▁lumi",-12.429783821105955],["7:00",-12.429877281188965],["▁publicat",-12.429903984069824],["ос",-12.430086135864258],["▁hue",-12.430136680603027],["▁termination",-12.430139541625977],["▁Nam",-12.430240631103516],["Well",-12.430376052856444],["▁Extract",-12.430441856384276],["atiile",-12.43062686920166],["▁vivid",-12.43076229095459],["hrs",-12.430858612060549],["▁povesti",-12.430984497070312],["stehenden",-12.430988311767578],["▁informieren",-12.431070327758787],["employed",-12.431133270263672],["▁armor",-12.431180953979492],["▁Columbus",-12.431191444396973],["Registr",-12.431200981140137],["▁Kamera",-12.431203842163086],["▁ugly",-12.431203842163086],["outil",-12.431234359741213],["▁evenly",-12.43134593963623],["lungul",-12.431349754333496],["koch",-12.431439399719238],["▁Dig",-12.431450843811035],["purely",-12.431489944458008],["▁Surf",-12.431560516357422],["rilla",-12.431628227233888],["▁Watson",-12.43171215057373],["trug",-12.431719779968262],["figuring",-12.431784629821776],["▁competitor",-12.431807518005373],["▁humid",-12.431889533996582],["▁Lawyer",-12.43189811706543],["Added",-12.43205451965332],["▁salva",-12.432056427001951],["▁drainage",-12.4321870803833],["Featuring",-12.432220458984377],["▁Pel",-12.43234634399414],["▁acasa",-12.432611465454102],["▁expectation",-12.43265438079834],["gibt",-12.432663917541504],["▁marginal",-12.432831764221191],["ceni",-12.433028221130373],["▁européen",-12.433065414428713],["clav",-12.433090209960938],["▁Shot",-12.433167457580566],["commun",-12.43322467803955],["▁Calendar",-12.433247566223145],["▁trek",-12.433348655700684],["rechtliche",-12.433406829833984],["▁Perry",-12.43342399597168],["▁surge",-12.433484077453612],["geschäft",-12.433504104614258],["paced",-12.433793067932127],["depend",-12.433871269226074],["▁Sache",-12.433947563171388],["▁Example",-12.433998107910156],["▁lider",-12.434118270874023],["▁nochmal",-12.434240341186523],["▁Present",-12.434243202209473],["KW",-12.434335708618164],["prompted",-12.434350967407228],["logique",-12.434444427490234],["Université",-12.434466361999512],["lith",-12.434489250183104],["▁Gefahr",-12.434579849243164],["▁Acid",-12.434625625610352],["objets",-12.434791564941406],["▁societies",-12.434791564941406],["▁distraction",-12.434816360473633],["▁puissance",-12.434934616088867],["▁alleviat",-12.435026168823242],["▁Capitol",-12.435050010681152],["▁Heim",-12.435129165649414],["judicial",-12.435230255126951],["▁nowadays",-12.435309410095217],["▁Hammer",-12.435317039489746],["▁metallic",-12.435327529907228],["▁distr",-12.435388565063477],["▁dispos",-12.435397148132324],["profile",-12.43540859222412],["▁Nicolas",-12.435602188110352],["▁presa",-12.435760498046877],["augh",-12.43578052520752],["schuss",-12.435787200927734],["▁Diana",-12.436062812805176],["4-5",-12.436097145080566],["▁Chapel",-12.43612003326416],["▁zahar",-12.436150550842283],["âmb",-12.4362154006958],["▁Tarif",-12.436264991760254],["▁devastating",-12.436339378356934],["6:00",-12.4364013671875],["▁100,000",-12.43645191192627],["NIC",-12.436580657958984],["▁Lucas",-12.436612129211426],["▁bequem",-12.436662673950195],["▁Motion",-12.43669891357422],["7,000",-12.436701774597168],["▁malware",-12.436708450317385],["▁avenue",-12.436723709106444],["▁manger",-12.436747550964355],["▁Queensland",-12.436857223510742],["▁Papier",-12.436861991882324],["▁Increase",-12.436880111694336],["▁implies",-12.436954498291016],["▁äußer",-12.43697452545166],["▁Meine",-12.43698024749756],["Reuters",-12.437155723571776],["▁Belt",-12.437232971191406],["Educat",-12.437251091003418],["▁Aktion",-12.437355041503906],["schläge",-12.437372207641602],["▁înregistrat",-12.437426567077637],["▁Ortho",-12.43756103515625],["▁bulbs",-12.437761306762695],["kap",-12.437793731689451],["▁peinture",-12.437901496887209],["▁Lounge",-12.437907218933104],["▁Tampa",-12.438008308410645],["ifiziert",-12.438100814819336],["kinder",-12.438172340393066],["▁comparativ",-12.438281059265137],["häuser",-12.438323974609377],["incarn",-12.438363075256348],["▁amazon",-12.438464164733888],["▁Southeast",-12.438505172729492],["▁economical",-12.43866729736328],["▁broth",-12.438697814941406],["▁Secure",-12.438750267028809],["damals",-12.438875198364258],["▁Elementary",-12.438921928405762],["▁Wildlife",-12.438995361328123],["▁Jewel",-12.439001083374023],["▁protocols",-12.439297676086426],["▁zbor",-12.4393892288208],["▁enthusiasts",-12.439398765563965],["▁Mirror",-12.439444541931152],["▁soak",-12.439537048339844],["▁Sad",-12.439574241638184],["▁dishwasher",-12.43995761871338],["▁vollständig",-12.440186500549316],["▁Vermont",-12.440407752990724],["▁caut",-12.440449714660645],["▁fournisseur",-12.440475463867188],["▁Concrete",-12.44047737121582],["▁Instant",-12.440595626831056],["▁reveni",-12.440597534179688],["▁Surface",-12.44059944152832],["zumindest",-12.440713882446287],["▁feast",-12.440725326538086],["▁stretching",-12.440803527832031],["ERA",-12.440997123718262],["▁Scholarship",-12.441020965576172],["▁vineyard",-12.4410400390625],["▁régulièrement",-12.441083908081056],["▁patches",-12.44109344482422],["▁Gamb",-12.44113540649414],["▁Vereins",-12.441152572631836],["ège",-12.441372871398926],["▁constitutional",-12.441411018371582],["erreur",-12.441413879394531],["▁Colombia",-12.441514015197754],["UF",-12.44161891937256],["aider",-12.441665649414062],["cision",-12.44180965423584],["▁publishers",-12.441913604736328],["▁prelua",-12.441967964172363],["▁keiner",-12.441990852355955],["▁amid",-12.442020416259766],["▁quantitative",-12.442031860351562],["▁decay",-12.442058563232422],["▁distinguished",-12.4420747756958],["▁Gründe",-12.442209243774414],["▁statului",-12.442362785339355],["CAT",-12.44243621826172],["allow",-12.442481994628906],["▁mathematical",-12.442550659179688],["▁tragedy",-12.44255542755127],["▁heels",-12.442609786987305],["opia",-12.44265365600586],["▁merger",-12.4428071975708],["dispositif",-12.442813873291016],["▁pneu",-12.44283390045166],["elte",-12.443058013916016],["▁Introduction",-12.443070411682127],["▁biscuit",-12.443134307861328],["▁leftover",-12.443275451660156],["▁tester",-12.443314552307127],["▁Terre",-12.44338035583496],["▁Oui",-12.44338321685791],["▁rar",-12.443520545959473],["▁beverages",-12.443666458129885],["▁parenting",-12.443892478942873],["1-0",-12.444053649902344],["▁Barry",-12.44417667388916],["▁Lynn",-12.444209098815918],["▁Tyler",-12.444262504577637],["▁fotbal",-12.44437026977539],["dron",-12.444475173950195],["▁donor",-12.44455623626709],["▁drape",-12.444558143615724],["▁positioning",-12.444963455200195],["▁Tang",-12.445006370544434],["▁overwhelmed",-12.445161819458008],["▁perte",-12.445192337036133],["▁blender",-12.445302963256836],["TG",-12.445467948913574],["GHz",-12.445490837097168],["▁administrat",-12.445719718933104],["▁glaube",-12.445771217346191],["Char",-12.445947647094728],["impression",-12.44627571105957],["proving",-12.446297645568848],["▁Inner",-12.446434020996094],["root",-12.44650173187256],["▁Gedanken",-12.446508407592772],["▁underway",-12.446596145629885],["coat",-12.44660758972168],["▁thereof",-12.446663856506348],["rius",-12.446700096130373],["▁intermediate",-12.446751594543455],["gmail",-12.446869850158691],["114",-12.446893692016602],["▁interfere",-12.446908950805664],["▁Found",-12.44693088531494],["LF",-12.447071075439451],["▁equality",-12.447099685668944],["▁concurrent",-12.44710636138916],["akh",-12.447107315063477],["▁touching",-12.44715690612793],["▁curiosity",-12.447235107421877],["▁rendering",-12.447263717651367],["▁1964",-12.447442054748535],["sorge",-12.447468757629396],["ARC",-12.447505950927734],["▁Desktop",-12.44752311706543],["▁Tak",-12.44760799407959],["filtration",-12.447651863098145],["▁gates",-12.4478759765625],["Sehr",-12.44791316986084],["▁spatiu",-12.44798755645752],["▁Leg",-12.44810390472412],["▁aviation",-12.448277473449709],["wandel",-12.44827938079834],["▁Shar",-12.448323249816896],["▁Volks",-12.448409080505373],["maz",-12.44869899749756],["governmental",-12.44874095916748],["euros",-12.448819160461426],["avantage",-12.448823928833008],["sitzt",-12.448856353759766],["IER",-12.448920249938965],["▁Theory",-12.44894027709961],["Cependant",-12.44907283782959],["▁Teachers",-12.44908046722412],["anspruch",-12.449095726013184],["▁afecta",-12.449139595031738],["enko",-12.449193000793455],["▁breeding",-12.449198722839355],["▁Peak",-12.449457168579102],["▁găsit",-12.44951629638672],["▁măsuri",-12.4495267868042],["edia",-12.449625968933104],["biz",-12.449640274047852],["zum",-12.449776649475098],["▁schwierig",-12.449847221374512],["Sense",-12.450050354003906],["▁Jump",-12.450081825256348],["▁cocktails",-12.450108528137209],["abhängig",-12.45012378692627],["realised",-12.450140953063965],["▁programul",-12.450214385986328],["▁prévu",-12.450238227844238],["▁twitter",-12.450372695922852],["Union",-12.450400352478027],["▁Marathon",-12.45040225982666],["▁Christianity",-12.450432777404783],["▁Alberta",-12.450811386108398],["einheit",-12.45097827911377],["▁wellbeing",-12.450982093811035],["phen",-12.451166152954102],["▁Charleston",-12.451180458068848],["▁uncover",-12.451323509216309],["▁humaine",-12.451464653015137],["▁bleeding",-12.451531410217283],["▁manipul",-12.451532363891602],["▁humidity",-12.451570510864258],["▁Puis",-12.451748847961426],["▁aktuell",-12.451922416687012],["▁Nissan",-12.451943397521973],["▁Eisen",-12.45202922821045],["treiben",-12.452059745788574],["cios",-12.452073097229004],["ikh",-12.452381134033203],["acquiring",-12.452466011047363],["▁Wallpaper",-12.452488899230955],["▁rond",-12.452558517456056],["▁Doug",-12.45267391204834],["sourcing",-12.452696800231934],["▁1900",-12.452825546264648],["▁buni",-12.452913284301758],["vest",-12.452916145324709],["▁Bangladesh",-12.452990531921388],["Home",-12.453160285949709],["▁wrinkle",-12.453252792358398],["rado",-12.453290939331056],["▁Pain",-12.45334243774414],["▁herzlich",-12.453354835510254],["MRI",-12.453426361083984],["UG",-12.453631401062012],["▁Desk",-12.453679084777832],["▁remarc",-12.453718185424805],["▁sodium",-12.453857421875],["▁Jede",-12.453892707824709],["▁réelle",-12.453959465026855],["▁Polar",-12.454068183898926],["▁activists",-12.454273223876951],["lasted",-12.454300880432127],["Some",-12.45432186126709],["ISE",-12.454338073730469],["▁peine",-12.454671859741213],["▁crude",-12.454852104187012],["Maur",-12.454916954040527],["▁forcing",-12.454933166503906],["▁politici",-12.454970359802246],["▁condiții",-12.454988479614258],["▁Saving",-12.454999923706056],["▁descoperi",-12.455020904541016],["avenir",-12.455055236816406],["Akt",-12.455069541931152],["▁vocabulary",-12.45509147644043],["▁pont",-12.45516872406006],["West",-12.45518970489502],["lenk",-12.455278396606444],["▁Verbraucher",-12.455367088317873],["affects",-12.455448150634766],["▁Flower",-12.455543518066406],["▁Nebraska",-12.455617904663086],["▁assortment",-12.455618858337402],["hock",-12.45561981201172],["▁discounted",-12.455803871154783],["▁Sensor",-12.455840110778809],["Lie",-12.45588207244873],["▁Volkswagen",-12.455887794494627],["isseur",-12.455888748168944],["indice",-12.455936431884766],["▁scanner",-12.45598602294922],["fashioned",-12.456040382385254],["▁postal",-12.456141471862791],["ouvrir",-12.45615291595459],["▁seminars",-12.45622444152832],["ioase",-12.456232070922852],["▁Stanley",-12.456260681152344],["Various",-12.456335067749023],["essentiel",-12.45650577545166],["▁administered",-12.456693649291992],["▁concession",-12.456748008728027],["▁mould",-12.456789016723633],["▁strongest",-12.456826210021973],["Erlebnis",-12.456933975219728],["▁ehemalige",-12.456933975219728],["▁Tale",-12.457234382629396],["▁Buyer",-12.457353591918944],["ück",-12.457578659057615],["▁Kommentar",-12.457720756530762],["▁Schrift",-12.457756996154783],["Design",-12.457792282104492],["▁stirring",-12.457937240600586],["▁towels",-12.457987785339355],["▁$30",-12.458101272583008],["sprache",-12.458279609680176],["▁Regierung",-12.458346366882324],["▁nachhaltig",-12.458406448364258],["▁électronique",-12.458515167236328],["▁Andrei",-12.458587646484377],["because",-12.458647727966309],["informatique",-12.458650588989258],["IGHT",-12.4586820602417],["stepping",-12.4586820602417],["▁gris",-12.458748817443848],["vious",-12.458773612976074],["▁upside",-12.4591064453125],["▁Examples",-12.459108352661133],["IU",-12.459110260009766],["▁princess",-12.459111213684082],["spielen",-12.45921516418457],["legung",-12.45950984954834],["▁reflecting",-12.4597806930542],["▁Processing",-12.459939002990724],["▁jungle",-12.460033416748049],["▁insects",-12.46006965637207],["▁Sibiu",-12.460220336914062],["160",-12.460259437561035],["▁interessante",-12.460267066955566],["▁multimedia",-12.460455894470217],["essel",-12.46049690246582],["/18",-12.460647583007812],["nière",-12.460683822631836],["ministru",-12.46072006225586],["▁implants",-12.460826873779297],["▁Settings",-12.461360931396484],["▁invaluable",-12.461432456970217],["stains",-12.461448669433594],["onym",-12.461518287658691],["▁searched",-12.461570739746094],["▁disappointment",-12.461628913879396],["▁Iranian",-12.461630821228027],["▁questionnaire",-12.461630821228027],["Founder",-12.46178913116455],["▁Bericht",-12.461792945861816],["▁youngest",-12.461896896362305],["▁Automatic",-12.461956024169922],["▁plecat",-12.46203327178955],["geber",-12.462119102478027],["soweit",-12.462124824523926],["▁unfold",-12.462236404418944],["▁befinden",-12.462274551391602],["▁susţin",-12.462637901306152],["▁Mack",-12.462675094604492],["▁dificil",-12.462757110595703],["enseigne",-12.463038444519045],["▁vitamine",-12.463047981262209],["▁Memory",-12.463092803955078],["ripping",-12.463129043579102],["drin",-12.463146209716797],["3.2",-12.463278770446776],["▁verstehen",-12.463287353515623],["▁scaun",-12.46341323852539],["▁procédure",-12.46380615234375],["▁molecules",-12.463911056518556],["▁Anzahl",-12.46391487121582],["▁yogurt",-12.464071273803713],["▁Dominic",-12.464113235473633],["▁shocked",-12.464156150817873],["▁zilei",-12.464269638061523],["▁Heiz",-12.464412689208984],["▁Educational",-12.464571952819824],["BN",-12.464577674865724],["analyzing",-12.464601516723633],["hair",-12.464676856994627],["spiegel",-12.464871406555176],["▁illusion",-12.464889526367188],["BG",-12.46505355834961],["deductible",-12.46513557434082],["▁adj",-12.4651460647583],["▁accessory",-12.465166091918944],["▁Draw",-12.465167999267578],["▁airlines",-12.46518611907959],["▁satisfai",-12.46536636352539],["▁architects",-12.465447425842283],["istische",-12.465508460998535],["▁Healthy",-12.465539932250977],["großer",-12.465669631958008],["▁comunicare",-12.465764999389648],["▁Meyer",-12.46577262878418],["▁reproduction",-12.465882301330566],["▁Manufacturing",-12.465929985046388],["immobilier",-12.465930938720703],["▁Unterschied",-12.46595859527588],["▁cumpara",-12.466029167175291],["▁duplicate",-12.466094017028809],["▁(16",-12.466096878051758],["▁detector",-12.466279983520508],["▁observat",-12.466387748718262],["▁1965",-12.466682434082031],["▁Fantasy",-12.46672821044922],["▁brauchen",-12.46672821044922],["▁Participants",-12.46678066253662],["▁décide",-12.46681785583496],["▁kicke",-12.466819763183594],["▁SSL",-12.466885566711426],["360",-12.466989517211914],["Anim",-12.467019081115724],["▁cupcake",-12.467031478881836],["▁Lamb",-12.467107772827148],["▁Sä",-12.467155456542969],["ntă",-12.46738052368164],["▁Pig",-12.467421531677246],["1,000",-12.467677116394045],["nhof",-12.467782020568848],["▁discret",-12.467947959899902],["▁deloc",-12.467991828918455],["▁Bücher",-12.467999458312988],["chor",-12.468042373657228],["course",-12.468070030212402],["▁cough",-12.468076705932615],["▁erstellt",-12.468087196350098],["▁Than",-12.468097686767578],["stätte",-12.46812915802002],["▁exceptionally",-12.468162536621094],["▁semnal",-12.468186378479004],["▁Interessen",-12.468329429626465],["ле",-12.468356132507324],["xx",-12.468402862548828],["▁Veterans",-12.468422889709473],["▁Kreuz",-12.468683242797852],["▁Nachricht",-12.468701362609863],["treated",-12.468894004821776],["▁tide",-12.469230651855469],["▁nonetheless",-12.469390869140623],["▁Subject",-12.469439506530762],["▁Stau",-12.469440460205078],["▁stickers",-12.469463348388672],["Alp",-12.46950912475586],["▁flagship",-12.469541549682615],["▁trimite",-12.469619750976562],["▁polyester",-12.469664573669434],["▁locui",-12.469671249389648],["▁chili",-12.46968936920166],["▁Browser",-12.469808578491213],["sieg",-12.469809532165527],["▁Arabic",-12.469876289367676],["blich",-12.47001838684082],["▁wunderbar",-12.470090866088867],["▁furnishings",-12.470210075378418],["rtie",-12.470243453979492],["8.5",-12.470742225646973],["▁Sponsor",-12.471016883850098],["▁glitter",-12.471280097961426],["▁piaț",-12.471402168273926],["▁interviewed",-12.471519470214844],["▁Statistics",-12.471529006958008],["▁cerc",-12.47154712677002],["augmentation",-12.47155475616455],["▁Navi",-12.471558570861816],["▁Begriff",-12.47156047821045],["▁știu",-12.471596717834473],["▁unabhängig",-12.471778869628906],["▁könnten",-12.471978187561035],["▁travaille",-12.472000122070312],["▁companie",-12.472027778625488],["▁Scientific",-12.472061157226562],["▁Outlook",-12.472091674804688],["▁fairy",-12.472158432006836],["zam",-12.472282409667969],["bak",-12.472448348999023],["▁Traffic",-12.472596168518066],["gerät",-12.472671508789062],["▁freezing",-12.472701072692873],["▁broadband",-12.4727201461792],["110",-12.47279167175293],["▁revenu",-12.472887992858888],["listed",-12.472900390625],["▁Rico",-12.472941398620604],["Laure",-12.472990036010742],["ATA",-12.473112106323242],["▁participer",-12.47313117980957],["▁sponsorship",-12.47323513031006],["▁distress",-12.473286628723145],["▁Brisbane",-12.47339916229248],["schönen",-12.473437309265137],["▁fizice",-12.473465919494627],["▁Political",-12.47362232208252],["uhr",-12.473657608032228],["▁procedura",-12.473713874816896],["▁hervor",-12.473770141601562],["melted",-12.473776817321776],["▁Emp",-12.47384262084961],["▁Ernährung",-12.4739351272583],["▁Pendant",-12.473944664001465],["▁recipients",-12.474047660827637],["Claude",-12.474133491516112],["▁regimen",-12.47415828704834],["expo",-12.474346160888672],["adevăr",-12.47437858581543],["▁critically",-12.474440574645996],["▁grabbe",-12.474468231201172],["▁Kann",-12.474474906921388],["▁directeur",-12.474613189697266],["gator",-12.474908828735352],["problem",-12.474910736083984],["scribe",-12.474913597106934],["▁exig",-12.474920272827148],["Tri",-12.474969863891602],["▁aqua",-12.475631713867188],["appréci",-12.47569465637207],["▁viaţă",-12.47571849822998],["▁dominate",-12.475865364074709],["disc",-12.475889205932615],["▁conseiller",-12.47603988647461],["▁shuttle",-12.47618007659912],["▁Status",-12.47623062133789],["▁ausreichend",-12.47637176513672],["▁spät",-12.476411819458008],["▁remainder",-12.476417541503906],["wett",-12.476430892944336],["schlossen",-12.476491928100586],["PAC",-12.476505279541016],["▁suprafata",-12.476617813110352],["5.000",-12.476673126220703],["supplying",-12.47673225402832],["▁uniquely",-12.476905822753906],["▁retard",-12.476929664611816],["▁Bang",-12.477006912231444],["ieuse",-12.477087020874023],["▁Ted",-12.477248191833496],["▁ermöglichen",-12.47732925415039],["▁builders",-12.477380752563477],["▁proximité",-12.477423667907717],["▁unforgettable",-12.477423667907717],["256",-12.477446556091309],["fähigkeit",-12.477550506591797],["▁procurement",-12.477561950683594],["▁Gewicht",-12.477693557739258],["▁potentiel",-12.47778606414795],["▁topping",-12.478300094604492],["▁canada",-12.478304862976074],["▁Destin",-12.478355407714844],["▁Knowing",-12.478411674499512],["▁retained",-12.478426933288574],["▁zinc",-12.478470802307127],["▁worrying",-12.478655815124512],["faţa",-12.478676795959473],["▁initi",-12.478837966918944],["ORI",-12.4788818359375],["▁refuz",-12.478921890258787],["bruch",-12.479202270507812],["▁impun",-12.479233741760254],["▁persoană",-12.479308128356934],["EAR",-12.479347229003906],["bedarf",-12.479368209838867],["▁Gebiet",-12.47940731048584],["▁Roof",-12.479436874389648],["▁negligence",-12.47957706451416],["security",-12.479618072509766],["▁accesorii",-12.479641914367676],["▁unclear",-12.47966766357422],["▁securitate",-12.479848861694336],["▁spotlight",-12.479896545410156],["▁speziell",-12.479923248291016],["▁mentally",-12.479942321777344],["▁preservation",-12.48011589050293],["▁Promotion",-12.480156898498535],["partnered",-12.480274200439451],["▁Hinter",-12.48031997680664],["▁punishment",-12.480359077453612],["▁grease",-12.480713844299316],["▁NW",-12.480714797973633],["▁curse",-12.480897903442385],["ckle",-12.48101806640625],["▁Hire",-12.481043815612791],["▁Whole",-12.481088638305664],["▁basse",-12.481289863586426],["▁DNS",-12.481427192687988],["flamm",-12.481560707092283],["▁scoop",-12.481574058532717],["Norm",-12.481663703918455],["▁Surgery",-12.481735229492188],["▁widget",-12.481741905212402],["connected",-12.481863021850586],["autorité",-12.481961250305176],["▁utilis",-12.482096672058104],["▁formă",-12.482185363769531],["▁clearing",-12.482307434082031],["▁jumătate",-12.482815742492676],["größe",-12.482831954956056],["▁Tief",-12.482852935791016],["épi",-12.482939720153809],["zunehmen",-12.483174324035645],["▁touchdown",-12.48318099975586],["▁scholarships",-12.483236312866213],["▁dementia",-12.483319282531738],["▁Jeder",-12.48333740234375],["▁nightmare",-12.483379364013672],["▁Raw",-12.48342514038086],["absorbed",-12.483468055725098],["lohnt",-12.483484268188477],["quent",-12.483580589294434],["interest",-12.48362636566162],["OSS",-12.483649253845217],["▁Leaf",-12.483667373657228],["▁timeless",-12.48381519317627],["DY",-12.48386573791504],["▁Remote",-12.48390769958496],["chner",-12.483938217163086],["▁Pam",-12.484014511108398],["urban",-12.484060287475586],["во",-12.484146118164062],["▁Kunde",-12.484166145324709],["▁Laptop",-12.484169006347656],["finder",-12.484336853027344],["▁Pole",-12.484567642211914],["2.8",-12.484588623046877],["finished",-12.484670639038086],["▁prophet",-12.484697341918944],["mailed",-12.484758377075195],["2-0",-12.4849214553833],["▁disciples",-12.484949111938477],["▁intriguing",-12.484980583190918],["IRA",-12.485033988952637],["petit",-12.485077857971191],["▁Membership",-12.485097885131836],["▁provincial",-12.485177040100098],["▁Prüfung",-12.485292434692385],["-50",-12.485450744628906],["▁cryptocurrency",-12.485522270202637],["▁journalism",-12.485536575317385],["▁Downtown",-12.485593795776367],["inserted",-12.485655784606934],["▁Direction",-12.485718727111816],["lipid",-12.485732078552246],["▁Sebastian",-12.485793113708496],["fordert",-12.48591136932373],["Originally",-12.485989570617676],["tipp",-12.486048698425291],["verantwortlich",-12.486064910888672],["▁wheelchair",-12.486085891723633],["▁structura",-12.48609733581543],["▁Danny",-12.486138343811035],["999",-12.486284255981444],["▁Schiff",-12.486380577087402],["formally",-12.486408233642578],["focused",-12.486428260803224],["▁Vater",-12.486478805541992],["▁Dear",-12.486599922180176],["▁reinforce",-12.486794471740724],["proprietar",-12.48690414428711],["▁Kyle",-12.487004280090332],["În",-12.487015724182127],["▁servir",-12.487268447875977],["length",-12.48730754852295],["▁showroom",-12.48735237121582],["reli",-12.487473487854004],["▁Brü",-12.487529754638672],["▁Schle",-12.487634658813477],["▁profond",-12.487773895263672],["▁Superior",-12.487826347351074],["▁lifted",-12.487844467163086],["highlighting",-12.487850189208984],["▁Connection",-12.48793888092041],["▁similarly",-12.487998962402344],["▁diferit",-12.48800563812256],["▁sweater",-12.488014221191406],["État",-12.48803997039795],["rooted",-12.488069534301758],["▁sleeves",-12.488236427307127],["де",-12.488264083862305],["▁Laboratory",-12.488265991210938],["ündig",-12.488719940185549],["▁Viking",-12.488741874694824],["▁Origin",-12.48878002166748],["▁vibr",-12.488812446594238],["199",-12.488974571228027],["▁yummy",-12.489001274108888],["STAR",-12.489140510559082],["▁repro",-12.489152908325195],["▁Kirchen",-12.489229202270508],["hopper",-12.48925495147705],["zza",-12.489335060119627],["▁vitesse",-12.48934555053711],["▁minimalist",-12.489412307739258],["▁Election",-12.489420890808104],["draw",-12.489501953125],["▁candles",-12.48959732055664],["▁Mund",-12.489615440368652],["urged",-12.489901542663574],["▁cânt",-12.489917755126951],["Ultimately",-12.49002742767334],["▁Lift",-12.490124702453612],["loaded",-12.490334510803224],["demand",-12.490508079528809],["▁aleg",-12.49062156677246],["▁Discovery",-12.490755081176758],["▁Vienna",-12.490960121154783],["▁Kategorie",-12.490961074829102],["▁Cotton",-12.490962028503418],["▁$200",-12.491043090820312],["▁Drei",-12.491052627563477],["▁reicht",-12.491168975830078],["speicher",-12.49123191833496],["▁Immobilien",-12.491483688354492],["gefühl",-12.491509437561035],["make",-12.491525650024414],["pell",-12.49155044555664],["▁dull",-12.49159812927246],["▁arbeitet",-12.491681098937988],["retaining",-12.491700172424316],["losen",-12.491707801818848],["match",-12.491876602172852],["-60",-12.491880416870115],["▁ecological",-12.492000579833984],["▁vend",-12.492051124572754],["▁grammar",-12.492061614990234],["▁1:1",-12.492225646972656],["grilled",-12.492279052734377],["geordnet",-12.492321014404297],["▁Pav",-12.49236011505127],["▁Depot",-12.492368698120115],["▁Walking",-12.492372512817385],["teamed",-12.492402076721191],["▁torque",-12.49253749847412],["▁Venture",-12.49265956878662],["▁beginner",-12.49269962310791],["▁Monaten",-12.492712020874023],["▁Pune",-12.493054389953612],["connect",-12.493075370788574],["▁textbook",-12.49313259124756],["▁unprecedented",-12.49314022064209],["▁implied",-12.493168830871582],["▁cubic",-12.49366855621338],["enthält",-12.493696212768556],["▁Brenn",-12.49388313293457],["▁Expect",-12.49394416809082],["▁lever",-12.4939603805542],["veux",-12.49399185180664],["▁Claire",-12.494112968444824],["Acc",-12.49432373046875],["▁Typ",-12.494478225708008],["▁smoothie",-12.494501113891602],["▁Idaho",-12.494780540466309],["▁spati",-12.494802474975586],["▁bénéficier",-12.49488353729248],["▁Kle",-12.495161056518556],["▁serviciilor",-12.495169639587402],["▁prohibit",-12.495267868041992],["EAD",-12.495417594909668],["▁Turner",-12.495418548583984],["▁elibera",-12.49543571472168],["▁payday",-12.495464324951172],["▁prolong",-12.495466232299805],["▁sued",-12.495481491088867],["▁Devil",-12.49553680419922],["▁Skills",-12.49555206298828],["▁Marcel",-12.495553970336914],["▁silhouette",-12.495601654052734],["▁preț",-12.495742797851562],["▁Gö",-12.495747566223145],["▁Creator",-12.495774269104004],["fed",-12.4959077835083],["Cap",-12.495997428894045],["▁dedicate",-12.496042251586914],["0000",-12.496124267578123],["▁VAT",-12.496259689331056],["▁Firefox",-12.49644374847412],["▁therapies",-12.496477127075195],["▁screws",-12.496662139892578],["▁Province",-12.496697425842283],["▁problematic",-12.496871948242188],["▁Vid",-12.496915817260742],["▁Lost",-12.496950149536133],["▁elegance",-12.497520446777344],["▁Elegant",-12.497525215148926],["ignant",-12.497573852539062],["▁darin",-12.49764919281006],["▁anonym",-12.497669219970703],["▁vegeta",-12.49767780303955],["incoming",-12.497762680053713],["▁pills",-12.497846603393556],["governing",-12.49789333343506],["▁Haven",-12.497920989990234],["paper",-12.497947692871094],["räume",-12.497979164123535],["paw",-12.498099327087402],["▁spelling",-12.498283386230469],["ambele",-12.498318672180176],["▁reprezentat",-12.498371124267578],["▁mâ",-12.49853515625],["wirtschaftliche",-12.498558044433594],["▁valabil",-12.498579025268556],["▁konkret",-12.498618125915527],["▁financier",-12.498619079589844],["▁irre",-12.499135971069336],["▁Silicon",-12.499171257019045],["Viv",-12.499181747436523],["▁viruses",-12.49927043914795],["▁CNN",-12.499324798583984],["▁erleben",-12.499482154846191],["gina",-12.499492645263672],["punctul",-12.49951457977295],["▁Sfânt",-12.499753952026367],["▁Manage",-12.499811172485352],["▁payable",-12.499984741210938],["▁practitioner",-12.50014305114746],["▁conférence",-12.50026798248291],["▁drought",-12.50027084350586],["▁devote",-12.500361442565918],["wertung",-12.500420570373535],["stabil",-12.5004301071167],["▁balcon",-12.500553131103516],["▁Lebensmittel",-12.500603675842283],["COL",-12.500950813293455],["▁Domnul",-12.501093864440918],["carved",-12.501359939575195],["▁preparat",-12.5014009475708],["101",-12.501537322998049],["▁specimen",-12.501580238342283],["urgeon",-12.501596450805664],["LIC",-12.50163459777832],["Plattform",-12.501643180847168],["▁ramas",-12.501739501953123],["▁copilului",-12.501791954040527],["bacter",-12.501812934875488],["körper",-12.501940727233888],["▁Kru",-12.501981735229492],["▁Employ",-12.502055168151855],["office",-12.502080917358398],["▁simmer",-12.502120018005373],["qualität",-12.502137184143066],["▁freshly",-12.502215385437012],["▁Nine",-12.50223159790039],["▁tonnes",-12.50223445892334],["boden",-12.502236366271973],["enquête",-12.50240707397461],["▁Colour",-12.502481460571287],["▁Diagram",-12.502495765686035],["▁gewählt",-12.502516746520996],["▁viitoare",-12.502538681030272],["▁reporters",-12.50291347503662],["guer",-12.502991676330566],["▁Kombination",-12.503021240234377],["▁qualitative",-12.50302505493164],["Centrul",-12.503131866455078],["avy",-12.503170013427734],["▁Eng",-12.503175735473633],["▁sufletul",-12.50327205657959],["▁germ",-12.503412246704102],["▁prevented",-12.503448486328123],["appelle",-12.503533363342283],["gins",-12.50355625152588],["▁Skype",-12.503585815429688],["conditioned",-12.503617286682127],["▁clutch",-12.50364112854004],["environ",-12.503694534301758],["3.3",-12.503774642944336],["▁webinar",-12.503866195678713],["▁forty",-12.504104614257812],["▁Medicaid",-12.504127502441406],["▁dismissed",-12.504167556762695],["▁siblings",-12.504168510437012],["▁Jaw",-12.504196166992188],["guiding",-12.504220962524414],["cigarette",-12.504374504089355],["▁Shah",-12.504681587219238],["▁Lehrer",-12.504684448242188],["▁muscular",-12.504694938659668],["spatele",-12.504796981811523],["▁réduction",-12.504836082458496],["▁fixes",-12.50485134124756],["Span",-12.50511646270752],["▁Hudson",-12.505231857299805],["development",-12.505250930786133],["▁excluded",-12.50525951385498],["Democrat",-12.505260467529297],["▁nominal",-12.50531768798828],["purpose",-12.50540828704834],["▁bored",-12.505500793457031],["espèce",-12.50550651550293],["▁(30",-12.5055570602417],["Neither",-12.505608558654783],["hänge",-12.505610466003418],["square",-12.505728721618652],["voller",-12.505736351013184],["▁pertinent",-12.505783081054688],["▁Wool",-12.50595474243164],["settling",-12.50607681274414],["fangen",-12.506148338317873],["▁Testing",-12.506152153015137],["distin",-12.506196022033691],["▁Marken",-12.506227493286133],["▁Beta",-12.506300926208496],["▁fulfilling",-12.506339073181152],["Leider",-12.506357192993164],["black",-12.506389617919922],["occupe",-12.50658893585205],["itățile",-12.506688117980955],["Pay",-12.506887435913086],["▁bandwidth",-12.506890296936035],["▁neighbourhood",-12.506918907165527],["▁Gutschein",-12.506922721862791],["degree",-12.507055282592772],["ivité",-12.507116317749023],["4.1",-12.507169723510742],["▁tätig",-12.50717067718506],["topic",-12.507242202758787],["ätz",-12.507243156433104],["these",-12.50733470916748],["▁propriété",-12.507438659667969],["▁innings",-12.507458686828612],["▁Prevention",-12.50754165649414],["▁Saw",-12.507585525512695],["▁opener",-12.507752418518066],["entwicklung",-12.507824897766112],["▁Johann",-12.50786590576172],["▁statistic",-12.50788116455078],["oids",-12.507966995239258],["▁Delaware",-12.508000373840332],["▁Isle",-12.508001327514648],["▁accompagn",-12.508028984069824],["▁Risiko",-12.508079528808594],["▁Conform",-12.508268356323242],["zeichnen",-12.508395195007324],["▁acuz",-12.508479118347168],["▁Mort",-12.508524894714355],["Fällen",-12.50853157043457],["▁blended",-12.50871467590332],["found",-12.50872802734375],["▁gestalten",-12.50874137878418],["▁Découvrez",-12.508830070495604],["▁Wett",-12.508956909179688],["▁débat",-12.508990287780762],["▁Tire",-12.509007453918455],["benz",-12.509037017822266],["Yes",-12.509074211120604],["▁pierde",-12.509110450744627],["▁niciodata",-12.509121894836426],["▁precipit",-12.509145736694336],["▁lazy",-12.509334564208984],["▁creature",-12.509370803833008],["Wettbewerb",-12.509385108947754],["▁Explo",-12.509496688842772],["wolf",-12.509657859802246],["▁conséquence",-12.509662628173828],["▁jewellery",-12.509662628173828],["▁Extension",-12.509735107421877],["▁transmitted",-12.509872436523438],["▁darker",-12.509973526000977],["▁simbol",-12.510065078735352],["kim",-12.510069847106934],["▁proteja",-12.510098457336426],["▁Copper",-12.510189056396484],["mitglied",-12.510218620300291],["▁explosive",-12.51022243499756],["▁Nicolae",-12.510223388671877],["▁intricate",-12.510231971740724],["lati",-12.510313034057615],["Mark",-12.510334014892578],["▁Porsche",-12.510339736938477],["▁Revenue",-12.510479927062988],["4.2",-12.510613441467283],["certain",-12.510836601257324],["▁Coaching",-12.510879516601562],["▁allocated",-12.510879516601562],["▁optimiz",-12.51101779937744],["▁heel",-12.511205673217772],["▁indigenous",-12.511330604553224],["▁vineri",-12.511396408081056],["▁Inspector",-12.51145076751709],["▁colleague",-12.5115327835083],["ANG",-12.511649131774902],["éducation",-12.511887550354004],["▁Geschenk",-12.51188850402832],["channel",-12.511899948120115],["▁trapped",-12.511954307556152],["BF",-12.511974334716797],["▁firing",-12.512086868286133],["▁chlor",-12.512103080749512],["▁Carlos",-12.512115478515623],["▁proxy",-12.512128829956056],["▁pinch",-12.512167930603027],["▁Pete",-12.512201309204102],["phospho",-12.512458801269531],["▁waiver",-12.51246452331543],["▁Croatia",-12.512480735778809],["▁behave",-12.51258373260498],["▁frig",-12.512676239013672],["▁Vorteil",-12.51279067993164],["▁wichtiger",-12.512837409973145],["........",-12.512929916381836],["▁flick",-12.513007164001465],["▁Stanford",-12.51306438446045],["öse",-12.513096809387209],["▁Fernseh",-12.513099670410156],["▁vélo",-12.51322078704834],["reisen",-12.513304710388184],["residing",-12.513504981994627],["▁Taste",-12.513580322265623],["▁disappeared",-12.513630867004396],["▁Hood",-12.513776779174805],["▁fabriqu",-12.514046669006348],["▁Jake",-12.514470100402832],["Lastly",-12.51462173461914],["▁furnace",-12.514673233032228],["▁Ottawa",-12.51473331451416],["▁dictate",-12.514742851257324],["zece",-12.514817237854004],["protect",-12.514932632446287],["FU",-12.51495361328125],["Stack",-12.514954566955566],["▁teilweise",-12.515018463134766],["▁Publisher",-12.51506233215332],["▁lutte",-12.515159606933594],["202",-12.515178680419922],["psy",-12.51519012451172],["▁wünschen",-12.515238761901855],["▁pathways",-12.515356063842772],["ivitate",-12.515559196472168],["▁continuă",-12.515658378601074],["ziemlich",-12.515791893005373],["verted",-12.515812873840332],["▁sequel",-12.515839576721191],["tinct",-12.51599407196045],["vette",-12.516020774841309],["▁exceeding",-12.516032218933104],["▁Yorkshire",-12.51607608795166],["▁cleanse",-12.51613998413086],["Sadly",-12.516159057617188],["▁präsentiert",-12.516164779663086],["angled",-12.516311645507812],["tude",-12.516339302062988],["chain",-12.516371726989746],["▁Oakland",-12.51639175415039],["xia",-12.516514778137209],["▁foremost",-12.51653003692627],["▁incomplete",-12.516786575317385],["▁restriction",-12.516905784606934],["▁whatsoever",-12.516908645629885],["▁shipment",-12.517017364501951],["**",-12.517059326171877],["Aici",-12.51711082458496],["PART",-12.517247200012209],["▁grams",-12.517251014709473],["▁Folk",-12.517457008361816],["▁encryption",-12.517467498779297],["▁Alfred",-12.517748832702637],["▁Veränderung",-12.517749786376951],["▁privately",-12.517817497253418],["£",-12.517909049987791],["▁Sonne",-12.51799201965332],["kow",-12.518117904663086],["▁CBS",-12.51817226409912],["▁Feuer",-12.518198013305664],["▁crushed",-12.518230438232422],["▁cazare",-12.518270492553713],["▁beraten",-12.51840114593506],["envoi",-12.518423080444336],["▁genannt",-12.51843547821045],["▁Lok",-12.518472671508787],["nox",-12.518569946289062],["wishing",-12.518759727478027],["▁freak",-12.518759727478027],["rasi",-12.51879596710205],["▁calculations",-12.518888473510742],["▁sprechen",-12.51890754699707],["5:00",-12.519062042236328],["▁Gam",-12.51907444000244],["▁invasion",-12.519159317016602],["ZA",-12.519230842590332],["aiming",-12.519327163696287],["▁näher",-12.519404411315918],["▁Maßnahmen",-12.519433975219728],["▁măsură",-12.519490242004396],["▁Bestellung",-12.519610404968262],["▁gown",-12.519665718078612],["▁oblige",-12.519747734069824],["länder",-12.51977825164795],["posi",-12.519853591918944],["▁Earn",-12.51988410949707],["▁dubl",-12.51999282836914],["▁sticky",-12.520100593566896],["▁litter",-12.520181655883787],["▁Salz",-12.520257949829102],["▁Matter",-12.520272254943848],["▁Driving",-12.520275115966797],["▁pursu",-12.520285606384276],["ographer",-12.520390510559082],["▁touring",-12.520400047302246],["opter",-12.520444869995115],["▁fierce",-12.520475387573242],["▁Audit",-12.520480155944824],["▁imperi",-12.520755767822266],["▁positiv",-12.520780563354492],["règles",-12.520849227905272],["▁bouton",-12.520990371704102],["▁victorie",-12.520990371704102],["▁manuel",-12.521015167236328],["▁await",-12.52103042602539],["▁transformer",-12.521041870117188],["▁cupboard",-12.52108383178711],["▁Hag",-12.521117210388184],["naj",-12.521214485168455],["▁annoncé",-12.52139663696289],["▁scolaire",-12.521401405334473],["▁étape",-12.521482467651367],["▁pirate",-12.521761894226074],["▁Rated",-12.521794319152832],["LOT",-12.521846771240234],["▁natura",-12.521944046020508],["oga",-12.522336959838867],["Read",-12.522388458251951],["idio",-12.52244472503662],["▁recession",-12.522698402404783],["veţi",-12.522761344909668],["▁blossom",-12.523082733154297],["▁lunar",-12.523141860961914],["▁inhibit",-12.52316951751709],["gemein",-12.523219108581545],["▁Historic",-12.52326202392578],["▁HTTP",-12.523370742797852],["misiune",-12.5234956741333],["▁Manda",-12.523601531982422],["▁Hurricane",-12.523643493652344],["Strat",-12.523646354675291],["▁populaire",-12.523756980895996],["▁useless",-12.523762702941896],["▁Leipzig",-12.523924827575684],["▁Krankheit",-12.52392578125],["▁Bonne",-12.52397346496582],["▁tissu",-12.52399730682373],["▁Baum",-12.523998260498049],["▁BUT",-12.524152755737305],["▁Mondial",-12.52423095703125],["▁triangle",-12.524242401123049],["▁Tesla",-12.524250984191896],["▁pământ",-12.52430534362793],["▁aminte",-12.52472686767578],["▁vehicul",-12.524770736694336],["▁cerut",-12.52482795715332],["▁respiratory",-12.524836540222168],["▁rayon",-12.524993896484377],["▁gestaltet",-12.525067329406738],["310",-12.525139808654783],["pfl",-12.525239944458008],["▁shrimp",-12.52533721923828],["▁reconnu",-12.525409698486328],["ologique",-12.525476455688477],["▁unity",-12.525674819946287],["Speicher",-12.52569580078125],["▁Movement",-12.525794982910156],["ddling",-12.52581787109375],["OE",-12.525818824768066],["▁Resolution",-12.525863647460938],["esteem",-12.525898933410645],["▁Teen",-12.526288986206056],["▁believing",-12.526463508605955],["▁Tipps",-12.526481628417969],["jpg",-12.526494026184082],["▁obs",-12.526519775390623],["SHA",-12.526702880859377],["▁quietly",-12.526907920837402],["setting",-12.52712345123291],["▁elevator",-12.527185440063477],["phor",-12.527194023132324],["Just",-12.52725887298584],["▁legatura",-12.52739143371582],["elected",-12.527414321899414],["▁disclosed",-12.527419090270996],["quarter",-12.52743148803711],["zzy",-12.527461051940918],["▁gata",-12.527491569519045],["SAN",-12.527532577514648],["▁Cathedral",-12.527592658996582],["192",-12.52765655517578],["▁RBI",-12.52772617340088],["▁Seller",-12.527798652648926],["▁urine",-12.527807235717772],["▁Hardware",-12.527966499328612],["▁steadi",-12.527993202209473],["percussion",-12.528158187866213],["▁francez",-12.528172492980955],["▁rude",-12.528202056884766],["bod",-12.528223037719728],["cession",-12.528249740600586],["▁HTC",-12.528372764587402],["HB",-12.528576850891112],["▁descent",-12.528644561767578],["▁Painting",-12.528681755065918],["119",-12.528684616088867],["sagen",-12.52877426147461],["▁salvation",-12.52880573272705],["arro",-12.528814315795898],["0.3",-12.52886962890625],["▁Duck",-12.52890396118164],["Mit",-12.529052734375],["да",-12.52927017211914],["▁Diesel",-12.529322624206545],["▁Medal",-12.529413223266602],["▁interim",-12.52943992614746],["▁montagne",-12.52943992614746],["▁Pixel",-12.52963161468506],["LINE",-12.52980613708496],["▁dureri",-12.52993869781494],["▁Bengal",-12.529990196228027],["Legea",-12.530080795288086],["▁Strecke",-12.530094146728516],["▁schneller",-12.53012752532959],["▁Karten",-12.5301513671875],["cion",-12.53024196624756],["▁Coco",-12.53037166595459],["troisième",-12.53052806854248],["401",-12.530616760253906],["▁sandwiches",-12.530704498291016],["▁folosind",-12.530920028686523],["▁Folgen",-12.530953407287598],["▁triumph",-12.530991554260254],["▁Hintergrund",-12.530996322631836],["▁revelation",-12.531084060668944],["ôme",-12.531222343444824],["▁Nex",-12.531245231628418],["jährigen",-12.531295776367188],["▁militant",-12.531296730041504],["▁fabricant",-12.531671524047852],["iano",-12.531713485717772],["▁formulation",-12.53188705444336],["integrating",-12.532050132751465],["▁Items",-12.532142639160156],["▁contractual",-12.532320976257324],["AIDS",-12.532424926757812],["▁pitcher",-12.532610893249512],["▁Snap",-12.532623291015623],["▁systematic",-12.532663345336914],["▁referendum",-12.532694816589355],["gau",-12.53281021118164],["administration",-12.532917022705078],["▁speci",-12.532981872558594],["ieni",-12.532998085021973],["prox",-12.53318691253662],["▁bouquet",-12.533241271972656],["▁sinnvoll",-12.533270835876465],["▁Fleisch",-12.533309936523438],["ktuell",-12.533381462097168],["▁mushrooms",-12.533408164978027],["▁Straf",-12.533470153808594],["▁cresc",-12.533491134643556],["TEM",-12.533502578735352],["▁vindec",-12.53352165222168],["▁Drama",-12.533540725708008],["chief",-12.533550262451172],["▁müsst",-12.533614158630373],["▁Warner",-12.533662796020508],["118",-12.533761024475098],["▁saptamana",-12.533831596374512],["▁animaux",-12.53412914276123],["▁Directory",-12.534146308898926],["▁entgegen",-12.53415584564209],["▁deduction",-12.534156799316406],["▁Strategic",-12.53426456451416],["▁rats",-12.534419059753418],["▁Moses",-12.534448623657228],["eko",-12.534564971923828],["strict",-12.534590721130373],["▁Ashley",-12.534603118896484],["mik",-12.534622192382812],["▁relocate",-12.534668922424316],["▁whip",-12.534738540649414],["central",-12.534750938415527],["mack",-12.534892082214355],["stufe",-12.534961700439451],["▁Metropolitan",-12.5349702835083],["▁croissance",-12.534974098205566],["▁celebrities",-12.535021781921388],["▁Geh",-12.53507137298584],["▁verifica",-12.535196304321287],["▁satisfac",-12.535211563110352],["▁Julian",-12.535271644592283],["▁remotely",-12.535432815551758],["▁Safari",-12.535542488098145],["▁Chic",-12.53557014465332],["▁clamp",-12.535818099975586],["▁Schnee",-12.535918235778809],["grown",-12.536069869995115],["▁Character",-12.536110877990724],["▁charities",-12.536137580871582],["Thankfully",-12.536625862121582],["▁țară",-12.53681468963623],["IZ",-12.536816596984863],["Vielleicht",-12.536999702453612],["▁Pon",-12.537108421325684],["gegen",-12.53711986541748],["chez",-12.537185668945312],["Black",-12.53754425048828],["▁alimentare",-12.537555694580078],["▁verloren",-12.537562370300291],["▁predictions",-12.537657737731934],["Founded",-12.53795337677002],["▁femeie",-12.538022994995115],["wahrscheinlich",-12.538107872009276],["▁squeeze",-12.53819465637207],["▁verfügbar",-12.538259506225586],["▁hygiene",-12.538393020629885],["voire",-12.538667678833008],["▁birou",-12.538901329040527],["▁initiate",-12.538921356201172],["▁Patriot",-12.53900909423828],["▁Income",-12.539159774780272],["▁marry",-12.539310455322266],["lokal",-12.539336204528809],["logic",-12.53940486907959],["▁Abstract",-12.53966236114502],["▁grundsätzlich",-12.539822578430176],["▁tariff",-12.539886474609377],["▁definitiv",-12.539892196655272],["paz",-12.53989315032959],["Result",-12.539921760559082],["1:30",-12.54005241394043],["▁Latest",-12.540075302124023],["▁Dauer",-12.540155410766602],["Med",-12.540275573730469],["gewicht",-12.540348052978516],["▁Gaza",-12.540430068969728],["▁Newton",-12.540769577026367],["Dokument",-12.540897369384766],["formular",-12.540945053100586],["ILE",-12.540964126586914],["▁surse",-12.541040420532228],["MH",-12.54116153717041],["▁Arctic",-12.541255950927734],["▁ISBN",-12.541274070739746],["▁quarterback",-12.541315078735352],["▁absurd",-12.541555404663086],["▁Zusammenhang",-12.541561126708984],["▁Module",-12.54156494140625],["mented",-12.541667938232422],["worthy",-12.541797637939451],["▁célèbre",-12.541828155517578],["▁maritime",-12.541836738586426],["▁Reed",-12.54193878173828],["▁threaten",-12.542037010192873],["▁Satz",-12.542095184326172],["▁sticking",-12.542203903198242],["▁transcript",-12.542372703552246],["▁Morgen",-12.542425155639648],["▁Förder",-12.542435646057127],["▁Gottes",-12.542572021484377],["▁Coordinator",-12.542648315429688],["LOG",-12.54265022277832],["EAN",-12.542677879333496],["▁préparation",-12.54273509979248],["▁Brass",-12.542799949645996],["Așa",-12.542853355407717],["▁Utiliz",-12.54294490814209],["framed",-12.542973518371582],["▁asphalt",-12.543050765991213],["116",-12.543061256408691],["▁historically",-12.54310417175293],["▁doamn",-12.543176651000977],["Air",-12.543293952941896],["▁economist",-12.543838500976562],["fresh",-12.54384994506836],["engine",-12.543906211853027],["▁Rücken",-12.543919563293455],["▁worthwhile",-12.544124603271484],["▁Therapie",-12.544140815734863],["▁Joshua",-12.544151306152344],["sicherheit",-12.544175148010254],["▁scena",-12.544254302978516],["ifiant",-12.54433822631836],["/20",-12.54442024230957],["fehl",-12.544469833374023],["karten",-12.544515609741213],["501",-12.54465675354004],["▁vide",-12.544673919677734],["▁miliarde",-12.544699668884276],["▁trillion",-12.54470157623291],["oudre",-12.544761657714844],["nderung",-12.544803619384766],["▁inquiries",-12.544992446899414],["▁echipe",-12.545034408569336],["▁investiga",-12.545040130615234],["▁detailing",-12.545042991638184],["VIS",-12.545086860656738],["▁geographical",-12.545157432556152],["▁authentication",-12.54519271850586],["▁Schwa",-12.545201301574709],["▁Scri",-12.545230865478516],["▁discourage",-12.54527473449707],["Pass",-12.54529094696045],["▁scattered",-12.54529857635498],["▁langsam",-12.545300483703612],["telles",-12.545380592346191],["▁ramane",-12.5454740524292],["▁inhibitor",-12.545486450195312],["▁Habit",-12.54556941986084],["▁10:00",-12.545577049255373],["▁rezultat",-12.545595169067385],["äck",-12.545943260192873],[",000.",-12.545979499816896],["▁remedies",-12.546103477478027],["▁comportament",-12.54619598388672],["namen",-12.546229362487791],["▁#3",-12.546327590942385],["enstein",-12.546493530273438],["▁relevance",-12.546516418457031],["▁présentation",-12.54655933380127],["MHz",-12.546648979187012],["EMA",-12.546661376953123],["▁palace",-12.546709060668944],["▁vizibil",-12.546723365783691],["▁griev",-12.546820640563965],["▁severely",-12.54688549041748],["expert",-12.546942710876465],["▁ravi",-12.54696273803711],["▁feasible",-12.547002792358398],["▁Wholesale",-12.547009468078612],["▁graduat",-12.547077178955078],["Kü",-12.547094345092772],["▁quotation",-12.547157287597656],["/11",-12.54716968536377],["lutter",-12.547415733337402],["▁dice",-12.547467231750488],["modal",-12.547749519348145],["ggling",-12.547819137573242],["▁considér",-12.547986030578612],["▁Insel",-12.548097610473633],["▁Database",-12.5483980178833],["icism",-12.548508644104004],["▁quarterly",-12.54851245880127],["▁formule",-12.548558235168455],["▁renouvel",-12.54873275756836],["▁Treasure",-12.54873752593994],["▁1962",-12.54884433746338],["▁republic",-12.549111366271973],["▁États",-12.549254417419434],["▁salut",-12.549356460571287],["HK",-12.54941463470459],["▁Bali",-12.549427032470703],["▁Rechnung",-12.549447059631348],["fruit",-12.54945182800293],["lays",-12.549467086791992],["LAS",-12.54951000213623],["inclin",-12.549708366394045],["▁Cré",-12.549813270568848],["▁compt",-12.54985237121582],["țiilor",-12.550056457519531],["heft",-12.550111770629885],["▁Comisi",-12.55024242401123],["▁Nurse",-12.55051612854004],["loid",-12.550540924072266],["grove",-12.550761222839355],["▁Copy",-12.550867080688477],["▁Kampf",-12.550873756408691],["izată",-12.550945281982422],["würdig",-12.551244735717772],["-2018",-12.551305770874023],["ozo",-12.551350593566896],["▁integriert",-12.551397323608398],["▁réunion",-12.551448822021484],["▁mică",-12.551520347595217],["▁Chau",-12.551595687866213],["▁allegations",-12.551626205444336],["▁shaping",-12.551640510559082],["▁transcription",-12.551671981811523],["▁Monica",-12.551711082458496],["▁torture",-12.551795959472656],["▁cooperative",-12.551962852478027],["▁invité",-12.551987648010254],["▁bamboo",-12.552204132080078],["▁Thinking",-12.55232048034668],["▁gratis",-12.552392959594728],["117",-12.55267333984375],["renz",-12.55279541015625],["▁Fußball",-12.552823066711426],["▁Gram",-12.552873611450195],["sprung",-12.55290412902832],["▁Schluss",-12.55308723449707],["▁Diploma",-12.553345680236816],["▁apparatus",-12.553363800048828],["notably",-12.553483963012695],["▁exercit",-12.553532600402832],["ământ",-12.553536415100098],["▁masses",-12.553610801696776],["▁preuve",-12.55364227294922],["great",-12.553754806518556],["▁Drink",-12.553792953491213],["islam",-12.553828239440918],["ARM",-12.553914070129396],["indre",-12.554404258728027],["DW",-12.554410934448242],["▁Flowers",-12.554500579833984],["▁pill",-12.554574966430664],["▁objectifs",-12.554594039916992],["▁Bezug",-12.554659843444824],["▁assumptions",-12.55466365814209],["▁vesti",-12.554742813110352],["route",-12.554783821105955],["▁Bangkok",-12.554815292358398],["▁seamlessly",-12.55482006072998],["config",-12.554882049560549],["▁username",-12.554890632629396],["unsure",-12.555024147033691],["▁poser",-12.555129051208496],["▁impozit",-12.555246353149414],["▁metode",-12.555333137512209],["defending",-12.555347442626951],["▁Nic",-12.555431365966797],["▁Vertrag",-12.555508613586426],["▁plăcut",-12.55552864074707],["▁Pou",-12.555675506591797],["UCH",-12.555785179138184],["▁Fein",-12.555903434753418],["reading",-12.555994987487791],["snip",-12.55604076385498],["▁Livre",-12.556401252746582],["lander",-12.556509971618652],["▁hydraulic",-12.556559562683104],["veiled",-12.556563377380373],["intr",-12.55660915374756],["▁Domnului",-12.556641578674316],["▁$0.",-12.556713104248049],["▁kilometers",-12.556753158569336],["spann",-12.556870460510254],["▁credibility",-12.556892395019531],["▁eBook",-12.55695343017578],["VERY",-12.556994438171388],["▁Charm",-12.557122230529783],["Evangeli",-12.557193756103516],["▁anderer",-12.557193756103516],["▁Entry",-12.557195663452148],["ffy",-12.5573148727417],["▁Exc",-12.55737018585205],["▁Omega",-12.557446479797363],["▁Funktionen",-12.557455062866213],["▁Gay",-12.55752182006836],["▁acht",-12.557608604431152],["colored",-12.557615280151367],["itude",-12.557634353637695],["▁accompagné",-12.557645797729492],["▁unfortunate",-12.557981491088867],["▁DIN",-12.558091163635254],["▁installment",-12.558252334594728],["▁indépendant",-12.558307647705078],["These",-12.558364868164062],["mitten",-12.558394432067873],["thank",-12.558470726013184],["▁Trek",-12.558721542358398],["üchte",-12.55874252319336],["▁cuir",-12.55875015258789],["▁turbo",-12.558802604675291],["Table",-12.558847427368164],["▁Extrem",-12.558866500854492],["▁advertisements",-12.55915355682373],["▁chaîne",-12.559206008911133],["▁corridor",-12.559473991394045],["▁râ",-12.559651374816896],["▁Opening",-12.559718132019045],["Get",-12.559747695922852],["▁storytelling",-12.55976676940918],["▁severity",-12.559771537780762],["4\"",-12.559956550598145],["▁parasit",-12.55996799468994],["angebot",-12.56002426147461],["Data",-12.56005573272705],["listen",-12.560086250305176],["▁vârstă",-12.560094833374023],["▁swallow",-12.56025505065918],["TRE",-12.560321807861328],["▁daunting",-12.56035041809082],["▁Oli",-12.560481071472168],["▁definitive",-12.56066608428955],["▁rezerva",-12.560667037963867],["/15",-12.56080722808838],["▁Landschaft",-12.560887336730955],["▁Automotive",-12.56093406677246],["▁convers",-12.56113052368164],["▁thru",-12.561139106750488],["▁Township",-12.561140060424805],["▁tilt",-12.56119441986084],["▁Criminal",-12.561227798461914],["riez",-12.561407089233398],["▁Parking",-12.561440467834473],["▁humanitarian",-12.561518669128418],["▁Kilometer",-12.561529159545898],["controlled",-12.56189250946045],["▁Klick",-12.56191062927246],["support",-12.56199836730957],["handed",-12.562005996704102],["ämtliche",-12.562104225158691],["access",-12.562232971191406],["▁eleven",-12.562232971191406],["▁ferry",-12.56229305267334],["zieren",-12.562620162963867],["▁Gebrauch",-12.562688827514648],["▁vigoare",-12.562689781188965],["MON",-12.562756538391112],["fox",-12.562886238098145],["bestimmten",-12.562894821166992],["▁Gur",-12.563069343566896],["▁Mannschaft",-12.563146591186523],["▁patrol",-12.563173294067385],["▁casă",-12.563376426696776],["▁Stories",-12.563380241394045],["▁robotic",-12.563425064086914],["tiri",-12.563576698303224],["gewiesen",-12.5636568069458],["CV",-12.563722610473633],["▁parinti",-12.563899040222168],["▁Owen",-12.563931465148926],["▁Katie",-12.564116477966309],["▁Combine",-12.56422233581543],["enfalls",-12.56442928314209],["▁financière",-12.564447402954102],["▁parliament",-12.564549446105955],["▁Weekend",-12.564616203308104],["▁Sonic",-12.564757347106934],["▁fixture",-12.56479263305664],["majorité",-12.56497573852539],["▁gravel",-12.565028190612791],["realizate",-12.565109252929688],["examining",-12.565113067626951],["▁grim",-12.5653657913208],["▁stabili",-12.565458297729492],["▁Wochenende",-12.56551456451416],["▁Hebrew",-12.565597534179688],["▁Harrison",-12.565799713134766],["▁boundary",-12.565858840942385],["40,000",-12.565902709960938],["▁Ambassador",-12.566208839416504],["▁scoate",-12.566229820251465],["ffin",-12.56623363494873],["▁crème",-12.566269874572754],["▁obiecte",-12.566378593444824],["enţa",-12.566763877868652],["▁subsidiary",-12.566797256469728],["▁Franco",-12.56688404083252],["▁visuel",-12.567042350769045],["▁uitat",-12.56708812713623],["▁revisit",-12.56712245941162],["▁Camping",-12.567150115966797],["▁Divine",-12.567304611206056],["4-6",-12.567323684692385],["▁Brandon",-12.567378997802734],["ма",-12.567450523376465],["sofern",-12.56745433807373],["ntweder",-12.56748104095459],["▁Shoot",-12.567618370056152],["étais",-12.56771183013916],["SPEC",-12.567930221557615],["▁dreapta",-12.567973136901855],["▁repaired",-12.568055152893066],["pyr",-12.56813621520996],["▁warranties",-12.568175315856934],["▁représent",-12.568263053894045],["ADE",-12.568293571472168],["▁selective",-12.56836223602295],["▁Banking",-12.568441390991213],["▁ergonomic",-12.568562507629396],["...”",-12.568602561950684],["▁willingness",-12.56867790222168],["isser",-12.568784713745115],["▁confection",-12.568961143493652],["admi",-12.569009780883787],["▁Freizeit",-12.56902313232422],["▁illuminate",-12.569151878356934],["▁Repeat",-12.569170951843262],["▁Zeitpunkt",-12.56933879852295],["claimed",-12.569439888000488],["▁erhältlich",-12.569480895996094],["▁paysage",-12.569537162780762],["▁Atom",-12.569890022277832],["▁Graf",-12.570086479187012],["▁firmware",-12.570093154907228],["▁Swift",-12.570180892944336],["▁cercetare",-12.57018756866455],["▁internațional",-12.570330619812012],["▁zombie",-12.570330619812012],["▁Spread",-12.57050609588623],["ECO",-12.57056999206543],["▁Gestaltung",-12.570758819580078],["rast",-12.570858001708984],["▁perfume",-12.5709228515625],["▁roulette",-12.570924758911133],["▁distill",-12.57096004486084],["▁Produkten",-12.570992469787598],["225",-12.57131004333496],["facing",-12.571371078491213],["▁paradigm",-12.571514129638672],["▁Rah",-12.571532249450684],["▁Renault",-12.571846961975098],["willig",-12.571864128112791],["▁Vet",-12.571890830993652],["▁reprezenta",-12.572126388549805],["stoß",-12.572185516357422],["▁Weiß",-12.5722074508667],["▁Solo",-12.572210311889648],["▁Jin",-12.572646141052246],["▁Brussels",-12.572693824768066],["▁Tournament",-12.572693824768066],["▁proced",-12.572710037231444],["▁Rabbi",-12.572835922241213],["▁gameplay",-12.572851181030272],["▁ATM",-12.572901725769045],["▁firearm",-12.572906494140623],["revealing",-12.573003768920898],["schütz",-12.57310676574707],["▁Absolutely",-12.573288917541504],["▁interference",-12.573433876037598],["▁Employment",-12.573558807373049],["▁chord",-12.57356071472168],["▁oportun",-12.573585510253906],["▁frontier",-12.573770523071287],["▁Lunch",-12.573891639709473],["bread",-12.57397174835205],["▁rendered",-12.573976516723633],["5.1",-12.573984146118164],["▁motif",-12.574066162109377],["▁Schlag",-12.574227333068848],["113",-12.574264526367188],["▁Deux",-12.574288368225098],["▁surplus",-12.57430934906006],["ALS",-12.574417114257812],["▁abortion",-12.574472427368164],["▁airplane",-12.574475288391112],["▁migrants",-12.574501991271973],["kli",-12.574539184570312],["▁crochet",-12.57454776763916],["fahrer",-12.574671745300291],["▁reconstruction",-12.57471752166748],["▁difer",-12.574752807617188],["▁Conserv",-12.57478141784668],["▁NSW",-12.57479476928711],["▁regim",-12.574844360351562],["▁Except",-12.574904441833496],["▁trage",-12.574978828430176],["▁Consiliul",-12.575058937072754],["▁Bedarf",-12.575064659118652],["▁additive",-12.5750732421875],["know",-12.5751371383667],["▁sauna",-12.57517147064209],["▁mortality",-12.575201034545898],["kräftig",-12.575358390808104],["▁Own",-12.575445175170898],["nzo",-12.575519561767578],["▁villes",-12.575543403625488],["▁recette",-12.575749397277832],["▁attacking",-12.575799942016602],["beruf",-12.57608699798584],["▁integrat",-12.57612419128418],["realizarea",-12.576201438903809],["▁exemption",-12.57628345489502],["GW",-12.576285362243652],["▁Nano",-12.57639503479004],["SCH",-12.576440811157228],["▁honesty",-12.576457023620604],["▁Arriv",-12.576515197753906],["▁gland",-12.576542854309082],["▁proactive",-12.576746940612791],["▁agile",-12.576837539672852],["▁kernel",-12.576844215393066],["▁nurture",-12.576860427856444],["▁Patent",-12.576963424682615],["▁excursi",-12.577189445495604],["pulsion",-12.577326774597168],["stellte",-12.577351570129396],["ständige",-12.577421188354492],["▁Rebecca",-12.577436447143556],["▁Securities",-12.577436447143556],["mètre",-12.577446937561035],["LOW",-12.577469825744627],["▁consilier",-12.577537536621094],["▁Architekt",-12.577733993530272],["▁china",-12.57777214050293],["älfte",-12.577778816223145],["▁Combin",-12.577795028686523],["480",-12.577999114990234],["liv",-12.578021049499512],["▁peur",-12.578067779541016],["keep",-12.57822322845459],["▁Verhalten",-12.578324317932127],["▁peek",-12.578446388244627],["▁dient",-12.578550338745115],["▁prevazut",-12.578625679016112],["Emmanuel",-12.57862663269043],["▁incidence",-12.57862663269043],["▁Framework",-12.578715324401855],["dass",-12.578816413879396],["artiste",-12.578874588012695],["▁Accept",-12.578971862792969],["▁plunge",-12.579073905944824],["chauff",-12.579118728637695],["▁guilt",-12.579156875610352],["▁senator",-12.57945442199707],["▁disable",-12.579776763916016],["▁partout",-12.579901695251465],["JC",-12.580045700073242],["▁Highly",-12.580150604248049],["▁beneficii",-12.58021068572998],["fibro",-12.580347061157228],["interpreted",-12.58055019378662],["▁genauso",-12.58056354522705],["▁basil",-12.580601692199709],["▁Angst",-12.580697059631348],["rzte",-12.580933570861816],["Master",-12.58112907409668],["▁french",-12.581324577331545],["▁Duration",-12.581343650817873],["HM",-12.581402778625488],["▁Bert",-12.581518173217772],["▁1963",-12.581534385681152],["▁warrior",-12.581604957580566],["2007",-12.58169651031494],["▁recycle",-12.581722259521484],["▁fertiliz",-12.58180809020996],["▁hatch",-12.581809997558594],["ISH",-12.581811904907228],["luft",-12.582321166992188],["▁crying",-12.582452774047852],["▁activist",-12.5824613571167],["schränkt",-12.582500457763672],["▁diff",-12.582500457763672],["▁Demand",-12.58262825012207],["▁transported",-12.582669258117676],["▁Remodel",-12.582686424255373],["▁Etats",-12.582704544067385],["ANI",-12.582777976989746],["▁spéciale",-12.582804679870604],["▁Konzert",-12.582805633544922],["▁Bedürfnisse",-12.58281135559082],["▁overlooked",-12.58286476135254],["▁cutter",-12.582974433898926],["klär",-12.58311939239502],["▁Materialien",-12.583135604858398],["▁gewisse",-12.583388328552246],["bull",-12.583499908447266],["Good",-12.583513259887695],["Gig",-12.583616256713867],["Logic",-12.583736419677734],["▁Schlaf",-12.583970069885254],["▁Yankee",-12.583996772766112],["▁Batman",-12.584020614624023],["▁funcție",-12.584166526794434],["▁partenariat",-12.584294319152832],["▁Antrag",-12.584348678588867],["▁Pill",-12.584519386291504],["▁tram",-12.584637641906738],["▁Minor",-12.58465576171875],["pertaining",-12.584678649902344],["▁apropiere",-12.584843635559082],["▁Barack",-12.584965705871582],["schön",-12.585174560546877],["▁Sandy",-12.585182189941406],["kilometre",-12.585192680358888],["▁diy",-12.585234642028809],["▁1966",-12.585453987121582],["gelassen",-12.585485458374023],["▁Trial",-12.58559226989746],["▁Bauer",-12.585603713989258],["▁assumption",-12.585648536682127],["birth",-12.585668563842772],["rechnen",-12.585861206054688],["▁meci",-12.585867881774902],["▁gloss",-12.585906982421877],["▁sewer",-12.58593463897705],["▁Stimme",-12.585955619812012],["▁Fortune",-12.585967063903809],["▁Lösungen",-12.586007118225098],["▁impresi",-12.586074829101562],["schlaf",-12.586089134216309],["prüfung",-12.586097717285156],["▁instalat",-12.586198806762695],["▁picturesque",-12.586233139038086],["vait",-12.586240768432615],["8.1",-12.58629035949707],["▁călători",-12.586392402648926],["▁dix",-12.586400032043455],["▁furnished",-12.586411476135254],["▁dolari",-12.586445808410645],["▁regener",-12.586562156677246],["▁astazi",-12.586621284484863],["▁Sprach",-12.586750030517578],["delà",-12.586846351623535],["avec",-12.58694076538086],["▁Buddhist",-12.586990356445312],["▁alphabet",-12.586990356445312],["▁berichtet",-12.587201118469238],["ideally",-12.587209701538086],["▁annuel",-12.587421417236328],["▁laughing",-12.587532997131348],["▁Zustand",-12.587639808654783],["cini",-12.587692260742188],["solid",-12.587724685668944],["▁Broker",-12.587868690490724],["▁developmental",-12.5879545211792],["▁Summary",-12.588191032409668],["▁Trinity",-12.58819580078125],["▁sucre",-12.58821964263916],["▁sandal",-12.588231086730955],["PEN",-12.588274955749512],["gewinn",-12.588486671447754],["olé",-12.588555335998535],["matric",-12.58865737915039],["xton",-12.588695526123049],["werten",-12.588740348815918],["▁Dust",-12.588765144348145],["▁Journey",-12.588791847229004],["▁Rush",-12.588793754577637],["▁NCAA",-12.588839530944824],["▁allgemeine",-12.588926315307615],["▁Universe",-12.589007377624512],["▁connais",-12.589099884033203],["▁quantité",-12.58912467956543],["▁Kab",-12.589150428771973],["▁purse",-12.589150428771973],["Health",-12.589210510253906],["▁apărut",-12.589288711547852],["▁bypass",-12.589313507080078],["pronounced",-12.58936595916748],["▁magnitude",-12.589393615722656],["▁Walmart",-12.589394569396973],["ède",-12.589409828186035],["▁serum",-12.589590072631836],["▁baseline",-12.589765548706056],["STER",-12.589932441711426],["▁ONLY",-12.590052604675291],["▁individuell",-12.590086936950684],["▁Ghi",-12.590139389038086],["▁Ruby",-12.59020709991455],["▁Chal",-12.59024143218994],["▁Vier",-12.590261459350586],["5.0",-12.5903902053833],["▁fog",-12.590519905090332],["esel",-12.590557098388672],["▁Python",-12.590598106384276],["▁urmează",-12.590608596801758],["▁trustworthy",-12.590639114379885],["hört",-12.59072971343994],["▁tâche",-12.59078311920166],["Patri",-12.59079933166504],["▁grind",-12.590928077697754],["▁Raven",-12.590934753417969],["▁poursuiv",-12.590951919555664],["▁simpli",-12.591140747070312],["▁echo",-12.59116554260254],["▁Attention",-12.591313362121582],["Against",-12.591402053833008],["GET",-12.59148120880127],["▁turistic",-12.591535568237305],["▁tenure",-12.59158992767334],["▁alimentaire",-12.591651916503906],["Who",-12.59172248840332],["▁ändern",-12.591729164123535],["▁rebound",-12.591778755187988],["grenze",-12.591849327087402],["▁Fame",-12.592093467712402],["▁Kick",-12.592215538024902],["▁Detail",-12.59228801727295],["▁Push",-12.592308044433594],["production",-12.592430114746094],["▁Candidates",-12.59244441986084],["▁reușit",-12.592484474182127],["istischen",-12.592525482177734],["lassung",-12.592649459838867],["▁Hann",-12.592713356018066],["espère",-12.592965126037598],["▁vergessen",-12.593008041381836],["▁smiling",-12.593010902404783],["▁devotion",-12.593016624450684],["▁pastry",-12.593071937561035],["Add",-12.593390464782717],["▁authorization",-12.593494415283203],["▁Suisse",-12.593568801879885],["▁Berkeley",-12.59361171722412],["▁Guild",-12.593660354614258],["▁choir",-12.593748092651367],["learning",-12.593802452087402],["▁Tanz",-12.593894004821776],["mardi",-12.594076156616213],["▁rezultatele",-12.594191551208496],["▁earrings",-12.594218254089355],["▁turbine",-12.594223976135254],["▁jeudi",-12.594284057617188],["terapie",-12.594576835632324],["regain",-12.59461498260498],["SET",-12.594643592834473],["▁Hände",-12.594681739807127],["▁Globe",-12.594683647155762],["frag",-12.594775199890137],["▁Treasury",-12.594820976257324],["▁hazardous",-12.594820976257324],["▁Fahrt",-12.594928741455078],["▁fulfilled",-12.594966888427734],["▁manga",-12.594987869262695],["▁composé",-12.595067977905272],["▁ABS",-12.595132827758787],["▁preced",-12.595197677612305],["▁beauté",-12.595233917236328],["▁interessant",-12.59526252746582],["▁lieber",-12.595324516296388],["▁Kö",-12.595378875732422],["EMS",-12.595410346984863],["FER",-12.595413208007812],["▁eure",-12.59542751312256],["▁plumber",-12.59542751312256],["Love",-12.595463752746582],["▁Marcus",-12.595635414123535],["▁registry",-12.595637321472168],["▁uncle",-12.595696449279783],["▁neuf",-12.595728874206545],["▁Fläche",-12.59575080871582],["▁restaur",-12.595815658569336],["▁noticeable",-12.595833778381348],["▁riches",-12.595871925354004],["occupy",-12.596031188964844],["▁hurricane",-12.596031188964844],["▁gespeichert",-12.596033096313477],["▁Bordeaux",-12.596039772033691],["▁Maj",-12.59637451171875],["Applied",-12.596439361572266],["▁compter",-12.596575736999512],["impact",-12.59663200378418],["▁Improve",-12.596758842468262],["▁Calif",-12.596832275390623],["▁desfășur",-12.596939086914062],["▁packaged",-12.597001075744627],["180",-12.59703540802002],["devenu",-12.597042083740234],["▁Battery",-12.597243309020996],["▁objection",-12.597254753112791],["▁anual",-12.597305297851562],["▁Landscape",-12.59731674194336],["IQ",-12.597403526306152],["grès",-12.597586631774902],["▁witnesses",-12.597750663757324],["enţial",-12.597764015197754],["▁plateau",-12.597779273986816],["▁bilete",-12.59783935546875],["▁Bronze",-12.59786605834961],["▁Kiss",-12.597946166992188],["▁Serge",-12.598093032836914],["atomic",-12.598145484924316],["▁renovated",-12.59817886352539],["player",-12.598212242126465],["▁dirig",-12.598291397094728],["▁Îm",-12.598296165466309],["▁plimb",-12.59843635559082],["▁ambassador",-12.598455429077148],["▁apropiat",-12.598455429077148],["▁adaug",-12.598602294921877],["ogenic",-12.59872055053711],["kämpfe",-12.598779678344728],["▁Hillary",-12.598907470703123],["yak",-12.598942756652832],["General",-12.59925365447998],["▁Zugang",-12.599400520324709],["▁fertil",-12.599457740783691],["incat",-12.599536895751951],["assessing",-12.599587440490724],["▁Cincinnati",-12.59967041015625],["▁convincing",-12.599685668945312],["sadly",-12.59974479675293],["kunde",-12.599801063537598],["ambul",-12.599913597106934],["▁familii",-12.599974632263184],["juri",-12.60007095336914],["ionen",-12.600102424621582],["▁Wirtschaft",-12.600130081176758],["contract",-12.600135803222656],["punem",-12.60015106201172],["handlung",-12.600394248962402],["▁fournir",-12.600455284118652],["▁Ambi",-12.600663185119627],["▁Isaac",-12.600663185119627],["▁praying",-12.6007719039917],["▁Italien",-12.600848197937012],["233",-12.600850105285645],["spawn",-12.600913047790527],["▁legii",-12.60092544555664],["▁zuvor",-12.601018905639648],["▁comune",-12.601030349731444],["official",-12.601165771484377],["144",-12.601290702819824],["izeaza",-12.601329803466797],["▁Keller",-12.601372718811035],["ORE",-12.601378440856934],["122",-12.601485252380373],["incurred",-12.60150146484375],["CHA",-12.601579666137695],["▁Herzen",-12.601590156555176],["▁reasoning",-12.6016263961792],["affaire",-12.601849555969238],["ooth",-12.601890563964844],["155",-12.601998329162598],["▁invented",-12.602113723754885],["▁Comun",-12.602140426635742],["zähl",-12.602179527282717],["geliefert",-12.602212905883787],["explorer",-12.602213859558104],["nect",-12.60232639312744],["▁mercredi",-12.602408409118652],["▁volonté",-12.602408409118652],["easy",-12.602453231811523],["▁feat",-12.602490425109863],["rented",-12.602580070495604],["▁converter",-12.60259246826172],["Verhältnis",-12.602713584899902],["▁Iceland",-12.602792739868164],["▁pretul",-12.602933883666992],["▁Vorstellung",-12.602960586547852],["▁hydrogen",-12.60309600830078],["▁pouvai",-12.603097915649414],["▁dawn",-12.603153228759766],["▁Georg",-12.603269577026367],["▁cautious",-12.603367805480955],["▁Pattern",-12.603464126586914],["▁Ox",-12.603602409362791],["▁decizie",-12.603676795959473],["REC",-12.603889465332031],["▁Mortgage",-12.60393238067627],["attributed",-12.603973388671877],["floor",-12.603992462158203],["▁Wichtig",-12.604207992553713],["enseignant",-12.604265213012695],["▁civilization",-12.604302406311035],["▁dispozitie",-12.60450553894043],["▁geographic",-12.604543685913086],["▁Kun",-12.604607582092283],["LIN",-12.604679107666016],["▁auzit",-12.604707717895508],["except",-12.604761123657228],["▁superbe",-12.604904174804688],["▁installé",-12.605000495910645],["▁Peninsula",-12.605154037475586],["▁norme",-12.605164527893066],["elul",-12.60517406463623],["▁Experten",-12.60525608062744],["expression",-12.605295181274414],["Christ",-12.605320930480955],["▁Fuel",-12.605369567871094],["▁muffin",-12.605485916137695],["▁lecteur",-12.605521202087402],["▁gifted",-12.605589866638184],["▁Japon",-12.605602264404297],["▁SSD",-12.60564422607422],["▁Calgary",-12.605765342712402],["▁hooked",-12.605876922607422],["▁Joan",-12.605896949768066],["▁tangible",-12.606083869934082],["FW",-12.606225967407228],["olli",-12.6062593460083],["▁Platinum",-12.60637664794922],["▁miniature",-12.606392860412598],["▁lump",-12.606608390808104],["ologische",-12.60689926147461],["▁Istanbul",-12.606987953186035],["▁Compar",-12.607060432434082],["tropic",-12.607256889343262],["KING",-12.607279777526855],["Präsident",-12.607297897338867],["▁fotografii",-12.607303619384766],["hoped",-12.607451438903809],["▁pâte",-12.607601165771484],["▁mercy",-12.60760498046875],["▁quiz",-12.607619285583496],["demonstrating",-12.607678413391112],["▁douce",-12.607832908630373],["▁Vest",-12.60784149169922],["▁Harvey",-12.6082181930542],["▁breit",-12.608227729797363],["▁Bereits",-12.608291625976562],["▁breakthrough",-12.608316421508787],["▁masterpiece",-12.608320236206056],["▁Chester",-12.60838794708252],["▁indiqué",-12.60845184326172],["hook",-12.60857105255127],["statutory",-12.608596801757812],["▁Direkt",-12.608617782592772],["▁specs",-12.608708381652832],["Drive",-12.608725547790527],["▁survivors",-12.608826637268066],["▁jackpot",-12.608840942382812],["▁garder",-12.608872413635254],["▁Geburtstag",-12.60887336730957],["145",-12.608963966369627],["▁Clay",-12.609028816223145],["▁WHO",-12.60906982421875],["▁Ellen",-12.609393119812012],["▁bonheur",-12.609440803527832],["▁hazards",-12.609440803527832],["▁Kaiser",-12.609488487243652],["▁tightly",-12.609506607055664],["Universitatea",-12.609529495239258],["▁rinse",-12.609533309936523],["▁passant",-12.60964012145996],["▁sânge",-12.609832763671877],["▁peuple",-12.60983657836914],["jungen",-12.609975814819336],["▁inappropriate",-12.610054969787598],["▁mitigate",-12.610066413879396],["MID",-12.610221862792969],["▁telecom",-12.610297203063965],["▁plaj",-12.610316276550291],["▁presupune",-12.610361099243164],["acco",-12.61038875579834],["expressing",-12.610654830932615],["▁Symphony",-12.61066722869873],["temperatur",-12.610710144042969],["▁activităţi",-12.610800743103027],["▁amended",-12.610847473144531],["▁rehab",-12.610909461975098],["▁sportiv",-12.611004829406738],["hotel",-12.611031532287598],["branche",-12.61103630065918],["▁Noch",-12.611079216003418],["▁1961",-12.611238479614258],["release",-12.61135959625244],["blaze",-12.61138153076172],["Adv",-12.61139965057373],["Line",-12.611671447753906],["▁financiare",-12.61184310913086],["▁chauffage",-12.611919403076172],["мо",-12.61192512512207],["schuhe",-12.612035751342772],["blé",-12.612040519714355],["▁Echo",-12.612468719482422],["▁remarks",-12.61253547668457],["scriu",-12.612629890441896],["Vir",-12.612701416015623],["War",-12.61271858215332],["atifs",-12.613006591796877],["RING",-12.613082885742188],["▁Instruction",-12.613150596618652],["▁verlassen",-12.613155364990234],["▁ergänz",-12.613234519958496],["▁Emil",-12.613248825073242],["▁empire",-12.613263130187988],["▁Einkauf",-12.613306999206545],["utigen",-12.613329887390137],["▁audition",-12.613390922546388],["travelled",-12.61347484588623],["ло",-12.613579750061035],["▁infinite",-12.613720893859863],["▁Lieblings",-12.613749504089355],["▁vân",-12.613754272460938],["▁spinning",-12.613778114318848],["converting",-12.614031791687012],["▁uncertain",-12.61415958404541],["restul",-12.614168167114258],["▁colourful",-12.61420726776123],["▁accountant",-12.614338874816896],["bourg",-12.614532470703123],["▁structuri",-12.614538192749023],["▁Booking",-12.61465835571289],["intéresse",-12.614683151245115],["▁coordinated",-12.614753723144531],["▁precaution",-12.61497688293457],["▁Cheese",-12.615015983581545],["▁surfing",-12.615192413330078],["▁souffr",-12.61524486541748],["▁Menu",-12.615447998046877],["▁arthritis",-12.615593910217283],["▁headphones",-12.615601539611816],["▁upgrading",-12.615602493286133],["▁apparel",-12.615653038024902],["▁Haushalt",-12.61572551727295],["▁Personally",-12.615815162658691],["▁insane",-12.61595058441162],["▁fonduri",-12.616083145141602],["▁entier",-12.616239547729492],["▁Herbst",-12.61626434326172],["▁cyclist",-12.616331100463867],["▁filmmaker",-12.616741180419922],["▁Portuguese",-12.616829872131348],["▁nominee",-12.616851806640623],["▁Yang",-12.616857528686523],["▁slate",-12.616943359375],["▁entièrement",-12.61697483062744],["▁Umgang",-12.61704921722412],["shifted",-12.617135047912598],["▁défaut",-12.617138862609863],["heiz",-12.617246627807615],["▁Seal",-12.617379188537598],["▁servicing",-12.617451667785645],["marketing",-12.617562294006348],["▁demandé",-12.617755889892578],["TING",-12.617841720581056],["▁modifier",-12.617907524108888],["lysis",-12.617966651916504],["▁suplimentare",-12.618117332458496],["OTHER",-12.618359565734863],["Graph",-12.618379592895508],["▁coincide",-12.618448257446287],["governed",-12.61859893798828],["▁locking",-12.618638038635254],["▁Properties",-12.618685722351074],["▁Panama",-12.61876392364502],["▁Coupe",-12.618846893310549],["songwriter",-12.618978500366213],["exhibited",-12.618988990783691],["▁semnificativ",-12.618995666503906],["▁purchaser",-12.619004249572754],["▁puff",-12.619097709655762],["Back",-12.619105339050291],["fragt",-12.61919116973877],["▁deputy",-12.619362831115724],["▁revien",-12.619556427001951],["▁Christine",-12.619558334350586],["▁Cities",-12.619573593139648],["▁Charakter",-12.61961555480957],["atteindre",-12.619625091552734],["▁fou",-12.619635581970217],["▁obligatoire",-12.619643211364746],["INA",-12.619791030883787],["etc",-12.6198148727417],["▁newborn",-12.620091438293455],["▁explicitly",-12.620116233825684],["simplest",-12.620203018188477],["▁plateforme",-12.62023639678955],["ordinate",-12.620291709899902],["displaying",-12.620346069335938],["▁messy",-12.620464324951172],["gespielt",-12.620466232299805],["▁electron",-12.62061882019043],["▁Dreh",-12.62079620361328],["▁ambient",-12.620976448059082],["340",-12.620979309082031],["▁directive",-12.62109375],["▁Vall",-12.621152877807615],["ookie",-12.621206283569336],["▁wasted",-12.621304512023926],["CIS",-12.621367454528809],["lude",-12.621378898620604],["rach",-12.621472358703612],["▁gasest",-12.62150764465332],["▁miros",-12.62150764465332],["transforming",-12.621536254882812],["▁Milwaukee",-12.621787071228027],["▁uncommon",-12.621789932250977],["▁tableau",-12.621841430664062],["geräte",-12.621952056884766],["ophil",-12.622139930725098],["▁Jeep",-12.62220287322998],["▁wreck",-12.622422218322754],["LAND",-12.622434616088867],["attach",-12.622566223144531],["▁Panther",-12.622634887695312],["9:30",-12.622777938842772],["▁induce",-12.622974395751951],["▁privest",-12.623006820678713],["Ident",-12.623047828674316],["▁illnesses",-12.623076438903809],["▁inhabitants",-12.623138427734377],["▁fehlen",-12.623357772827148],["obtenu",-12.623391151428224],["▁gegründet",-12.623655319213867],["ARA",-12.623711585998535],["3-2",-12.623835563659668],["▁milliards",-12.623968124389648],["▁Bü",-12.624001502990724],["▁angegeben",-12.624102592468262],["TUR",-12.624143600463867],["▁arab",-12.62416648864746],["▁Scientist",-12.624275207519531],["▁minut",-12.624394416809082],["▁beast",-12.624481201171877],["▁accidentally",-12.624573707580566],["WN",-12.624579429626465],["▁Ralph",-12.624588966369627],["hängt",-12.62462329864502],["▁Erik",-12.624639511108398],["▁différent",-12.624711990356444],["▁conformitate",-12.624842643737791],["thriving",-12.624900817871094],["▁Piece",-12.625123023986816],["plasm",-12.625152587890623],["▁erwarten",-12.62520980834961],["owski",-12.62523365020752],["prayed",-12.625293731689451],["three",-12.625542640686035],["▁soundtrack",-12.625651359558104],["guru",-12.625709533691406],["▁cracked",-12.625710487365724],["▁adh",-12.62582302093506],["▁maître",-12.625834465026855],["▁Oberfläche",-12.62585735321045],["▁crab",-12.625886917114258],["▁Foster",-12.625944137573242],["▁gemütlich",-12.626145362854004],["SIC",-12.626226425170898],["ième",-12.626298904418944],["▁Few",-12.626330375671388],["gérer",-12.626360893249512],["2006",-12.626456260681152],["cool",-12.626498222351074],["▁dispune",-12.626523971557615],["recevoir",-12.626577377319336],["▁Bak",-12.626585960388184],["▁steer",-12.62659740447998],["ICS",-12.626733779907228],["▁Brett",-12.626733779907228],["▁downside",-12.626751899719238],["▁residency",-12.62678050994873],["important",-12.626991271972656],["ubb",-12.627073287963867],["mony",-12.627259254455566],["▁leasing",-12.627341270446776],["▁Gir",-12.62735366821289],["▁Biology",-12.627364158630373],["▁Colin",-12.627463340759276],["▁complicat",-12.627775192260742],["▁regroup",-12.627899169921877],["SPA",-12.62795066833496],["▁Veranstaltungen",-12.627986907958984],["convicted",-12.628019332885742],["▁Wonderful",-12.628636360168455],["züge",-12.628799438476562],["yton",-12.628813743591309],["EMENT",-12.628887176513672],["▁bent",-12.62893009185791],["heben",-12.629231452941896],["▁Sustainable",-12.62926959991455],["▁Newcastle",-12.629276275634766],["mother",-12.629507064819336],["▁eighth",-12.629572868347168],["▁atmosfer",-12.629582405090332],["expériment",-12.629584312438965],["▁Interest",-12.629608154296877],["▁successes",-12.62964153289795],["▁preschool",-12.629802703857422],["▁Funeral",-12.629900932312012],["blast",-12.630083084106444],["▁dimensiuni",-12.630125999450684],["▁Dow",-12.630167007446287],["▁pulp",-12.63022518157959],["▁Heather",-12.630356788635254],["▁erstellen",-12.63044261932373],["locating",-12.630470275878906],["direct",-12.630475997924805],["▁tractor",-12.630494117736816],["growing",-12.630576133728027],["▁inventor",-12.630587577819824],["ASA",-12.63060188293457],["insta",-12.630732536315918],["yana",-12.63082504272461],["▁squash",-12.630839347839355],["▁Basketball",-12.630853652954102],["AMA",-12.631041526794434],["insel",-12.631093978881836],["▁Fisch",-12.631138801574709],["▁metaphor",-12.631221771240234],["TES",-12.631304740905762],["▁conduce",-12.631308555603027],["stehende",-12.631370544433594],["▁FAQ",-12.631475448608398],["▁bezeichnet",-12.631658554077148],["wendung",-12.631706237792969],["▁Commonwealth",-12.631776809692385],["▁bait",-12.631793975830078],["▁Umsetzung",-12.631834030151367],["▁Equi",-12.63206386566162],["▁validity",-12.632109642028809],["Off",-12.63222599029541],["▁produsul",-12.632314682006836],["▁sensory",-12.632363319396973],["▁Imperial",-12.632501602172852],["▁Dick",-12.632542610168455],["kampf",-12.632596969604492],["▁Arzt",-12.63267993927002],["▁Reason",-12.63267993927002],["ITS",-12.63270092010498],["URL",-12.632720947265623],["demonstrates",-12.632725715637209],["▁dépend",-12.632753372192385],["NAS",-12.632970809936523],["▁funcți",-12.633031845092772],["▁vulnerability",-12.633085250854492],["2.7",-12.633143424987791],["layered",-12.633152961730955],["escence",-12.633206367492676],["▁République",-12.633346557617188],["▁Lust",-12.633377075195312],["▁sute",-12.633381843566896],["▁autonomous",-12.633661270141602],["Biserica",-12.633662223815918],["▁Chuck",-12.633749961853027],["▁protéger",-12.6339750289917],["rrell",-12.634061813354492],["▁Schaden",-12.634062767028809],["prennent",-12.634100914001465],["maß",-12.6343412399292],["OV",-12.634453773498535],["▁Wake",-12.63450813293457],["produire",-12.634635925292969],["▁Elder",-12.63474941253662],["Max",-12.634839057922363],["▁Chemistry",-12.634918212890623],["▁gourmet",-12.634918212890623],["erri",-12.634967803955078],["ени",-12.635085105895996],["▁Gru",-12.635147094726562],["▁vorbit",-12.635408401489258],["▁precede",-12.635455131530762],["▁randomly",-12.635489463806152],["▁efecte",-12.63563060760498],["▁calatori",-12.635668754577637],["▁Poor",-12.635765075683594],["List",-12.635781288146973],["▁regula",-12.635964393615724],["▁organisé",-12.636028289794922],["Div",-12.63607692718506],["▁volunteering",-12.636423110961914],["▁horr",-12.636449813842772],["9.99",-12.636487007141112],["▁UPS",-12.636513710021973],["▁englez",-12.63652229309082],["▁Eden",-12.636523246765137],["GG",-12.63659954071045],["▁typing",-12.63664722442627],["Likewise",-12.636700630187988],["▁stabilize",-12.636737823486328],["physio",-12.636747360229492],["ми",-12.636785507202148],["▁protagonist",-12.636808395385742],["▁velvet",-12.636812210083008],["schrank",-12.63686180114746],["▁Allah",-12.63693618774414],["▁forefront",-12.636968612670898],["▁salaries",-12.637001037597656],["▁prediction",-12.637041091918944],["▁Advent",-12.637182235717772],["politik",-12.637280464172363],["▁Heimat",-12.63735008239746],["ducted",-12.637380599975586],["ASH",-12.637386322021484],["▁Mold",-12.637773513793944],["▁publi",-12.63784122467041],["▁Vil",-12.637892723083496],["▁stu",-12.637925148010254],["INTE",-12.638032913208008],["▁fave",-12.638151168823242],["▁grounded",-12.638175010681152],["▁Anything",-12.638184547424316],["vik",-12.63848114013672],["Bank",-12.63853645324707],["deserved",-12.638550758361816],["machen",-12.63874626159668],["▁rugged",-12.638751029968262],["▁Nest",-12.638901710510254],["▁profund",-12.639043807983398],["▁quantum",-12.639067649841309],["▁funcționa",-12.639118194580078],["klu",-12.639158248901367],["▁consulter",-12.63917350769043],["MED",-12.639286994934082],["▁câştig",-12.639334678649902],["▁săptămâni",-12.639334678649902],["questioned",-12.639517784118652],["▁Trop",-12.639530181884766],["▁convo",-12.639533042907717],["▁sparkling",-12.639533996582031],["▁specialise",-12.639566421508787],["▁pancake",-12.639726638793944],["habitude",-12.639727592468262],["phal",-12.640009880065918],["▁Roche",-12.640158653259276],["▁personalities",-12.640250205993652],["▁Venice",-12.640308380126951],["▁comerciale",-12.640379905700684],["▁wounded",-12.64075756072998],["▁oraş",-12.640864372253418],["▁Pepper",-12.64104461669922],["▁Tourist",-12.641094207763672],["▁Mull",-12.64116382598877],["▁dignity",-12.641234397888184],["▁Fixed",-12.641291618347168],["çant",-12.64130687713623],["▁spectator",-12.641402244567873],["▁somn",-12.641685485839844],["▁ständig",-12.641820907592772],["▁resilience",-12.64186668395996],["▁Malta",-12.642251014709473],["▁problemele",-12.642253875732422],["▁Martha",-12.642254829406738],["▁extern",-12.642267227172852],["embre",-12.642379760742188],["▁médical",-12.642526626586914],["fordern",-12.64256477355957],["nji",-12.642592430114746],["▁aboard",-12.642740249633787],["▁sidewalk",-12.642759323120115],["WIN",-12.642775535583496],["▁Bobby",-12.642842292785645],["▁umfangreiche",-12.642876625061035],["leid",-12.64292049407959],["▁compens",-12.642967224121094],["▁juge",-12.64299488067627],["gerufen",-12.64311408996582],["▁médicament",-12.64313507080078],["▁1918",-12.643155097961426],["▁blanche",-12.643163681030272],["▁pleasing",-12.643220901489258],["▁propria",-12.643471717834473],["ergebnisse",-12.643503189086914],["▁retrouv",-12.643571853637695],["urteil",-12.643592834472656],["▁Draft",-12.64361572265625],["▁concluzi",-12.643671035766602],["centralized",-12.643789291381836],["▁Hannah",-12.64382266998291],["grija",-12.64392375946045],["▁Exercise",-12.643972396850586],["RAL",-12.644001960754396],["creme",-12.64408016204834],["High",-12.644126892089844],["clude",-12.644131660461426],["Considering",-12.644208908081056],["▁Guarantee",-12.644404411315918],["▁cuptor",-12.644436836242676],["ivität",-12.64468002319336],["▁Southwest",-12.644882202148438],["▁vivant",-12.644890785217283],["Your",-12.64498519897461],["▁Stunde",-12.64500331878662],["▁Ethernet",-12.64504051208496],["angebote",-12.645078659057615],["▁Sage",-12.645271301269531],["▁Boeing",-12.64529514312744],["▁$300",-12.645381927490234],["2-4",-12.64546012878418],["▁nécessit",-12.645516395568848],["▁ferment",-12.645599365234377],["▁Anmeldung",-12.64567756652832],["▁exhausted",-12.645758628845217],["▁Schloss",-12.64577293395996],["▁Replacement",-12.645859718322754],["▁Aussi",-12.645933151245115],["jection",-12.646127700805664],["978",-12.64615535736084],["▁siège",-12.646258354187012],["crest",-12.646310806274414],["▁jumatate",-12.646312713623049],["effizient",-12.646317481994627],["▁colaborare",-12.6464262008667],["HQ",-12.646615028381348],["130",-12.646695137023926],["culaire",-12.646907806396484],["▁Jamaica",-12.646952629089355],["▁cardboard",-12.64731216430664],["▁technische",-12.64731502532959],["▁cereri",-12.647507667541504],["▁contradict",-12.647570610046388],["▁irrigation",-12.647586822509766],["Nume",-12.64765739440918],["▁Bier",-12.647714614868164],["▁livrare",-12.647903442382812],["▁reservoir",-12.647906303405762],["vâr",-12.648130416870115],["▁galben",-12.648213386535645],["▁Geneva",-12.648303985595703],["▁lightning",-12.648418426513672],["wished",-12.64842414855957],["▁Blind",-12.648481369018556],["Interested",-12.648499488830566],["▁Primări",-12.648627281188965],["anthropo",-12.648954391479492],["▁Transaction",-12.648961067199709],["▁marcat",-12.648971557617188],["▁gelegen",-12.649077415466309],["▁contemporain",-12.649182319641112],["▁politică",-12.649182319641112],["▁1948",-12.64928150177002],["▁Mik",-12.649287223815918],["▁preţ",-12.649310111999512],["moor",-12.64931297302246],["ANN",-12.649432182312012],["▁constructive",-12.649454116821287],["konzept",-12.649502754211426],["▁entendu",-12.649511337280272],["▁Genesis",-12.649541854858398],["arzt",-12.649581909179688],["▁Allgemein",-12.64970874786377],["▁Derby",-12.649725914001465],["Class",-12.649762153625488],["▁$12",-12.649770736694336],["▁Tube",-12.6498441696167],["▁Contribu",-12.649847030639648],["▁HAVE",-12.649860382080078],["▁oxide",-12.64986515045166],["▁producator",-12.649941444396973],["▁Bench",-12.650132179260254],["▁comprehend",-12.650139808654783],["▁Damen",-12.650494575500488],["▁Garant",-12.65056037902832],["▁disappointing",-12.650614738464355],["▁réalisée",-12.650693893432615],["▁comportement",-12.65072250366211],["▁clash",-12.650753021240234],["▁curry",-12.65076732635498],["▁Lebanon",-12.65078067779541],["▁Romaniei",-12.650784492492676],["▁reprise",-12.650840759277344],["▁perceive",-12.65095329284668],["▁weaknesses",-12.65101146697998],["▁aminti",-12.651057243347168],["▁Concern",-12.651103973388672],["shadow",-12.651310920715332],["▁basin",-12.651311874389648],["moral",-12.652063369750977],["▁Hughes",-12.652101516723633],["Psych",-12.652266502380373],["▁Lieferung",-12.65227222442627],["▁serrurier",-12.652379035949709],["ussi",-12.652386665344238],["▁timpului",-12.6524658203125],["üm",-12.652629852294922],["▁Vladimir",-12.652701377868652],["▁Jag",-12.65279483795166],["▁verific",-12.652849197387695],["▁Pru",-12.652894020080566],["▁Laut",-12.653285026550291],["ITA",-12.653287887573242],["usually",-12.653294563293455],["▁carrière",-12.65341854095459],["▁extracted",-12.653663635253906],["kultur",-12.653679847717283],["öpfe",-12.653932571411133],["▁rejection",-12.654016494750977],["▁Hydr",-12.654062271118164],["▁informaţii",-12.654098510742188],["▁tolerate",-12.654122352600098],["▁cinéma",-12.654302597045898],["traumatic",-12.654305458068848],["produkt",-12.65445041656494],["▁Contest",-12.654560089111328],["lotte",-12.654570579528809],["▁Pension",-12.65461254119873],["▁Advertising",-12.654623985290527],["▁payout",-12.654772758483888],["▁Amanda",-12.65481185913086],["Elect",-12.65485668182373],["▁interiorul",-12.654996871948242],["stay",-12.655348777770996],["▁feminine",-12.655352592468262],["▁întâmplă",-12.655437469482422],["▁insult",-12.65562915802002],["▁chocolat",-12.65567398071289],["▁noroc",-12.655750274658203],["▁centr",-12.655781745910645],["▁Bühne",-12.655858039855955],["mighty",-12.6558837890625],["▁Buddha",-12.655908584594728],["▁parental",-12.655997276306152],["storm",-12.656451225280762],["recurring",-12.6565523147583],["▁luxe",-12.656588554382324],["niște",-12.656728744506836],["cuit",-12.65683937072754],["▁ausgewählt",-12.656880378723145],["▁dumb",-12.657047271728516],["IPS",-12.657127380371094],["▁Thir",-12.65717887878418],["Definitely",-12.65719509124756],["▁hilarious",-12.65719509124756],["▁rainbow",-12.657231330871582],["▁Bravo",-12.657251358032228],["▁entstanden",-12.657259941101074],["itorul",-12.657269477844238],["▁prosperity",-12.657299041748049],["▁Bord",-12.657336235046388],["▁familiei",-12.657363891601562],["▁scade",-12.657425880432127],["wöhn",-12.657426834106444],["▁ingrediente",-12.65743637084961],["RAD",-12.657441139221191],["▁tăi",-12.657472610473633],["bours",-12.65747356414795],["ATI",-12.657540321350098],["▁Blake",-12.65761661529541],["▁Implement",-12.657712936401367],["▁Beziehung",-12.657838821411133],["finanz",-12.657953262329102],["intestin",-12.658513069152832],["ließen",-12.658535957336426],["▁récent",-12.658594131469728],["▁laminate",-12.658692359924316],["▁Hör",-12.65876579284668],["▁personnalisé",-12.658804893493652],["edel",-12.65890121459961],["▁advertisement",-12.658902168273926],["▁pinterest",-12.658921241760254],["185",-12.659058570861816],["identité",-12.65938949584961],["▁Brick",-12.659408569335938],["Glu",-12.65941047668457],["▁attendant",-12.659571647644045],["▁Flip",-12.65961456298828],["attracting",-12.659662246704102],["functional",-12.659703254699709],["conceived",-12.659772872924805],["▁summarize",-12.65977382659912],["adjusting",-12.659809112548828],["CAL",-12.660041809082031],["▁Operating",-12.660076141357422],["zzi",-12.66008472442627],["▁Rover",-12.6603364944458],["▁versuchen",-12.6603364944458],["▁articulate",-12.660600662231444],["▁privé",-12.660614013671877],["▁consequent",-12.660663604736328],["EAT",-12.660690307617188],["▁Marsh",-12.660696983337402],["▁teenage",-12.660717964172363],["▁Renaissance",-12.660740852355955],["▁furnizor",-12.660883903503418],["▁Desert",-12.660894393920898],["unicipiului",-12.66104793548584],["▁ulterior",-12.661065101623535],["▁Ebene",-12.661280632019045],["▁monkey",-12.661351203918455],["▁enclosed",-12.661389350891112],["▁profitability",-12.66139030456543],["▁Evolution",-12.661628723144531],["▁adica",-12.661670684814451],["▁Structure",-12.661709785461426],["▁primer",-12.661761283874512],["▁asigură",-12.662001609802246],["▁Manuel",-12.662220001220703],["polita",-12.662267684936523],["▁Portable",-12.662286758422852],["fecți",-12.662413597106934],["▁obscure",-12.662424087524414],["▁Atlas",-12.662436485290527],["fährt",-12.662679672241213],["▁clinician",-12.662837982177734],["fuhr",-12.66310977935791],["▁matériaux",-12.663113594055176],["écrire",-12.663142204284668],["▁suspicious",-12.6632080078125],["pore",-12.663263320922852],["▁outdated",-12.663304328918455],["▁Mädchen",-12.663328170776367],["rcis",-12.66342067718506],["nicht",-12.663463592529297],["holding",-12.663561820983888],["▁heavier",-12.66366195678711],["ezimal",-12.663960456848145],["▁silicone",-12.66397476196289],["punerea",-12.664108276367188],["▁begeistert",-12.66423797607422],["2004",-12.664283752441406],["▁predecessor",-12.664299011230469],["▁overlap",-12.664369583129885],["▁digging",-12.664376258850098],["▁Upgrade",-12.66440773010254],["▁interesat",-12.664543151855469],["▁spinach",-12.66456127166748],["▁politice",-12.664626121520996],["activity",-12.664831161499023],["▁Rating",-12.66484546661377],["▁serrure",-12.664846420288086],["▁tânăr",-12.664959907531738],["▁WHAT",-12.66497039794922],["▁railroad",-12.664989471435549],["▁avid",-12.665081024169922],["▁Sophie",-12.665084838867188],["preferably",-12.665173530578612],["▁Fourth",-12.665431022644045],["kommenden",-12.665452003479004],["QUI",-12.665478706359863],["lohn",-12.665505409240724],["▁promis",-12.665611267089844],["▁shrub",-12.665621757507324],["nummer",-12.66579818725586],["▁dinosaur",-12.665922164916992],["▁Lucky",-12.665937423706056],["relates",-12.666038513183594],["▁FROM",-12.666049003601074],["▁racism",-12.66610336303711],["physical",-12.66611385345459],["alcoholic",-12.666119575500488],["▁reef",-12.666126251220703],["▁centru",-12.66618824005127],["université",-12.66622257232666],["▁visage",-12.666232109069824],["ităţile",-12.666253089904783],["▁Gent",-12.666345596313477],["zugeben",-12.66643238067627],["▁paradise",-12.66646957397461],["fuel",-12.666505813598633],["ografie",-12.666568756103516],["▁TIP",-12.666730880737305],["schreibung",-12.66683292388916],["▁bark",-12.666840553283691],["accéder",-12.666895866394045],["▁contamination",-12.666937828063965],["▁swelling",-12.666950225830078],["▁optimistic",-12.666974067687988],["▁differential",-12.667015075683594],["▁Arad",-12.667030334472656],["toxins",-12.667075157165527],["▁übernehmen",-12.667091369628906],["▁anime",-12.667143821716309],["actuel",-12.667462348937988],["▁bientôt",-12.667525291442873],["▁Patio",-12.66761302947998],["▁baisse",-12.667630195617676],["▁sprint",-12.66773796081543],["▁bilden",-12.66811466217041],["VAL",-12.668132781982422],["▁réflexion",-12.668220520019531],["hopping",-12.668242454528809],["genesis",-12.66834545135498],["achtet",-12.668435096740724],["▁chinois",-12.66852569580078],["▁dezvoltat",-12.668795585632324],["arguably",-12.66884708404541],["▁Protocol",-12.66884708404541],["▁Sterling",-12.668862342834473],["▁Cave",-12.668975830078123],["▁Condo",-12.66921615600586],["▁erhöht",-12.669235229492188],["typische",-12.669416427612305],["merged",-12.669439315795898],["▁accumulation",-12.669560432434082],["sicherlich",-12.669569969177246],["kW",-12.669620513916016],["▁schriftlich",-12.669757843017578],["▁Vorteile",-12.669918060302734],["▁Northeast",-12.669922828674316],["frunt",-12.669941902160645],["istik",-12.670003890991213],["erster",-12.670035362243652],["▁Assistance",-12.670150756835938],["▁Fantastic",-12.670150756835938],["▁bărbat",-12.670150756835938],["▁Grinding",-12.670151710510254],["▁diffusion",-12.670161247253418],["▁vreun",-12.670331954956056],["▁Butler",-12.670342445373535],["▁Cherry",-12.670352935791016],["▁visualization",-12.670540809631348],["Paket",-12.670572280883787],["blin",-12.670619010925291],["▁cadou",-12.670705795288086],["▁Celtic",-12.670754432678224],["alegerea",-12.670894622802734],["▁Dorf",-12.671035766601562],["▁Noir",-12.671185493469238],["payment",-12.67126750946045],["▁Caroline",-12.671334266662598],["▁Berry",-12.671359062194824],["▁professeur",-12.67147445678711],["▁gratuitement",-12.671503067016602],["Suntem",-12.671523094177246],["IAN",-12.671738624572754],["▁fingerprint",-12.671780586242676],["▁controversy",-12.671781539916992],["▁fled",-12.671875],["▁Pokémon",-12.67210865020752],["excluding",-12.67211627960205],["▁friction",-12.672161102294922],["therapie",-12.67225456237793],["/7",-12.672398567199709],["▁designation",-12.672442436218262],["▁Belgia",-12.672704696655272],["▁cursuri",-12.672836303710938],["model",-12.672840118408203],["super",-12.672987937927246],["▁réduit",-12.673028945922852],["▁implicit",-12.673177719116213],["athlon",-12.673227310180664],["anniversaire",-12.673416137695312],["▁teaspoon",-12.673416137695312],["▁corrosion",-12.673418998718262],["▁überzeugt",-12.673418998718262],["▁flawless",-12.673421859741213],["▁vegetation",-12.673477172851562],["▁iarna",-12.673507690429688],["▁psychologist",-12.673591613769531],["hora",-12.673625946044922],["gab",-12.67387580871582],["▁soothing",-12.674084663391112],["▁stew",-12.674141883850098],["▁wager",-12.674172401428224],["▁tinere",-12.674322128295898],["▁baut",-12.674323081970217],["ecunoscut",-12.674352645874023],["gearbeitet",-12.67442226409912],["▁functi",-12.674480438232422],["▁dürfte",-12.674724578857422],["▁média",-12.674724578857422],["▁campanie",-12.67475700378418],["▁Distribu",-12.674817085266112],["▁mentoring",-12.674959182739258],["▁criz",-12.675020217895508],["findest",-12.675056457519531],["▁Vasile",-12.675058364868164],["▁compassionate",-12.675115585327148],["▁Tudor",-12.675140380859377],["▁flare",-12.675260543823242],["intreaga",-12.675283432006836],["gaz",-12.6753511428833],["▁porcelain",-12.675379753112791],["▁expedition",-12.67552089691162],["▁Azure",-12.67553997039795],["räumen",-12.675549507141112],["eiro",-12.675567626953123],["variante",-12.675804138183594],["▁Lucy",-12.675825119018556],["ôle",-12.675909996032717],["▁revenir",-12.67602252960205],["▁stained",-12.676040649414062],["▁falsch",-12.676166534423828],["▁incorpor",-12.676166534423828],["merkt",-12.676187515258787],["▁achten",-12.6762056350708],["▁hello",-12.67629051208496],["selben",-12.676422119140623],["ifty",-12.676525115966797],["▁Feier",-12.67653751373291],["1.000",-12.676557540893556],["▁Patch",-12.676583290100098],["peptid",-12.676846504211426],["▁recovering",-12.676898956298828],["Symptom",-12.677020072937012],["▁Auckland",-12.677020072937012],["▁retrieve",-12.677328109741213],["▁800-",-12.67733097076416],["schlagen",-12.677473068237305],["▁lourd",-12.677562713623049],["▁Purple",-12.67760181427002],["▁mittels",-12.677776336669922],["▁Düsseldorf",-12.67800521850586],["▁getaway",-12.67803955078125],["▁Cedar",-12.678061485290527],["▁Function",-12.678241729736328],["▁bizarre",-12.67833423614502],["4.3",-12.67849063873291],["▁fundraiser",-12.67866325378418],["geared",-12.678780555725098],["▁privée",-12.678781509399414],["▁Bonjour",-12.67894458770752],["Gar",-12.67895793914795],["▁Lloyd",-12.678991317749023],["▁Reinigung",-12.6790132522583],["▁Geno",-12.679155349731444],["▁Teilnahme",-12.67919635772705],["pian",-12.679362297058104],["sammelt",-12.679368019104004],["Pad",-12.679755210876465],["▁Troy",-12.67976188659668],["HG",-12.679943084716797],["▁klein",-12.679962158203123],["▁lettuce",-12.679978370666504],["▁patrimoine",-12.679978370666504],["▁cooker",-12.680055618286133],["▁accesibil",-12.680137634277344],["▁Spray",-12.680201530456545],["▁negotiation",-12.68047046661377],["▁jewel",-12.680480003356934],["▁dynamique",-12.68063735961914],["▁plastique",-12.68067741394043],["▁Limo",-12.680682182312012],["▁Funk",-12.68069076538086],["▁omului",-12.680702209472656],["title",-12.680768013000488],["curved",-12.68082046508789],["▁Lemon",-12.680851936340332],["förder",-12.68089199066162],["▁bewusst",-12.681112289428713],["inevitably",-12.681296348571776],["▁derivative",-12.681297302246094],["2:30",-12.681300163269045],["komfort",-12.68130588531494],["original",-12.681480407714844],["sanct",-12.681540489196776],["▁matte",-12.6815767288208],["empêche",-12.681628227233888],["▁jucător",-12.681634902954102],["▁attentive",-12.681640625],["▁recunoscut",-12.681674003601074],["▁Brush",-12.68167495727539],["▁consommateur",-12.68183422088623],["érence",-12.682063102722168],["typical",-12.682084083557127],["strategie",-12.682205200195312],["Effekt",-12.682290077209473],["▁Alcohol",-12.682292938232422],["oji",-12.682333946228027],["▁ruler",-12.682357788085938],["▁Norwegian",-12.682615280151367],["▁PlayStation",-12.682615280151367],["▁Hook",-12.682747840881348],["▁viewpoint",-12.682759284973145],["THER",-12.682841300964355],["420",-12.682888984680176],["Consequently",-12.68294620513916],["▁entschieden",-12.68294620513916],["▁Trag",-12.68295669555664],["▁Dawn",-12.683003425598145],["▁fuss",-12.68301773071289],["*****",-12.683040618896484],["▁Bullet",-12.683140754699709],["CAM",-12.683155059814451],["▁wonderfully",-12.683201789855955],["▁parlamentar",-12.683263778686523],["▁geometric",-12.683307647705078],["talement",-12.683321952819824],["/2018",-12.68357753753662],["▁oversight",-12.684036254882812],["kindly",-12.684080123901367],["therm",-12.68430519104004],["▁treaba",-12.6846342086792],["▁Trim",-12.68471908569336],["▁intelege",-12.684842109680176],["cino",-12.685032844543455],["▁straw",-12.68508529663086],["Tru",-12.685251235961914],["▁Television",-12.68530559539795],["Trader",-12.68538761138916],["▁Passion",-12.685394287109377],["rescu",-12.685622215270996],["Nicol",-12.685635566711426],["luj",-12.685805320739746],["▁mijloace",-12.685921669006348],["▁Removal",-12.685922622680664],["▁1944",-12.686034202575684],["▁shortcut",-12.686159133911133],["▁Fett",-12.68625831604004],["largement",-12.686371803283691],["▁altern",-12.686446189880373],["▁cleansing",-12.686562538146973],["▁Qatar",-12.686692237854004],["▁Ceci",-12.686826705932615],["▁weave",-12.686848640441896],["schmerz",-12.686878204345703],["▁dots",-12.686888694763184],["Télécharger",-12.68691635131836],["▁Conduct",-12.686944007873535],["bekannten",-12.687325477600098],["▁lungime",-12.687344551086426],["▁Ferrari",-12.687390327453612],["▁totusi",-12.68760585784912],["▁Anniversary",-12.687911033630373],["▁wilderness",-12.687911987304688],["▁Christoph",-12.687939643859863],["▁Nikon",-12.688112258911133],["▁Digi",-12.68818473815918],["▁Blumen",-12.688190460205078],["▁altul",-12.688249588012695],["▁Parish",-12.688321113586426],["czy",-12.688393592834473],["▁temper",-12.688401222229004],["▁Powder",-12.688576698303224],["▁Arnold",-12.68857765197754],["capacitatea",-12.688687324523926],["nderungen",-12.688787460327148],["▁utilization",-12.688859939575195],["99%",-12.688942909240724],["▁Fear",-12.689099311828612],["JE",-12.689165115356444],["▁Simpson",-12.689239501953123],["▁Podcast",-12.68924617767334],["▁Cardinal",-12.689290046691896],["▁Distribution",-12.689315795898438],["▁Drawing",-12.689373970031738],["▁tint",-12.689412117004396],["▁hran",-12.68945598602295],["▁Slide",-12.68960189819336],["▁Vertrauen",-12.689654350280762],["cloth",-12.68971061706543],["▁redirect",-12.68972873687744],["126",-12.689842224121094],["▁constituie",-12.68985652923584],["Mai",-12.690070152282717],["▁idol",-12.690088272094728],["▁tehnice",-12.690163612365724],["dip",-12.690393447875977],["▁soldier",-12.690400123596191],["▁Ordin",-12.690409660339355],["wobe",-12.69050407409668],["▁Brent",-12.69058895111084],["▁Sudan",-12.690597534179688],["6000",-12.690619468688965],["turism",-12.690689086914062],["▁Rocky",-12.690744400024414],["naming",-12.69092082977295],["▁entrepreneurial",-12.690925598144531],["hearted",-12.690962791442873],["ayne",-12.69097900390625],["▁hover",-12.691081047058104],["▁skull",-12.691279411315918],["▁tribal",-12.691407203674316],["▁crafting",-12.691543579101562],["bewertungen",-12.691569328308104],["▁decizii",-12.691625595092772],["obwohl",-12.691655158996582],["▁compromised",-12.691875457763672],["▁quelqu",-12.69195556640625],["▁Hilton",-12.692075729370115],["▁maturity",-12.692095756530762],["gelesen",-12.692100524902344],["▁harbor",-12.69210433959961],["▁maple",-12.692326545715332],["▁développ",-12.6924409866333],["▁Nobody",-12.692517280578612],["équipement",-12.69255542755127],["121",-12.69274616241455],["140",-12.692827224731444],["▁artistes",-12.692914962768556],["▁depune",-12.692941665649414],["▁erase",-12.693129539489746],["▁erzählt",-12.693197250366213],["▁Hyundai",-12.69323444366455],["▁impairment",-12.69323444366455],["▁conving",-12.693279266357422],["chasing",-12.693426132202148],["▁Claus",-12.693438529968262],["▁adaptée",-12.693687438964844],["▁Raz",-12.693740844726562],["rugs",-12.693796157836914],["▁urme",-12.69387435913086],["Nonetheless",-12.693902015686035],["▁Cemetery",-12.693902969360352],["umps",-12.693906784057615],["ACA",-12.694003105163574],["▁perioade",-12.694235801696776],["▁slogan",-12.694263458251951],["▁downward",-12.69444179534912],["eidig",-12.694446563720703],["RAC",-12.69444751739502],["▁inaugur",-12.694496154785156],["се",-12.694588661193848],["▁înțeleg",-12.694608688354492],["▁hopeful",-12.694635391235352],["▁customization",-12.6946439743042],["▁prisoners",-12.694708824157717],["▁Rau",-12.695270538330078],["▁Pitt",-12.695389747619627],["ături",-12.695542335510254],["▁metabolic",-12.695842742919922],["▁Zach",-12.695868492126465],["▁umfassende",-12.695914268493652],["▁révél",-12.695950508117676],["131",-12.696052551269531],["ismului",-12.696062088012695],["▁Sac",-12.69607639312744],["efficacité",-12.69624137878418],["cruci",-12.69625473022461],["bisschen",-12.69632339477539],["▁Oster",-12.696324348449709],["lowered",-12.6964693069458],["▁Ausland",-12.69674015045166],["▁Pub",-12.696794509887695],["▁Marseille",-12.696925163269045],["▁Charter",-12.696959495544434],["howcasing",-12.697010040283203],["risti",-12.6971435546875],["▁thermostat",-12.697151184082031],["▁Clin",-12.697233200073242],["▁entsteht",-12.697246551513672],["Choosing",-12.697248458862305],["▁Schmerz",-12.697284698486328],["▁Till",-12.697307586669922],["▁Polo",-12.697399139404297],["▁proceduri",-12.697402000427246],["▁Believe",-12.697444915771484],["▁playful",-12.697514533996582],["▁verändert",-12.697588920593262],["▁pairing",-12.697654724121094],["MAG",-12.69784927368164],["leiste",-12.69788932800293],["▁testimonial",-12.697916030883787],["▁Economy",-12.697916984558104],["▁Wechsel",-12.697918891906738],["wirkung",-12.69801139831543],["▁exceeded",-12.698030471801758],["South",-12.698067665100098],["create",-12.69822120666504],["▁davantage",-12.698270797729492],["Log",-12.69831657409668],["▁irregular",-12.69858741760254],["VB",-12.698691368103027],["▁Rö",-12.698741912841797],["▁intreb",-12.698881149291992],["▁penser",-12.698920249938965],["▁déclaré",-12.698923110961914],["▁Tommy",-12.699026107788086],["2,500",-12.699163436889648],["▁Uganda",-12.699260711669922],["contacting",-12.699445724487305],["▁apreciat",-12.699485778808594],["▁beginnen",-12.6995210647583],["▁Gain",-12.699580192565918],["Office",-12.69969654083252],["ermittlung",-12.699710845947266],["▁Admission",-12.699727058410645],["▁Earl",-12.6997652053833],["▁Aviation",-12.699833869934082],["▁apologize",-12.699929237365724],["▁enclosure",-12.699929237365724],["▁Lack",-12.69998836517334],["wife",-12.699995994567873],["▁rotating",-12.700016975402832],["▁hergestellt",-12.700020790100098],["▁repository",-12.70002269744873],["TK",-12.700149536132812],["▁lectur",-12.700190544128418],["▁reflex",-12.700286865234377],["▁Harmon",-12.700401306152344],["▁vrem",-12.700479507446287],["▁Strange",-12.70055103302002],["▁champagne",-12.700615882873535],["▁oscil",-12.700647354125977],["sensitive",-12.700677871704102],["▁Sheriff",-12.700841903686523],["PRES",-12.700956344604492],["▁vow",-12.70123291015625],["▁dioxide",-12.701276779174805],["ен",-12.701374053955078],["▁corpului",-12.701376914978027],["▁prevăzut",-12.70160961151123],["India",-12.701827049255373],["hausse",-12.70189094543457],["▁clienți",-12.70195770263672],["▁entour",-12.70202350616455],["▁Sharp",-12.70209789276123],["▁teatru",-12.702285766601562],["▁Grow",-12.702327728271484],["▁caravan",-12.70234203338623],["▁sieben",-12.702420234680176],["▁cunosc",-12.702502250671388],["Bereichen",-12.702527046203612],["▁Benutzer",-12.702619552612305],["▁Ethiopia",-12.702619552612305],["▁Physics",-12.702619552612305],["preserving",-12.70263385772705],["ал",-12.702712059020996],["▁aerial",-12.70272159576416],["▁nouvel",-12.702741622924805],["▁stamped",-12.702954292297363],["▁inaugural",-12.702970504760742],["▁medicinal",-12.702999114990234],["Quite",-12.703028678894045],["accumulated",-12.703165054321287],["register",-12.703271865844728],["▁Falcon",-12.70327377319336],["▁boiling",-12.703301429748535],["▁advertised",-12.703339576721191],["collect",-12.703362464904783],["albeit",-12.703418731689451],["▁Organis",-12.703473091125488],["luate",-12.703536033630373],["▁préféré",-12.70369815826416],["▁frumoasa",-12.703968048095703],["▁truc",-12.704092979431152],["▁Fä",-12.70415496826172],["▁dome",-12.704180717468262],["Mobile",-12.704191207885742],["▁redeem",-12.704198837280272],["IONS",-12.70422077178955],["▁țări",-12.704235076904297],["▁singular",-12.704385757446287],["▁livestock",-12.704425811767578],["▁démont",-12.704427719116213],["clés",-12.704527854919434],["music",-12.704561233520508],["▁explicat",-12.704602241516112],["▁Fellowship",-12.704703330993652],["▁electrode",-12.704760551452637],["129",-12.70497703552246],["▁Rescue",-12.704983711242676],["▁Rocket",-12.705159187316896],["OSE",-12.70530128479004],["▁Sacramento",-12.705317497253418],["▁Haiti",-12.705357551574709],["▁Erwachsene",-12.70539093017578],["▁Terminal",-12.70541000366211],["URI",-12.705453872680664],["▁Rural",-12.70549201965332],["▁achizitiona",-12.70552921295166],["▁identifiable",-12.705655097961426],["▁gekauft",-12.705659866333008],["▁improper",-12.705673217773438],["lashes",-12.705751419067385],["vorbim",-12.705751419067385],["▁hinder",-12.705862045288086],["▁Grenz",-12.705878257751465],["Nav",-12.705955505371094],["alimentation",-12.705972671508787],["▁Cottage",-12.7059965133667],["▁nötig",-12.70619773864746],["▁cuprinde",-12.70622444152832],["session",-12.706256866455078],["▁Separat",-12.70634651184082],["▁besuchen",-12.706672668457031],["▁noodles",-12.706684112548828],["▁ballet",-12.70669651031494],["WG",-12.706731796264648],["▁Duty",-12.706871032714844],["▁porc",-12.706944465637209],["▁booster",-12.70698356628418],["galerie",-12.707056045532228],["▁Lance",-12.707119941711426],["▁déplac",-12.707178115844728],["▁rugby",-12.707240104675291],["▁upholstery",-12.707345962524414],["▁bustl",-12.70736312866211],["▁Dealer",-12.70740032196045],["▁genome",-12.707414627075195],["▁citizenship",-12.70746612548828],["rora",-12.707515716552734],["ARK",-12.707776069641112],["▁Semi",-12.707820892333984],["▁Improvement",-12.707892417907717],["▁negru",-12.708142280578612],["▁Bruxelles",-12.70836067199707],["flüge",-12.70837688446045],["▁Technique",-12.708392143249512],["▁Obst",-12.708413124084473],["2020",-12.708560943603516],["▁gek",-12.708593368530272],["▁drepturi",-12.708600997924805],["▁Logan",-12.708605766296388],["gelöst",-12.70863151550293],["▁grandparents",-12.708702087402344],["phin",-12.708950996398926],["▁dwell",-12.70903778076172],["▁Nobel",-12.709151268005373],["dial",-12.70927906036377],["▁spontan",-12.709344863891602],["advancing",-12.70937728881836],["starring",-12.70947551727295],["▁astea",-12.709498405456545],["igueur",-12.709638595581056],["▁Ancient",-12.70970058441162],["filter",-12.70971965789795],["Doar",-12.709758758544922],["▁Workers",-12.709759712219238],["Certainly",-12.709906578063965],["▁commencé",-12.709914207458496],["▁zipper",-12.710001945495604],["▁Selection",-12.710070610046388],["▁succ",-12.710280418395996],["headed",-12.710345268249512],["RIA",-12.710350036621094],["▁papa",-12.710366249084473],["▁profesionale",-12.710394859313965],["▁Zeichen",-12.710402488708496],["▁artisans",-12.710489273071287],["▁Geist",-12.710585594177246],["practic",-12.710741996765137],["▁ministrul",-12.71076488494873],["viens",-12.710912704467772],["prezintă",-12.710919380187988],["Integrated",-12.710981369018556],["▁rooftop",-12.710989952087402],["▁successor",-12.710991859436035],["OTO",-12.711012840270996],["liés",-12.711027145385742],["▁Diver",-12.71121597290039],["Specifically",-12.711297988891602],["▁calibr",-12.711301803588867],["KK",-12.711341857910156],["▁défense",-12.711414337158203],["▁english",-12.711414337158203],["verbrauch",-12.711418151855469],["▁attire",-12.711433410644531],["▁Recipe",-12.711441040039062],["équilibre",-12.71145725250244],["accumul",-12.71157169342041],["▁financement",-12.71169662475586],["rij",-12.711962699890137],["▁prince",-12.711999893188477],["▁préparer",-12.7120361328125],["surviving",-12.71211051940918],["operation",-12.712233543395996],["▁judet",-12.71242904663086],["▁Verantwortung",-12.71243381500244],["▁Vinyl",-12.712536811828612],["DEN",-12.712584495544434],["▁Tail",-12.712589263916016],["yearly",-12.712590217590332],["▁comisi",-12.712613105773926],["lava",-12.71261978149414],["▁succession",-12.71264934539795],["▁Whisk",-12.713030815124512],["▁precizat",-12.713096618652344],["▁unmittelbar",-12.713117599487305],["ICH",-12.713139533996582],["▁atteint",-12.713199615478516],["▁hometown",-12.713268280029297],["▁Zip",-12.71328353881836],["▁Weekly",-12.71336841583252],["▁crashes",-12.713401794433594],["▁Turbo",-12.713421821594238],["▁susține",-12.713468551635742],["▁Venus",-12.713587760925291],["▁finalement",-12.713595390319824],["rewarded",-12.713693618774414],["▁principau",-12.713899612426758],["▁régional",-12.713979721069336],["▁1958",-12.714178085327148],["▁Musical",-12.714189529418944],["▁stylist",-12.714251518249512],["cetate",-12.714282035827637],["gorge",-12.71433162689209],["▁espresso",-12.71449375152588],["überall",-12.714576721191406],["▁NHL",-12.714593887329102],["▁Dock",-12.71472454071045],["▁mosquito",-12.71481704711914],["▁forthcoming",-12.714852333068848],["▁Visitors",-12.714881896972656],["kro",-12.714882850646973],["_______",-12.715048789978027],["▁STEM",-12.715105056762695],["9.5",-12.71514129638672],["accompagne",-12.715177536010742],["▁Trick",-12.715202331542969],["▁endorsement",-12.71540069580078],["▁amplifier",-12.715498924255373],["▁malicious",-12.715499877929688],["▁roam",-12.71552848815918],["▁kennt",-12.715635299682615],["Connor",-12.715690612792969],["▁dysfunction",-12.715828895568848],["▁zuverlässig",-12.715840339660645],["▁corpul",-12.71595573425293],["▁boule",-12.715967178344728],["otti",-12.715991973876951],["440",-12.716050148010254],["▁mimic",-12.716056823730469],["farben",-12.716129302978516],["▁Wagner",-12.716214179992676],["Kom",-12.7162504196167],["▁miteinander",-12.716269493103027],["▁String",-12.716296195983888],["▁Ellis",-12.716313362121582],["▁Perth",-12.716337203979492],["▁temperatura",-12.716381072998049],["umbling",-12.716397285461426],["▁Medizin",-12.716554641723633],["▁KY",-12.71660327911377],["apei",-12.716642379760742],["counter",-12.716647148132324],["strich",-12.71665096282959],["▁Între",-12.716652870178224],["▁Cliff",-12.716785430908203],["▁foreclosure",-12.716864585876465],["................",-12.716878890991213],["Clearly",-12.717028617858888],["AJ",-12.71705722808838],["ndro",-12.717180252075195],["▁Arsenal",-12.717206001281738],["▁Recherche",-12.71721649169922],["Guests",-12.717225074768066],["▁besucht",-12.717242240905762],["wissen",-12.717266082763672],["fekt",-12.717414855957031],["hottest",-12.717414855957031],["▁Tomorrow",-12.717547416687012],["▁Signature",-12.717557907104492],["127",-12.717583656311035],["▁competence",-12.71766471862793],["Einige",-12.717686653137209],["patented",-12.71782112121582],["▁Exhibition",-12.717889785766602],["▁verbessern",-12.717889785766602],["▁Garcia",-12.718043327331545],["▁inquire",-12.718278884887695],["coping",-12.718353271484377],["▁linguri",-12.71842098236084],["▁trivia",-12.718433380126951],["▁începutul",-12.71848964691162],["▁parteneriat",-12.7186279296875],["tagen",-12.718636512756348],["▁engagé",-12.718916893005373],["▁chalk",-12.718944549560549],["▁fashionable",-12.719416618347168],["0.8",-12.719635009765623],["▁sticker",-12.719751358032228],["▁desperately",-12.719765663146973],["höhe",-12.719903945922852],["▁fericire",-12.71994400024414],["évaluation",-12.719948768615724],["▁Divide",-12.719959259033203],["▁indulge",-12.719979286193848],["fett",-12.720014572143556],["▁communal",-12.72017765045166],["▁mindful",-12.720187187194824],["dauert",-12.720192909240724],["▁veille",-12.720263481140137],["▁vér",-12.720330238342283],["▁Baseball",-12.720373153686523],["▁succeeded",-12.720418930053713],["▁Terrasse",-12.720420837402344],["irgend",-12.720500946044922],["▁Munich",-12.720556259155272],["weisung",-12.72067642211914],["metre",-12.720916748046877],["▁Raymond",-12.72101593017578],["▁chute",-12.72102165222168],["▁Accounting",-12.721075057983398],["▁pantry",-12.72112274169922],["▁underwater",-12.721181869506836],["ARI",-12.72122287750244],["lowed",-12.721245765686035],["numbered",-12.721430778503418],["REN",-12.72148609161377],["▁industriel",-12.721489906311035],["wäh",-12.721531867980955],["kenntnis",-12.721631050109863],["▁govern",-12.721635818481444],["strained",-12.721661567687988],["▁rythme",-12.721689224243164],["ин",-12.72169303894043],["▁burner",-12.721723556518556],["▁zählt",-12.721790313720703],["▁verte",-12.721883773803713],["▁Catalog",-12.721896171569824],["▁Bruno",-12.721988677978516],["0.7",-12.721997261047363],["▁litig",-12.72207260131836],["▁greet",-12.722129821777344],["▁stool",-12.722393035888672],["gression",-12.722457885742188],["▁Klassen",-12.722491264343262],["▁neon",-12.722661018371582],["▁Tall",-12.722734451293944],["▁satin",-12.722895622253418],["▁Bend",-12.722915649414062],["▁soluţi",-12.723077774047852],["▁styl",-12.723196983337402],["▁Siri",-12.723358154296877],["▁Sanders",-12.723464012145996],["▁spike",-12.723499298095703],["pinion",-12.723854064941406],["▁purta",-12.724122047424316],["CARE",-12.724224090576172],["▁creştere",-12.72431182861328],["▁fry",-12.724374771118164],["▁Schweizer",-12.724400520324709],["durchschnittlich",-12.724411010742188],["celaşi",-12.724446296691896],["▁deceased",-12.724474906921388],["▁Nerv",-12.724668502807615],["2-2",-12.7247314453125],["▁Stahl",-12.724753379821776],["▁workload",-12.724834442138672],["erhielt",-12.724984169006348],["▁hypothesis",-12.725103378295898],["bib",-12.725110054016112],["▁ţară",-12.725116729736328],["vaut",-12.725122451782228],["prehensi",-12.725184440612791],["▁Offering",-12.72518825531006],["▁dislike",-12.725252151489258],["▁firewall",-12.725252151489258],["mania",-12.725255966186523],["195",-12.725278854370115],["▁Champ",-12.725324630737305],["▁philosophical",-12.725343704223633],["länge",-12.72553539276123],["advisable",-12.725785255432127],["negotiating",-12.725785255432127],["Providing",-12.725791931152344],["▁1959",-12.725801467895508],["▁spyware",-12.725831031799316],["sharing",-12.725837707519531],["▁prévoi",-12.725905418395996],["▁jaune",-12.7260103225708],["schoss",-12.726028442382812],["▁obține",-12.726129531860352],["▁attraktiv",-12.726489067077637],["gemeinschaft",-12.7265043258667],["BV",-12.726505279541016],["Top",-12.726617813110352],["▁Sharon",-12.726625442504885],["bok",-12.726675033569336],["▁résist",-12.726811408996582],["Napoca",-12.72682285308838],["▁Uncategorized",-12.726898193359377],["▁trustee",-12.726936340332031],["▁remise",-12.727025985717772],["▁aştept",-12.727165222167969],["▁allergic",-12.727206230163574],["èvre",-12.727211952209473],["LAR",-12.72734546661377],["1.9",-12.727497100830078],["▁outbreak",-12.727520942687988],["▁trocken",-12.727568626403809],["▁laughter",-12.727724075317385],["▁Attend",-12.727785110473633],["jung",-12.727822303771973],["racking",-12.727934837341309],["ORS",-12.728178024291992],["▁rasp",-12.728527069091797],["VF",-12.728551864624023],["▁Tamil",-12.72860050201416],["124",-12.728602409362791],["▁Fiber",-12.728714942932127],["▁launches",-12.728755950927734],["Post",-12.728777885437012],["▁bucks",-12.72907257080078],["▁Nicholas",-12.72923755645752],["▁cărți",-12.729255676269531],["emper",-12.729681968688965],["Point",-12.729689598083496],["fraction",-12.729753494262695],["▁BIG",-12.72980499267578],["▁lancer",-12.729829788208008],["EVER",-12.72997760772705],["trend",-12.73000431060791],["▁remerci",-12.730076789855955],["▁prevalent",-12.730168342590332],["370",-12.730290412902832],["▁bestellen",-12.730327606201172],["Buying",-12.730341911315918],["▁Aufbau",-12.730416297912598],["▁opini",-12.730416297912598],["▁regiune",-12.730663299560549],["▁martial",-12.73069953918457],["LK",-12.730754852294922],["▁Feuerwehr",-12.730974197387695],["screened",-12.73099422454834],["Blue",-12.73120403289795],["▁analize",-12.731237411499023],["▁lure",-12.731247901916504],["▁internally",-12.731283187866213],["father",-12.731322288513184],["▁diplomatic",-12.731343269348145],["▁Activity",-12.731464385986328],["▁cliqu",-12.73156452178955],["▁adequately",-12.731809616088867],["▁Elena",-12.73183822631836],["▁Citizens",-12.732102394104004],["▁Länge",-12.732295989990234],["▁respectful",-12.732300758361816],["▁zuständig",-12.73248291015625],["▁réception",-12.732584953308104],["▁headset",-12.73268699645996],["▁awhile",-12.732705116271973],["▁speculation",-12.732707977294922],["▁WhatsApp",-12.732714653015137],["▁tulbur",-12.732731819152832],["▁voluntar",-12.732758522033691],["▁Studium",-12.73277473449707],["▁protector",-12.732833862304688],["▁Wrap",-12.732840538024902],["staat",-12.732951164245604],["▁judgement",-12.733396530151367],["unauthorized",-12.733397483825684],["Rank",-12.733487129211426],["pră",-12.733503341674805],["▁Paw",-12.733627319335938],["▁relev",-12.733664512634276],["▁arbor",-12.733830451965332],["stretches",-12.733885765075684],["nook",-12.733906745910645],["▁Tunis",-12.73390769958496],["▁shocking",-12.734036445617676],["▁oppress",-12.73414421081543],["10.1",-12.7341890335083],["▁ERP",-12.734310150146484],["wolle",-12.7343168258667],["▁Catch",-12.734352111816406],["Plus",-12.734368324279783],["Market",-12.734445571899414],["scribed",-12.734536170959473],["▁décoration",-12.734594345092772],["▁chanson",-12.734607696533203],["▁Midwest",-12.734763145446776],["▁Spencer",-12.734795570373535],["▁societate",-12.734807968139648],["curated",-12.735087394714355],["▁canopy",-12.735135078430176],["ат",-12.735142707824709],["Sig",-12.73514461517334],["▁witch",-12.735153198242188],["envoyer",-12.735175132751465],["▁$1,000",-12.735230445861816],["▁peripheral",-12.735482215881348],["nnouncing",-12.735509872436523],["perfect",-12.73559284210205],["▁warten",-12.735748291015623],["ELI",-12.735822677612305],["▁recap",-12.735912322998049],["dün",-12.73597812652588],["▁Spre",-12.736029624938965],["2005",-12.736153602600098],["▁réparation",-12.73617935180664],["▁extraordinar",-12.736196517944336],["existence",-12.736337661743164],["oanele",-12.736467361450195],["▁reprezentant",-12.736474990844728],["▁attacker",-12.736490249633787],["▁Berliner",-12.73657512664795],["experience",-12.736649513244627],["▁Monde",-12.73680019378662],["intervention",-12.736956596374512],["▁Einstellung",-12.736977577209473],["▁Valentin",-12.737011909484863],["▁zonă",-12.737200736999512],["occupant",-12.737223625183104],["▁mobilis",-12.737260818481444],["metall",-12.737261772155762],["evangeli",-12.73729133605957],["Adding",-12.737326622009276],["▁Roland",-12.73735237121582],["ENCE",-12.737462043762209],["▁Insul",-12.737478256225586],["tellement",-12.737497329711914],["▁Blogger",-12.737499237060549],["▁prote",-12.737504005432127],["▁Minimum",-12.737574577331545],["▁termic",-12.737624168395996],["▁Sachen",-12.737859725952148],["▁Maschinen",-12.737863540649414],["▁Dragnea",-12.737926483154297],["▁overtime",-12.737967491149902],["calorie",-12.73796844482422],["▁jene",-12.73814868927002],["▁Satan",-12.738153457641602],["▁currencies",-12.73827075958252],["▁echipamente",-12.738329887390137],["▁forgiveness",-12.73843765258789],["▁Pause",-12.738479614257812],["▁Witt",-12.738529205322266],["STOR",-12.738632202148438],["▁actuelle",-12.738703727722168],["▁Ard",-12.738853454589844],["▁Constitu",-12.738880157470703],["ghan",-12.7388916015625],["Make",-12.738906860351562],["▁garne",-12.738947868347168],["▁Hitler",-12.738956451416016],["▁rubbish",-12.738973617553713],["6.0",-12.739025115966797],["▁Giving",-12.739177703857422],["▁persever",-12.73937702178955],["wirk",-12.7394380569458],["liegenden",-12.739455223083496],["▁morceau",-12.73946762084961],["atty",-12.73961067199707],["▁Quebec",-12.739669799804688],["harmonie",-12.739705085754396],["Nummer",-12.739721298217772],["▁splendid",-12.739747047424316],["▁halfway",-12.739808082580566],["▁periodically",-12.740071296691896],["▁Ländern",-12.740077018737791],["▁AAA",-12.740083694458008],["▁Frost",-12.740198135375977],["▁heroin",-12.740289688110352],["▁bucurie",-12.7403564453125],["▁Pradesh",-12.74036693572998],["zusetzen",-12.740405082702637],["raising",-12.74042510986328],["▁furniz",-12.740567207336426],["▁convi",-12.740575790405272],["pictured",-12.740911483764648],["▁inadequate",-12.741065979003906],["▁aprobat",-12.741069793701172],["▁exercising",-12.741083145141602],["▁faisai",-12.741138458251951],["▁prosecution",-12.74123191833496],["380",-12.741402626037598],["▁Potential",-12.74145793914795],["▁Magi",-12.74152374267578],["From",-12.74175262451172],["batterie",-12.74181079864502],["▁poisson",-12.74185562133789],["▁Probe",-12.741950988769531],["▁pastel",-12.741998672485352],["▁tracked",-12.74241065979004],["▁advertisers",-12.74251937866211],["adevar",-12.74253749847412],["ит",-12.74277687072754],["▁Herren",-12.742815971374512],["EAM",-12.742820739746094],["▁scooter",-12.742822647094728],["requesting",-12.742841720581056],["dynamis",-12.742949485778809],["▁dahin",-12.742961883544922],["▁tweak",-12.743061065673828],["▁hail",-12.743101119995115],["▁întotdeauna",-12.743160247802734],["▁Publikum",-12.743167877197266],["▁panoramic",-12.743167877197266],["▁PRE",-12.74331283569336],["▁thrill",-12.743361473083496],["Open",-12.743366241455078],["▁Layer",-12.74345588684082],["▁Bosch",-12.743459701538086],["hull",-12.743511199951172],["▁născut",-12.743518829345703],["tausch",-12.743559837341309],["▁autoturism",-12.743577003479004],["▁crank",-12.743701934814451],["CLE",-12.743735313415527],["▁Frederick",-12.74386978149414],["mog",-12.743887901306152],["behalten",-12.74396800994873],["▁aunt",-12.744050979614258],["▁Triple",-12.744141578674316],["▁Ark",-12.744242668151855],["AUD",-12.744440078735352],["▁Candy",-12.744505882263184],["tama",-12.744515419006348],["▁Evaluation",-12.744571685791016],["▁Memphis",-12.744571685791016],["▁stellar",-12.74457836151123],["▁fabricat",-12.744632720947266],["▁terminat",-12.744868278503418],["▁domnul",-12.744913101196287],["▁keynote",-12.744925498962402],["▁dentistry",-12.744951248168944],["rift",-12.745052337646484],["▁bilan",-12.745119094848633],["2.6",-12.745125770568848],["undergoing",-12.745210647583008],["▁pseudo",-12.745274543762209],["▁maşin",-12.745280265808104],["▁munte",-12.74555492401123],["▁VW",-12.745932579040527],["▁Rab",-12.74593448638916],["▁sustine",-12.745972633361816],["▁Bedingungen",-12.745977401733398],["▁învăţ",-12.745980262756348],["▁pyramid",-12.745983123779297],["HEN",-12.746020317077637],["▁citrus",-12.746058464050291],["Code",-12.746064186096191],["▁Beginning",-12.746164321899414],["▁discourse",-12.746249198913574],["▁miercuri",-12.746329307556152],["▁producător",-12.74637508392334],["▁analys",-12.746397972106934],["▁Evan",-12.7467041015625],["138",-12.746987342834473],["▁târziu",-12.74703311920166],["▁relocation",-12.747052192687988],["decizia",-12.74708080291748],["tollen",-12.74714183807373],["TRO",-12.747180938720703],["▁runway",-12.74719524383545],["illet",-12.747270584106444],["▁serveur",-12.747387886047363],["bezogen",-12.747427940368652],["▁believers",-12.747668266296388],["determined",-12.747711181640623],["▁reinforced",-12.74791431427002],["▁wedge",-12.748006820678713],["methyl",-12.74807357788086],["MES",-12.748188018798828],["vpn",-12.748374938964844],["▁consta",-12.74837875366211],["▁vizitat",-12.748420715332031],["modul",-12.748455047607422],["▁routing",-12.748528480529783],["tempted",-12.748540878295898],["URS",-12.748785018920898],["apprentissage",-12.74879550933838],["▁Hungary",-12.748796463012695],["Previously",-12.74880313873291],["▁translator",-12.748804092407228],["▁resonate",-12.748830795288086],["201",-12.748851776123049],["3-0",-12.749029159545898],["▁reunion",-12.749090194702148],["▁palate",-12.749096870422363],["0.4",-12.749171257019045],["reheat",-12.74924373626709],["Roo",-12.749261856079102],["200,000",-12.74940013885498],["Bro",-12.749431610107422],["▁estimation",-12.749468803405762],["schneiden",-12.749499320983888],["▁Inspired",-12.749506950378418],["▁lottery",-12.749539375305176],["▁Friedrich",-12.749887466430664],["FIT",-12.749913215637209],["0.6",-12.7499418258667],["▁dagegen",-12.74997615814209],["▁Reb",-12.750115394592283],["▁Eigenschaften",-12.75020694732666],["▁molding",-12.750361442565918],["▁Harper",-12.750548362731934],["verwaltung",-12.75055980682373],["▁Schlüssel",-12.75055980682373],["▁desfasura",-12.75055980682373],["▁rencontrer",-12.75055980682373],["▁negoci",-12.750581741333008],["▁Leading",-12.750615119934082],["▁necesita",-12.750652313232422],["▁biking",-12.750683784484863],["▁jointly",-12.75069808959961],["▁crush",-12.750702857971191],["Vol",-12.750768661499023],["▁ebay",-12.750836372375488],["▁Shri",-12.750991821289062],["▁AMD",-12.75102996826172],["FG",-12.751032829284668],["Argentin",-12.75120735168457],["▁incercat",-12.751431465148926],["▁tidy",-12.751628875732422],["▁provoqu",-12.751635551452637],["▁Written",-12.751649856567385],["▁Kooperation",-12.751666069030762],["▁scripture",-12.751952171325684],["▁Pflicht",-12.75197410583496],["ficial",-12.752013206481934],["vremea",-12.752013206481934],["▁Growing",-12.752115249633787],["▁redesign",-12.752119064331056],["▁obstacle",-12.752214431762695],["▁rugam",-12.752235412597656],["▁SPD",-12.752243995666504],["165",-12.752270698547363],["fiz",-12.752284049987791],["▁startet",-12.752326011657717],["▁Principle",-12.752327919006348],["▁abdominal",-12.752327919006348],["▁podium",-12.752528190612791],["duty",-12.75261688232422],["bonne",-12.752679824829102],["▁Serbia",-12.752687454223633],["▁brunch",-12.75283908843994],["▁Personne",-12.752975463867188],["▁Idea",-12.753034591674805],["forementioned",-12.753036499023438],["▁chassis",-12.753037452697754],["gebühr",-12.753050804138184],["ucun",-12.753061294555664],["▁Maz",-12.7531156539917],["1-4",-12.75318431854248],["kleid",-12.753273963928224],["▁Volvo",-12.753337860107422],["brechen",-12.753378868103027],["▁homepage",-12.753472328186035],["fuz",-12.753509521484377],["▁abgeschlossen",-12.753595352172852],["▁gelungen",-12.753658294677734],["▁booklet",-12.753711700439451],["▁Ukrainian",-12.753745079040527],["▁Melissa",-12.753746032714844],["CENT",-12.75379467010498],["▁intégré",-12.753806114196776],["weighing",-12.753827095031738],["▁crumbl",-12.753894805908203],["▁bunk",-12.754167556762695],["krieg",-12.754207611083984],["▁freshman",-12.754307746887209],["alaya",-12.754339218139648],["Avem",-12.754353523254396],["▁Kne",-12.754423141479492],["▁upstairs",-12.75448226928711],["AIL",-12.754508972167969],["țul",-12.75478744506836],["▁Lecture",-12.754817962646484],["▁entdecken",-12.754843711853027],["▁GMT",-12.754912376403809],["▁Leitung",-12.754937171936035],["▁inclined",-12.755170822143556],["▁skillet",-12.75555419921875],["FN",-12.755742073059082],["▁Perform",-12.755821228027344],["shift",-12.75583267211914],["recognizing",-12.755873680114746],["▁concise",-12.755873680114746],["▁obsessed",-12.755873680114746],["▁removable",-12.755873680114746],["▁Relax",-12.755888938903809],["delegates",-12.75605583190918],["▁expedi",-12.756074905395508],["▁Schä",-12.756138801574709],["iete",-12.756211280822754],["▁reciproc",-12.756229400634766],["▁neutr",-12.75625228881836],["lactic",-12.756314277648926],["▁Nah",-12.756328582763672],["scene",-12.7565279006958],["▁Helm",-12.756563186645508],["▁Bewerbung",-12.756671905517578],["▁Cassi",-12.75667953491211],["▁Gelegenheit",-12.756939888000488],["▁reflective",-12.757140159606934],["▁încredere",-12.757149696350098],["▁cigarettes",-12.75717544555664],["▁Zusätzlich",-12.757295608520508],["▁intercept",-12.75731372833252],["▁Finn",-12.757468223571776],["▁ignor",-12.757661819458008],["gian",-12.75766372680664],["BRA",-12.757740020751951],["leader",-12.757957458496094],["nius",-12.757981300354004],["▁skies",-12.757987022399902],["▁nunta",-12.758023262023926],["▁grec",-12.758041381835938],["arranging",-12.75816822052002],["wartet",-12.758231163024902],["▁kostet",-12.758377075195312],["▁Entre",-12.758541107177734],["Mag",-12.758575439453123],["▁radiator",-12.75859832763672],["übrigens",-12.758689880371094],["Internet",-12.758706092834473],["▁connexion",-12.758718490600586],["▁prolonged",-12.758854866027832],["▁capabil",-12.75914192199707],["▁feeder",-12.759217262268066],["Initially",-12.75922393798828],["Green",-12.75926685333252],["▁passiert",-12.759272575378418],["▁courtyard",-12.759299278259276],["▁judeţ",-12.759320259094238],["▁Coalition",-12.759431838989258],["▁atmospheric",-12.759431838989258],["▁velocity",-12.759431838989258],["▁Frühstück",-12.759432792663574],["vacancies",-12.759438514709473],["unified",-12.759538650512695],["▁Ahmed",-12.759538650512695],["poured",-12.759550094604492],["▁Mikro",-12.75959587097168],["▁Klar",-12.759661674499512],["kommt",-12.759681701660156],["seated",-12.75974464416504],["musik",-12.75976848602295],["▁stimulation",-12.759841918945312],["▁solicitat",-12.759880065917969],["▁politically",-12.760165214538574],["restoring",-12.76032257080078],["▁Rag",-12.760435104370115],["▁officielle",-12.760468482971191],["▁Annie",-12.760479927062988],["▁tourne",-12.760634422302246],["▁Joel",-12.760642051696776],["blieben",-12.760666847229004],["▁repayment",-12.760736465454102],["▁Strategi",-12.760781288146973],["▁prietenii",-12.760804176330566],["▁Montgomery",-12.760858535766602],["▁résidence",-12.760858535766602],["▁sunglasses",-12.760858535766602],["▁1956",-12.760882377624512],["MEN",-12.76093578338623],["pouvant",-12.760997772216797],["375",-12.761061668395996],["directed",-12.761173248291016],["▁grinder",-12.76120662689209],["rträge",-12.761279106140137],["▁nickel",-12.76129913330078],["▁Maintain",-12.761313438415527],["▁Holmes",-12.761392593383787],["▁obtinut",-12.76157283782959],["▁walnut",-12.761585235595703],["▁consultancy",-12.761640548706056],["cooled",-12.761651039123535],["▁Brig",-12.761711120605469],["▁Produc",-12.761873245239258],["street",-12.76187515258789],["▁Einfach",-12.761897087097168],["North",-12.762149810791016],["▁PET",-12.76220989227295],["▁Président",-12.762288093566896],["▁produsului",-12.762457847595217],["literatur",-12.762483596801758],["133",-12.762561798095703],["▁recours",-12.762591361999512],["▁verpflichtet",-12.76264476776123],["▁Wur",-12.762733459472656],["▁psiholog",-12.76279640197754],["Veg",-12.762871742248535],["▁hype",-12.762930870056152],["augmenter",-12.762974739074709],["▁Welsh",-12.763012886047363],["mounted",-12.763158798217772],["▁Wann",-12.763425827026367],["▁gezeigt",-12.763620376586914],["▁memo",-12.763631820678713],["veterinary",-12.763717651367188],["▁Olympia",-12.763717651367188],["▁handsome",-12.763871192932127],["yama",-12.763911247253418],["studio",-12.763912200927734],["sozial",-12.764020919799805],["▁reap",-12.764104843139648],["▁didactic",-12.764111518859863],["▁Cookie",-12.764126777648926],["▁cooper",-12.764230728149414],["▁discern",-12.76441478729248],["▁Ubuntu",-12.764433860778809],["domain",-12.76443862915039],["▁plasa",-12.764460563659668],["hong",-12.764585494995115],["▁Freiheit",-12.764662742614746],["▁Gateway",-12.764678001403809],["▁poke",-12.764796257019045],["▁niedrig",-12.76484203338623],["▁corrected",-12.764899253845217],["▁predator",-12.76490306854248],["QA",-12.76507568359375],["Physio",-12.765101432800291],["MAS",-12.765108108520508],["▁sanctuary",-12.765151023864746],["▁aferent",-12.76523494720459],["▁perdre",-12.765268325805664],["▁recherch",-12.76539707183838],["ready",-12.76559829711914],["without",-12.76560115814209],["▁locuitori",-12.765628814697266],["▁Memo",-12.765636444091797],["▁Laden",-12.765646934509276],["danken",-12.76577377319336],["▁CNC",-12.765861511230469],["▁jealous",-12.765881538391112],["▁Background",-12.765951156616213],["▁Marx",-12.765999794006348],["▁Heli",-12.766039848327637],["▁osteo",-12.766057968139648],["▁rassembl",-12.766162872314451],["▁altceva",-12.766226768493652],["▁beschäftigt",-12.766226768493652],["▁accru",-12.76626682281494],["üft",-12.766273498535156],["▁sprout",-12.76628875732422],["endorf",-12.76647663116455],["▁specialitate",-12.766483306884766],["éanmoins",-12.766586303710938],["▁poign",-12.766663551330566],["▁mânca",-12.766668319702148],["▁stretched",-12.766752243041992],["fensiv",-12.76677131652832],["▁Auction",-12.76683235168457],["hints",-12.766944885253906],["▁typo",-12.766983032226562],["▁Rare",-12.767003059387209],["▁interruption",-12.767043113708496],["▁Mean",-12.76709270477295],["privileged",-12.767108917236328],["▁purtat",-12.767129898071287],["studie",-12.767229080200195],["offres",-12.767248153686523],["▁flap",-12.76729679107666],["▁rhetoric",-12.767304420471191],["▁snapshot",-12.767325401306152],["▁Conservative",-12.767367362976074],["▁taie",-12.767416954040527],["Game",-12.767499923706056],["▁naissance",-12.767663955688477],["Prof",-12.767704963684082],["qualified",-12.767745971679688],["▁suppression",-12.767749786376951],["▁răspunde",-12.767765045166016],["▁1/3",-12.767803192138672],["▁lieben",-12.767858505249023],["ù",-12.767898559570312],["america",-12.767955780029297],["▁Mum",-12.768182754516602],["▁Researchers",-12.76827335357666],["quip",-12.768308639526367],["▁fenomen",-12.768383026123049],["stools",-12.768387794494627],["▁commodity",-12.768742561340332],["▁rejuvenat",-12.76874542236328],["▁ausgezeichnet",-12.76876449584961],["▁păcate",-12.768784523010254],["3.6",-12.76882553100586],["zwei",-12.76890468597412],["accounted",-12.768982887268066],["▁Cycle",-12.76900863647461],["politischen",-12.769031524658203],["Normally",-12.76904010772705],["▁transcend",-12.769158363342283],["▁Classes",-12.769268989562988],["▁vene",-12.769363403320312],["protein",-12.76942253112793],["formulaire",-12.76944351196289],["▁endurance",-12.769463539123535],["▁Census",-12.769464492797852],["▁census",-12.7694673538208],["▁conțin",-12.76952838897705],["▁multinational",-12.769563674926758],["▁consomm",-12.769572257995604],["▁Porter",-12.769762992858888],["▁marvel",-12.769777297973633],["▁probable",-12.769824028015137],["dependable",-12.770044326782228],["▁crore",-12.77015495300293],["▁6:30",-12.770224571228027],["▁Bradley",-12.77032470703125],["molecule",-12.770400047302246],["inclusiv",-12.770516395568848],["▁privilégi",-12.770543098449709],["▁cerere",-12.770611763000488],["ouille",-12.770696640014648],["▁âgé",-12.770787239074709],["▁ghid",-12.770801544189451],["▁Controller",-12.77082347869873],["▁incredere",-12.770988464355469],["▁hostel",-12.771015167236328],["wissenschaft",-12.771121978759766],["▁cooperate",-12.771183967590332],["ки",-12.771202087402344],["▁Küchen",-12.771384239196776],["▁BIO",-12.771406173706056],["▁deliveries",-12.771458625793455],["▁urmări",-12.771553993225098],["▁überzeugen",-12.771631240844728],["Roofing",-12.771703720092772],["▁Adel",-12.771737098693848],["▁navy",-12.77181339263916],["▁cider",-12.772101402282717],["▁dulce",-12.772109985351562],["▁inspirat",-12.77216339111328],["allez",-12.772164344787598],["HH",-12.77221965789795],["▁Danish",-12.7722749710083],["CDC",-12.7722806930542],["▁Milch",-12.772303581237791],["▁Hockey",-12.772346496582031],["▁Smooth",-12.772347450256348],["▁FIFA",-12.772361755371094],["▁Devon",-12.772364616394045],["chung",-12.772379875183104],["▁villain",-12.772420883178713],["▁musée",-12.772441864013672],["tiennent",-12.772557258605955],["chou",-12.772732734680176],["kopf",-12.772809982299805],["printed",-12.77281379699707],["▁Depression",-12.773076057434082],["▁opioid",-12.773082733154297],["nomie",-12.773098945617676],["▁footwear",-12.773211479187012],["▁Cause",-12.773260116577148],["SEL",-12.773515701293944],["▁Roller",-12.773523330688477],["▁einzigartige",-12.773589134216309],["desea",-12.773597717285156],["▁nasty",-12.773792266845703],["formulated",-12.773877143859863],["breaker",-12.773958206176758],["▁goodies",-12.773961067199709],["▁sandy",-12.774189949035645],["method",-12.77425479888916],["▁Maple",-12.77430820465088],["gefragt",-12.774435997009276],["▁decreasing",-12.77451515197754],["ceşti",-12.774555206298828],["▁DUI",-12.774563789367676],["▁pierdere",-12.774574279785156],["▁brushes",-12.77466869354248],["▁Fully",-12.774712562561035],["filtered",-12.774789810180664],["ruins",-12.774988174438477],["Save",-12.775114059448242],["sweeping",-12.7752046585083],["PCR",-12.775334358215332],["▁folded",-12.77533721923828],["▁urca",-12.77544403076172],["▁clic",-12.775484085083008],["▁spécialiste",-12.775614738464355],["▁durfte",-12.775686264038086],["tuși",-12.775871276855469],["▁diligent",-12.77596378326416],["▁verdict",-12.775972366333008],["▁chaise",-12.776039123535156],["▁cleanup",-12.776068687438965],["▁Guitar",-12.776076316833496],["▁Dip",-12.776142120361328],["vru",-12.776260375976562],["▁cogn",-12.776373863220217],["something",-12.776529312133787],["hidr",-12.776535034179688],["ENG",-12.776607513427734],["Paul",-12.776679039001465],["▁reboot",-12.776687622070312],["savvy",-12.776688575744627],["▁Macron",-12.776710510253906],["▁Kino",-12.77682876586914],["232",-12.776832580566406],["▁gravit",-12.776861190795898],["ANC",-12.776883125305176],["▁petrecut",-12.776944160461426],["▁signage",-12.776959419250488],["odia",-12.776987075805664],["▁GRA",-12.77712631225586],["▁alegeril",-12.777129173278809],["leger",-12.77717399597168],["▁medicamente",-12.777174949645996],["pentru",-12.777249336242676],["▁collectif",-12.777251243591309],["▁Sohn",-12.777298927307127],["205",-12.777313232421877],["▁Reach",-12.77733039855957],["RAM",-12.777400970458984],["3.4",-12.777405738830566],["▁bleach",-12.777409553527832],["▁diligence",-12.777414321899414],["▁MORE",-12.777440071105955],["▁Critical",-12.777471542358398],["▁singură",-12.77767276763916],["▁adversar",-12.777791023254396],["▁Buzz",-12.7778902053833],["▁demeure",-12.778063774108888],["▁nephew",-12.778141021728516],["▁Boom",-12.77817440032959],["▁shining",-12.77819538116455],["▁sponge",-12.778206825256348],["liest",-12.77841854095459],["rseits",-12.778690338134766],["▁capita",-12.778823852539062],["esthesia",-12.778867721557615],["500,000",-12.77895736694336],["▁Pressure",-12.77898120880127],["ifikation",-12.77902126312256],["▁acceleration",-12.779181480407717],["▁Pfarr",-12.779282569885254],["▁imobil",-12.779304504394531],["▁pericol",-12.779326438903809],["▁flock",-12.779454231262209],["▁Scholar",-12.77962875366211],["▁Fusion",-12.779630661010742],["▁revolve",-12.779637336730955],["Plugin",-12.779664993286133],["▁Ruf",-12.779691696166992],["▁tehnici",-12.780024528503418],["voice",-12.78005313873291],["▁anomal",-12.780203819274902],["▁gefallen",-12.78025245666504],["▁Wyoming",-12.780322074890137],["▁9:00",-12.780354499816896],["packed",-12.780461311340332],["▁Zimbabwe",-12.780686378479004],["▁glücklich",-12.780766487121582],["ethanol",-12.78077220916748],["▁effektiv",-12.780936241149902],["▁saptamani",-12.781049728393556],["▁umfasst",-12.781052589416504],["▁Werbung",-12.781103134155272],["▁undermine",-12.781164169311523],["▁Lego",-12.781322479248049],["▁Rac",-12.781323432922363],["educating",-12.781441688537598],["leiten",-12.781451225280762],["derma",-12.781518936157228],["hängen",-12.781597137451172],["Lumin",-12.781846046447754],["▁PNL",-12.78191375732422],["▁volcano",-12.782064437866213],["▁Anfrage",-12.782066345214844],["▁resp",-12.782124519348145],["leigh",-12.78217601776123],["▁addict",-12.782176971435549],["WORK",-12.782312393188477],["▁FY",-12.782322883605955],["▁maneuver",-12.782513618469238],["flächen",-12.782525062561035],["zweck",-12.782527923583984],["tolerant",-12.782609939575195],["Davidson",-12.78272533416748],["▁meteor",-12.782849311828612],["▁Stephanie",-12.78291130065918],["▁plafon",-12.783126831054688],["technischen",-12.78316879272461],["unused",-12.783193588256836],["▁voulai",-12.783228874206545],["▁fehlt",-12.783447265625],["möglichen",-12.783955574035645],["▁Twenty",-12.783968925476074],["composing",-12.783979415893556],["▁rebate",-12.78400707244873],["Italie",-12.78403663635254],["▁goodbye",-12.784058570861816],["wild",-12.784061431884766],["▁lancé",-12.784077644348145],["▁wunderschöne",-12.784083366394045],["▁Frontier",-12.784139633178713],["▁murit",-12.784313201904297],["▁scump",-12.78464412689209],["OVER",-12.784682273864746],["▁meme",-12.784709930419922],["Super",-12.784733772277832],["▁Crack",-12.784849166870115],["rennen",-12.784907341003418],["▁interessiert",-12.784941673278809],["▁relaţi",-12.784942626953123],["▁factories",-12.784975051879885],["▁[...]",-12.785066604614258],["▁vizite",-12.785075187683104],["▁erfolgen",-12.785199165344238],["▁Hosting",-12.785244941711426],["▁localitate",-12.78528118133545],["▁chasse",-12.785415649414062],["▁Meadow",-12.785465240478516],["▁expansive",-12.785513877868652],["hov",-12.785874366760254],["Phil",-12.785978317260742],["illian",-12.786107063293455],["▁manipulate",-12.786107063293455],["informationen",-12.786130905151367],["▁profesionist",-12.786162376403809],["risen",-12.786252975463867],["frem",-12.786300659179688],["Act",-12.78640079498291],["supervised",-12.786491394042969],["▁capul",-12.786506652832031],["▁Craiova",-12.786528587341309],["▁victoire",-12.786528587341309],["▁guitarist",-12.786680221557615],["▁identific",-12.786684036254885],["democrat",-12.786864280700684],["Authentic",-12.786894798278809],["▁Autumn",-12.786894798278809],["▁bodi",-12.787014961242676],["April",-12.787044525146484],["▁Burger",-12.787049293518066],["▁BEST",-12.787490844726562],["▁torrent",-12.78749942779541],["UV",-12.787567138671877],["▁renal",-12.787676811218262],["founded",-12.787693977355955],["203",-12.787956237792969],["▁Flooring",-12.78799057006836],["▁kilogram",-12.787994384765623],["▁garantiert",-12.78813934326172],["▁fulfil",-12.788204193115234],["303",-12.788330078125],["▁schafft",-12.788363456726074],["▁butterfly",-12.788365364074709],["▁Stuart",-12.788382530212402],["▁Versuch",-12.788392066955566],["▁liking",-12.788412094116213],["▁chercher",-12.788508415222168],["▁wrapping",-12.788527488708496],["schrieb",-12.788652420043944],["▁abuz",-12.788718223571776],["▁maîtrise",-12.788772583007812],["EQ",-12.788887977600098],["▁Erinnerung",-12.789095878601074],["▁bridal",-12.78909969329834],["Rock",-12.789118766784668],["▁copied",-12.789193153381348],["Met",-12.789206504821776],["▁incep",-12.789233207702637],["▁sinus",-12.789336204528809],["▁Felix",-12.789831161499023],["▁Deluxe",-12.789837837219238],["▁GPU",-12.78984832763672],["Sie",-12.790164947509766],["lowering",-12.79026222229004],["▁Trotz",-12.790282249450684],["333",-12.790417671203612],["withstand",-12.79055118560791],["▁Aufenthalt",-12.790566444396973],["▁unhealthy",-12.790567398071287],["▁urbain",-12.790573120117188],["▁LOL",-12.79070281982422],["▁Ballet",-12.79074478149414],["▁Decoration",-12.79083251953125],["weist",-12.790839195251465],["▁Residence",-12.790932655334473],["▁Leeds",-12.791055679321287],["▁Genau",-12.79108428955078],["Imagin",-12.791136741638184],["▁suspicion",-12.791300773620604],["▁pêche",-12.791301727294922],["▁Soccer",-12.791306495666504],["▁protectie",-12.791553497314451],["ATS",-12.791796684265137],["stocked",-12.79183864593506],["▁gymnas",-12.79184627532959],["ASP",-12.792027473449709],["▁Independence",-12.792037010192873],["▁Wizard",-12.792037963867188],["▁nitrogen",-12.79204273223877],["amerikanische",-12.7920503616333],["▁Indianapolis",-12.79205322265625],["catches",-12.792131423950195],["stria",-12.792275428771973],["schätze",-12.79235553741455],["▁Räume",-12.792387962341309],["▁Interesting",-12.792403221130373],["bürger",-12.79240608215332],["sweet",-12.792410850524902],["Identify",-12.792632102966309],["EEN",-12.792651176452637],["▁£3",-12.792654991149902],["interacting",-12.7926664352417],["NYSE",-12.792762756347656],["▁Dynamics",-12.79277515411377],["▁modificări",-12.792777061462402],["▁Kumar",-12.792936325073242],["chette",-12.79313850402832],["▁presiune",-12.79316234588623],["arni",-12.793164253234863],["▁vielfältig",-12.793221473693848],["KC",-12.793259620666504],["▁Cuisine",-12.793513298034668],["▁australia",-12.793885231018066],["▁încet",-12.794026374816896],["▁caracteristic",-12.794257164001465],["▁cookbook",-12.794501304626465],["▁douleur",-12.79453182220459],["AVI",-12.794593811035156],["artikel",-12.794740676879885],["feta",-12.79493522644043],["▁fréquent",-12.794987678527832],["▁Prophet",-12.795051574707031],["▁dépense",-12.795202255249023],["▁Smile",-12.795235633850098],["▁lawmakers",-12.79525375366211],["▁Kollegen",-12.795391082763672],["▁Pir",-12.79555606842041],["serez",-12.79561710357666],["▁consumator",-12.795656204223633],["▁playlist",-12.795730590820312],["▁envisage",-12.795733451843262],["swept",-12.795780181884766],["▁Grim",-12.795825004577637],["▁widow",-12.795836448669434],["authorised",-12.795886039733888],["▁(...)",-12.796035766601562],["▁photographic",-12.796060562133787],["▁libertate",-12.796173095703123],["▁principalement",-12.796201705932615],["umming",-12.796260833740234],["▁Montréal",-12.796465873718262],["▁compilation",-12.796468734741213],["▁erlaubt",-12.79647159576416],["▁biblical",-12.796518325805664],["volume",-12.796561241149902],["5-7",-12.796809196472168],["▁Versch",-12.79689884185791],["▁Shark",-12.796957015991213],["ologne",-12.796969413757324],["4.4",-12.797086715698242],["decken",-12.797112464904783],["▁frequencies",-12.797205924987791],["▁inferior",-12.79720687866211],["visible",-12.797321319580078],["▁educator",-12.79739475250244],["▁soziale",-12.797420501708984],["▁billet",-12.797523498535156],["folosirea",-12.797574996948242],["▁aufgenommen",-12.797590255737305],["▁Thread",-12.797649383544922],["registering",-12.797694206237791],["▁Loop",-12.797747611999512],["innovation",-12.79783821105957],["▁elimination",-12.797857284545898],["136",-12.797883987426758],["▁fluctu",-12.797892570495604],["▁Mercury",-12.79794692993164],["▁bouche",-12.797955513000488],["▁hurdle",-12.7979736328125],["▁Bennett",-12.798040390014648],["STI",-12.79818344116211],["▁théâtre",-12.798316955566406],["▁confortable",-12.798359870910645],["▁Automobil",-12.79838752746582],["▁Donna",-12.798399925231934],["▁foyer",-12.79841136932373],["▁hollow",-12.798465728759766],["▁règlement",-12.79861068725586],["effi",-12.798616409301758],["▁sediment",-12.79869270324707],["▁Mä",-12.79877471923828],["▁faint",-12.798833847045898],["feti",-12.79890251159668],["▁Concord",-12.798959732055664],["▁Ladies",-12.798990249633787],["▁pregatit",-12.799052238464355],["▁Ensemble",-12.79905891418457],["▁Ingredient",-12.79905891418457],["▁Respond",-12.79914379119873],["▁impaired",-12.799356460571287],["▁Feedback",-12.799430847167969],["▁ultrasound",-12.799461364746094],["▁Guvernului",-12.799617767333984],["▁Unterricht",-12.799654006958008],["▁prosecut",-12.799662590026855],["spend",-12.799732208251951],["▁capitol",-12.799800872802734],["USD",-12.799822807312012],["observing",-12.79994773864746],["▁effortlessly",-12.800045013427734],["▁Setting",-12.80010986328125],["▁spontaneous",-12.80020809173584],["▁LEGO",-12.800238609313965],["initiative",-12.800299644470217],["▁Sak",-12.800299644470217],["Interestingly",-12.800326347351074],["▁Yale",-12.800352096557615],["▁größer",-12.80038070678711],["RIC",-12.800406455993652],["▁distracted",-12.800436973571776],["drafted",-12.800484657287598],["▁Brenda",-12.800522804260254],["monopol",-12.800551414489746],["städt",-12.800580024719238],["▁altar",-12.80058765411377],["▁Hannover",-12.800596237182615],["▁Spiritual",-12.800702095031738],["▁thriller",-12.800747871398926],["▁Schneider",-12.80076026916504],["▁accumulate",-12.800817489624023],["▁mediului",-12.800822257995604],["▁Mathematics",-12.800914764404297],["▁paradox",-12.800986289978027],["▁Sham",-12.801230430603027],["▁SITE",-12.80137538909912],["▁echipei",-12.801508903503418],["▁staircase",-12.801660537719728],["▁întrebări",-12.801705360412598],["Commerce",-12.802020072937012],["▁selfie",-12.802353858947754],["▁Pocket",-12.802404403686523],["▁niemand",-12.80263614654541],["Tool",-12.802678108215332],["igma",-12.802695274353027],["utilisant",-12.802915573120115],["▁negatively",-12.80295181274414],["Secondly",-12.802955627441406],["▁ROI",-12.8030366897583],["Arch",-12.80312156677246],["▁continuity",-12.80318546295166],["▁Prayer",-12.803235054016112],["inverse",-12.803241729736328],["▁Himmel",-12.803336143493652],["prinz",-12.803478240966797],["wichtigen",-12.803496360778809],["étage",-12.803522109985352],["summe",-12.8036527633667],["▁Zeitung",-12.80366039276123],["▁realization",-12.803897857666016],["▁influent",-12.804291725158691],["▁Valid",-12.804357528686523],["▁publicity",-12.804439544677734],["▁vertreten",-12.804447174072266],["▁Shoes",-12.804609298706056],["▁Diabetes",-12.80463695526123],["▁anticipation",-12.804670333862305],["▁Blank",-12.8047456741333],["asked",-12.804899215698242],["Power",-12.804938316345217],["arrelage",-12.805140495300291],["▁appraisal",-12.80538272857666],["▁harassment",-12.805542945861816],["Anzeige",-12.805682182312012],["liners",-12.80584716796875],["Firstly",-12.805851936340332],["transferring",-12.805951118469238],["▁Diane",-12.806012153625488],["▁1/2\"",-12.80606746673584],["▁adrenal",-12.80613136291504],["▁Prague",-12.806208610534668],["insertion",-12.80635929107666],["▁Fahrer",-12.80646514892578],["▁divin",-12.806585311889648],["▁douche",-12.80673885345459],["▁meticulous",-12.806879043579102],["▁IEEE",-12.806981086730955],["▁Rabatt",-12.807259559631348],["Runner",-12.807342529296877],["▁Leder",-12.807429313659668],["project",-12.80745792388916],["▁Split",-12.807562828063965],["Gold",-12.807600021362305],["5.00",-12.807629585266112],["iola",-12.807655334472656],["standardized",-12.807890892028809],["ordination",-12.807984352111816],["▁Egal",-12.80815887451172],["▁ruhig",-12.808241844177246],["▁judiciar",-12.80837345123291],["▁Nowadays",-12.808374404907228],["▁whistle",-12.808374404907228],["▁superhero",-12.808379173278809],["▁PowerPoint",-12.808408737182615],["flop",-12.808420181274414],["olph",-12.808460235595703],["▁pallet",-12.808916091918944],["posons",-12.809005737304688],["▁Listing",-12.809032440185549],["Tag",-12.809075355529783],["introductory",-12.809122085571287],["▁Profil",-12.809123992919922],["symmetric",-12.809126853942873],["▁aisle",-12.809138298034668],["▁ajouté",-12.809147834777832],["opathy",-12.809149742126465],["prezentate",-12.809155464172363],["▁hurry",-12.809165000915527],["Auth",-12.809310913085938],["▁Homepage",-12.809435844421388],["ashes",-12.809489250183104],["▁inklusive",-12.809496879577637],["populated",-12.809502601623535],["▁nein",-12.80955410003662],["▁syndicat",-12.809690475463867],["▁développé",-12.809842109680176],["▁Domestic",-12.809877395629885],["essay",-12.80996799468994],["Atelier",-12.809980392456056],["▁proceeding",-12.810006141662598],["▁SAS",-12.810038566589355],["task",-12.810063362121582],["▁blackjack",-12.810114860534668],["Key",-12.810186386108398],["thérapie",-12.810247421264648],["▁Cohen",-12.810397148132324],["Direct",-12.810510635375977],["▁Estimat",-12.810517311096191],["élève",-12.810616493225098],["cind",-12.810640335083008],["▁prezenț",-12.810701370239258],["▁notorious",-12.810725212097168],["climbed",-12.810816764831545],["▁flexibil",-12.810830116271973],["▁entlang",-12.810855865478516],["longed",-12.81103515625],["▁elbow",-12.811078071594238],["BH",-12.811296463012695],["▁Radu",-12.811376571655272],["▁lonely",-12.811378479003906],["ALA",-12.811405181884766],["Variante",-12.811639785766602],["▁Influen",-12.81169319152832],["▁Budapest",-12.811747550964355],["▁Gemüse",-12.811747550964355],["▁continental",-12.811750411987305],["ippo",-12.811771392822266],["▁Affordable",-12.81212329864502],["▁niece",-12.81218719482422],["oscopic",-12.812190055847168],["▁Grid",-12.81222152709961],["sliced",-12.812270164489746],["▁voici",-12.812294006347656],["aveam",-12.812471389770508],["▁Lars",-12.812612533569336],["APA",-12.812657356262209],["▁particulière",-12.812858581542969],["sorb",-12.8128662109375],["▁1955",-12.81288719177246],["▁solutii",-12.812942504882812],["loch",-12.812960624694824],["▁summon",-12.813212394714355],["wurf",-12.813271522521973],["▁protecți",-12.813288688659668],["2001",-12.813499450683594],["▁sophomore",-12.813627243041992],["▁Schwerpunkt",-12.813628196716309],["▁diplomat",-12.813687324523926],["▁artistique",-12.813726425170898],["▁accueille",-12.813739776611328],["Disp",-12.813746452331545],["inherited",-12.813764572143556],["▁COMP",-12.813889503479004],["▁envoyé",-12.814046859741213],["▁tuning",-12.814056396484377],["▁entspricht",-12.814062118530272],["▁exerc",-12.81406307220459],["▁accessoires",-12.8140869140625],["▁Automat",-12.814348220825195],["importance",-12.814408302307127],["▁travellers",-12.81443214416504],["seiten",-12.81447410583496],["▁slider",-12.814481735229492],["effect",-12.81459140777588],["▁siding",-12.814669609069824],["▁Crit",-12.814780235290527],["▁sportif",-12.814827919006348],["▁Accessories",-12.81513500213623],["▁Anteil",-12.815184593200684],["▁limbi",-12.81519603729248],["▁vendre",-12.815269470214844],["borg",-12.815435409545898],["▁Deposit",-12.815508842468262],["▁Hö",-12.815717697143556],["employé",-12.8157320022583],["▁Bangalore",-12.815887451171877],["▁itinerary",-12.815888404846191],["▁Deliver",-12.81600856781006],["dik",-12.816024780273438],["▁advent",-12.816100120544434],["▁Turk",-12.81614875793457],["▁Nico",-12.816154479980469],["organizarea",-12.816161155700684],["▁remport",-12.816166877746582],["▁tribunal",-12.816266059875488],["▁Rusia",-12.8162841796875],["glazed",-12.816339492797852],["▁destiné",-12.816502571105955],["304",-12.816533088684082],["album",-12.816650390625],["▁junction",-12.81665325164795],["▁Fleet",-12.816664695739746],["venant",-12.81667423248291],["▁buddy",-12.816694259643556],["▁neglected",-12.816694259643556],["▁Mask",-12.816783905029297],["▁testament",-12.816844940185549],["▁Basil",-12.81690788269043],["masă",-12.816922187805176],["▁racist",-12.81692886352539],["640",-12.816990852355955],["▁Standing",-12.817028045654297],["▁MUST",-12.817266464233398],["situation",-12.817327499389648],["▁informiert",-12.817337036132812],["ABA",-12.817353248596191],["▁Timothy",-12.817397117614746],["▁generosity",-12.817397117614746],["▁erscheint",-12.817402839660645],["▁verarbeitet",-12.81740665435791],["▁burial",-12.817444801330566],["▁limestone",-12.817458152770996],["▁1953",-12.817480087280272],["▁Lucr",-12.817506790161133],["small",-12.817633628845217],["aveau",-12.81763744354248],["versiune",-12.81773567199707],["▁inkl",-12.81775951385498],["▁Minneapolis",-12.81777572631836],["Spiel",-12.81781005859375],["▁encode",-12.817895889282228],["▁beforehand",-12.818021774291992],["▁Vital",-12.818086624145508],["▁socialist",-12.818228721618652],["inho",-12.81824779510498],["▁chapel",-12.81825065612793],["▁Monitoring",-12.81838607788086],["▁quotidienne",-12.818404197692873],["cloud",-12.818506240844728],["▁desfăşur",-12.818531036376951],["▁1952",-12.818638801574709],["▁Rü",-12.818690299987791],["▁Sigma",-12.818804740905762],["134",-12.818835258483888],["Sullivan",-12.818909645080566],["▁Bevölkerung",-12.818909645080566],["▁sufficiently",-12.81895351409912],["Check",-12.818992614746094],["rnie",-12.8190336227417],["contamin",-12.819132804870604],["▁gewonnen",-12.81928825378418],["▁bugetul",-12.819376945495604],["▁mustard",-12.819414138793944],["132",-12.81947898864746],["0.9",-12.819535255432127],["▁tratat",-12.81957721710205],["▁dilemma",-12.819666862487791],["▁versatility",-12.819666862487791],["▁clutter",-12.81967067718506],["▁Musk",-12.81973934173584],["▁Beide",-12.819750785827637],["hurst",-12.819758415222168],["atsu",-12.819767951965332],["absence",-12.819784164428713],["rebounds",-12.819881439208984],["6.1",-12.820029258728027],["Dia",-12.820046424865724],["▁siguranță",-12.820060729980469],["▁Blade",-12.820072174072266],["▁disrupt",-12.820074081420898],["▁visiteurs",-12.82016944885254],["tested",-12.820282936096191],["▁Lup",-12.820353507995604],["▁Rouge",-12.820371627807615],["▁asbestos",-12.82042407989502],["▁moisturize",-12.820427894592283],["▁acknowledg",-12.82045841217041],["▁procent",-12.820467948913574],["▁swear",-12.82050895690918],["▁911",-12.82064723968506],["präsent",-12.820724487304688],["▁cohort",-12.82072639465332],["▁intimid",-12.820830345153809],["JS",-12.820849418640137],["îm",-12.82096004486084],["▁Kunststoff",-12.820963859558104],["rison",-12.820972442626951],["▁praf",-12.82097339630127],["▁convient",-12.821019172668455],["▁partenaire",-12.821088790893556],["▁Verantwortlich",-12.821182250976562],["▁semiconductor",-12.821182250976562],["▁kürz",-12.821187019348145],["▁Bottom",-12.82118797302246],["▁tratamentul",-12.82127571105957],["Source",-12.821331024169922],["authored",-12.82172679901123],["robo",-12.82186794281006],["▁turf",-12.82194709777832],["▁liebe",-12.821971893310549],["▁Fotografi",-12.821995735168455],["Big",-12.822064399719238],["▁fireworks",-12.822081565856934],["▁presă",-12.822135925292969],["▁conceal",-12.822269439697266],["▁originated",-12.82227897644043],["▁biciclet",-12.822319984436035],["acești",-12.822577476501465],["▁mortar",-12.822585105895996],["▁Wunder",-12.822626113891602],["ionist",-12.822696685791016],["KM",-12.822871208190918],["▁Marion",-12.822918891906738],["produkte",-12.822933197021484],["▁Sprint",-12.822999000549316],["▁Nachde",-12.8230619430542],["▁verfüge",-12.823100090026855],["Marea",-12.823177337646484],["▁compressor",-12.823253631591797],["Arm",-12.823290824890137],["Auf",-12.823311805725098],["▁Polyester",-12.823461532592772],["▁Sheffield",-12.823461532592772],["illiard",-12.823494911193848],["▁misleading",-12.82353401184082],["multi",-12.823749542236328],["ripped",-12.82381820678711],["▁Cosmetic",-12.82383918762207],["▁Regal",-12.823890686035156],["▁authenticity",-12.82414436340332],["▁customizable",-12.824219703674316],["▁bathtub",-12.824275016784668],["▁Average",-12.824292182922363],["▁Muster",-12.824522018432615],["290",-12.824529647827148],["▁Ersatz",-12.824570655822754],["▁Might",-12.824588775634766],["published",-12.82461929321289],["▁Interpret",-12.824640274047852],["▁încep",-12.82480239868164],["▁proto",-12.824851036071776],["▁disque",-12.824889183044434],["▁Palestine",-12.824980735778809],["Over",-12.824981689453123],["▁verbessert",-12.824983596801758],["▁liefern",-12.825017929077148],["▁Handlung",-12.825095176696776],["▁Handels",-12.825150489807127],["▁eater",-12.825201988220217],["▁$40",-12.825251579284668],["illard",-12.825334548950195],["▁apariti",-12.825413703918455],["▁gag",-12.825422286987305],["▁chimic",-12.825541496276855],["▁Guru",-12.825594902038574],["▁Toilet",-12.82571792602539],["▁Tochter",-12.825748443603516],["▁Aurora",-12.82579231262207],["contro",-12.825922966003418],["▁GOP",-12.825995445251465],["Provence",-12.826130867004396],["▁Frieden",-12.82614803314209],["ăci",-12.826216697692873],["portée",-12.826268196105955],["▁upright",-12.826300621032717],["▁Physician",-12.82650375366211],["▁juridique",-12.82650375366211],["▁territorial",-12.82650375366211],["▁kindergarten",-12.826505661010742],["aéroport",-12.826510429382324],["▁whisper",-12.826513290405272],["▁capacities",-12.826562881469728],["dichte",-12.826641082763672],["▁Grenzen",-12.826822280883787],["▁Riv",-12.82710075378418],["épreuve",-12.827266693115234],["▁Scheme",-12.827290534973145],["mesures",-12.827330589294434],["▁Einfluss",-12.827333450317385],["appui",-12.827713966369627],["▁apuc",-12.82782745361328],["▁radiat",-12.82794189453125],["▁allergy",-12.828035354614258],["▁spear",-12.828038215637209],["▁Luxembourg",-12.828086853027344],["▁Registered",-12.828115463256836],["▁Shape",-12.828198432922363],["genie",-12.828328132629396],["nsonsten",-12.82838535308838],["▁Symposium",-12.828412055969238],["forderung",-12.82847499847412],["▁personalizat",-12.82866096496582],["▁ştiu",-12.82875919342041],["blatt",-12.82880401611328],["▁geometry",-12.828807830810549],["▁8:30",-12.828831672668455],["▁Fahrrad",-12.828861236572266],["After",-12.828927040100098],["▁ventilat",-12.829072952270508],["▁nylon",-12.829190254211426],["▁verkauft",-12.829304695129396],["öß",-12.829345703125],["▁Kath",-12.829523086547852],["▁Nuclear",-12.82955837249756],["▁Verizon",-12.829560279846191],["▁spokesperson",-12.829560279846191],["▁vietii",-12.829560279846191],["▁prescri",-12.829629898071287],["ру",-12.829666137695312],["6.2",-12.829801559448242],["▁spațiu",-12.830018997192385],["▁solvent",-12.83006763458252],[",000,000",-12.830142974853516],["reuen",-12.830185890197754],["plast",-12.830245018005373],["▁Activities",-12.830334663391112],["▁domni",-12.83056926727295],["▁trophy",-12.830572128295898],["▁saddle",-12.830657958984377],["▁renovat",-12.830708503723145],["▁bumper",-12.830717086791992],["▁penny",-12.83074188232422],["omato",-12.830743789672852],["AQ",-12.83083438873291],["kunst",-12.830843925476074],["hydrat",-12.830860137939451],["minder",-12.830931663513184],["trecerea",-12.830949783325195],["brush",-12.831185340881348],["TEC",-12.83121395111084],["Please",-12.831253051757812],["hydrated",-12.831483840942385],["ICAL",-12.831636428833008],["trauen",-12.831639289855955],["9,000",-12.83175277709961],["▁2030",-12.831830024719238],["▁Chennai",-12.831854820251465],["▁empirical",-12.831854820251465],["▁Subscribe",-12.83206844329834],["▁vorgestellt",-12.832120895385742],["▁Springfield",-12.832159996032717],["▁continuu",-12.832311630249023],["208",-12.832351684570312],["▁Bearing",-12.83240795135498],["2003",-12.83257293701172],["cheta",-12.832608222961426],["▁empathy",-12.832623481750488],["▁Alert",-12.83281707763672],["▁recreate",-12.832879066467283],["PJ",-12.833159446716309],["Name",-12.83323860168457],["▁Mouse",-12.83340549468994],["▁disturbing",-12.833443641662598],["▁leichter",-12.83344841003418],["▁cruel",-12.833507537841797],["▁detective",-12.833531379699709],["▁reimbursement",-12.833626747131348],["▁Gemeinschaft",-12.833772659301758],["▁adolescents",-12.833772659301758],["▁Reality",-12.833954811096191],["▁Stockholm",-12.83415699005127],["▁Gründen",-12.834304809570312],["▁Reflect",-12.83432388305664],["▁Palmer",-12.834336280822754],["▁treac",-12.8343505859375],["▁tentative",-12.834497451782228],["▁surrender",-12.834677696228027],["▁broadly",-12.834734916687012],["▁județ",-12.834814071655272],["▁Thu",-12.834845542907717],["wärts",-12.834961891174316],["▁crește",-12.835074424743652],["▁déplacement",-12.835208892822266],["blanc",-12.835268020629885],["▁£5",-12.835308074951172],["▁confidentiality",-12.835320472717283],["veraging",-12.835444450378418],["unité",-12.835609436035156],["clar",-12.83564567565918],["rigg",-12.835693359375],["honneur",-12.835694313049316],["▁adventurous",-12.835694313049316],["▁Nutzen",-12.835758209228516],["▁Kabel",-12.835800170898438],["empowering",-12.836040496826172],["verhalten",-12.836042404174805],["▁prevail",-12.8361234664917],["mashed",-12.836138725280762],["▁1947",-12.83616828918457],["function",-12.836292266845703],["niveaux",-12.83633041381836],["▁territories",-12.836463928222656],["▁Permanent",-12.836465835571287],["▁christmas",-12.836471557617188],["arguing",-12.836490631103516],["zukünftig",-12.836654663085938],["▁Eindruck",-12.836817741394045],["personalised",-12.836854934692385],["▁vecin",-12.83721160888672],["▁Affiliate",-12.837234497070312],["▁Silk",-12.837249755859377],["▁Tub",-12.837440490722656],["▁remont",-12.837493896484377],["▁sauber",-12.837530136108398],["gehörig",-12.837562561035156],["Maritime",-12.83771800994873],["▁Bö",-12.837973594665527],["▁1957",-12.83800220489502],["▁unparalleled",-12.838005065917969],["▁fulfillment",-12.838042259216309],["▁collage",-12.838179588317873],["fenders",-12.838248252868652],["▁neige",-12.838275909423828],["▁gamers",-12.83832550048828],["tefan",-12.838339805603027],["▁wifi",-12.838349342346191],["▁leisten",-12.83835506439209],["▁Verbesserung",-12.838390350341797],["▁composant",-12.838400840759276],["▁LORD",-12.8384370803833],["arrive",-12.838472366333008],["▁conquer",-12.838562965393066],["▁lentil",-12.838767051696776],["▁Sprech",-12.838995933532717],["▁substitution",-12.839015007019045],[".05.",-12.83902072906494],["FORM",-12.839144706726074],["cădere",-12.839154243469238],["▁canyon",-12.839430809020996],["▁capacitate",-12.839442253112791],["▁menace",-12.83946132659912],["▁Antique",-12.839519500732422],["▁dizaine",-12.839550971984863],["▁Saturn",-12.83957862854004],["▁gastro",-12.83962631225586],["▁Vand",-12.839641571044922],["▁africa",-12.839682579040527],["▁hackers",-12.839702606201172],["▁Bailey",-12.839736938476562],["ouette",-12.83982276916504],["hoch",-12.839885711669922],["étudiant",-12.839973449707031],["▁1600",-12.840004920959473],["utiliz",-12.840167999267578],["reinigung",-12.84026336669922],["▁mileage",-12.84029483795166],["▁consacré",-12.840309143066406],["▁Norfolk",-12.840327262878418],["stacked",-12.840659141540527],["anbieter",-12.840731620788574],["▁gewünschte",-12.84073543548584],["▁silicon",-12.840761184692385],["Ensuite",-12.840794563293455],["▁vendu",-12.840850830078123],["▁viteza",-12.84085178375244],["▁evaluare",-12.840913772583008],["▁contient",-12.841036796569824],["▁Viagra",-12.841100692749023],["▁circumstance",-12.841283798217772],["walker",-12.841383934020996],["▁Aluminium",-12.84148120880127],["ço",-12.841556549072266],["▁Kli",-12.84164333343506],["▁deliberately",-12.841649055480955],["▁gamble",-12.841893196105955],["▁nourri",-12.841903686523438],["▁sealing",-12.84194278717041],["▁Atmosphäre",-12.842255592346191],["▁erschien",-12.842260360717772],["▁brightness",-12.842340469360352],["autonomie",-12.84251594543457],["▁propel",-12.842525482177734],["▁Infrastructure",-12.842642784118652],["▁război",-12.842642784118652],["▁jelly",-12.842684745788574],["scalable",-12.84280776977539],["regal",-12.84296703338623],["▁sarcini",-12.843031883239746],["▁Dienstag",-12.84304428100586],["▁Receive",-12.8430814743042],["▁mango",-12.843356132507324],["▁compétition",-12.84341812133789],["▁Monument",-12.843428611755373],["▁mast",-12.844159126281738],["▁instructed",-12.84425163269043],["▁aventur",-12.844277381896973],["139",-12.844298362731934],["▁Parmi",-12.84435749053955],["confined",-12.844416618347168],["acious",-12.844441413879396],["▁simptome",-12.844581604003906],["▁Fischer",-12.844897270202637],["störung",-12.844985008239746],["▁bilateral",-12.84504508972168],["preşedintele",-12.845274925231934],["accueillir",-12.84535789489746],["▁Schmidt",-12.845359802246094],["litis",-12.845373153686523],["WL",-12.8454008102417],["▁Rise",-12.845436096191406],["▁streamline",-12.845556259155272],["sozialen",-12.845585823059082],["▁Emirates",-12.845746040344238],["▁encrypted",-12.845746040344238],["▁unfamiliar",-12.845746040344238],["established",-12.84577751159668],["▁Tätigkeit",-12.845818519592283],["▁unaware",-12.845913887023926],["2:00",-12.8460054397583],["macher",-12.846013069152832],["NSA",-12.8461275100708],["▁rutier",-12.846177101135254],["▁Trent",-12.84621238708496],["▁sickness",-12.846277236938477],["▁advert",-12.846417427062988],["▁Kranken",-12.846426963806152],["▁Sandra",-12.846443176269531],["▁Recreation",-12.846449851989746],["▁Evidence",-12.846524238586426],["▁Immigration",-12.846524238586426],["▁carriage",-12.846524238586426],["▁justified",-12.84655475616455],["▁veche",-12.846579551696776],["PGA",-12.846604347229004],["▁Carmen",-12.846735000610352],["▁Faites",-12.846750259399414],["▁erfüllt",-12.84691333770752],["▁voilà",-12.846931457519531],["▁împlin",-12.846959114074709],["deposited",-12.84721565246582],["▁decisiv",-12.847241401672363],["CSA",-12.847249031066896],["pathy",-12.84726619720459],["▁erweitert",-12.847302436828612],["▁liquor",-12.847302436828612],["▁resilient",-12.847302436828612],["▁walmart",-12.847302436828612],["▁fencing",-12.847308158874512],["▁dépasse",-12.84731388092041],["KT",-12.847354888916016],["▁fries",-12.847368240356444],["vadă",-12.847421646118164],["▁Spania",-12.847478866577148],["▁complètement",-12.847725868225098],["▁lucrari",-12.84777545928955],["▁Lieb",-12.847908973693848],["leistungen",-12.847943305969238],["198",-12.847979545593262],["▁Schnell",-12.847997665405272],["▁radius",-12.84814453125],["▁beneficiaries",-12.848151206970217],["▁northwest",-12.848174095153809],["▁#4",-12.848223686218262],["▁embryo",-12.848492622375488],["▁ditch",-12.848791122436523],["▁Seriously",-12.848859786987305],["oppel",-12.848941802978516],["▁stalk",-12.849053382873535],["écriture",-12.849066734313965],["512",-12.84912109375],["wiesen",-12.849271774291992],["▁Consum",-12.849321365356444],["▁lună",-12.849405288696287],["▁lantern",-12.849441528320312],["▁italian",-12.849629402160645],["▁achiziți",-12.849639892578123],["▁catalyst",-12.849639892578123],["▁Arbeitgeber",-12.84966278076172],["▁researched",-12.8496675491333],["▁drastically",-12.849679946899414],["versammlung",-12.849735260009766],["410",-12.84980010986328],["▁impus",-12.850153923034668],["▁interchange",-12.850173950195312],["▁pharmacie",-12.850215911865234],["Live",-12.850354194641112],["dents",-12.850384712219238],["▁charcoal",-12.850419998168944],["▁odihn",-12.850420951843262],["▁pistol",-12.850444793701172],["▁complaining",-12.850576400756836],["manager",-12.850578308105469],["themed",-12.850578308105469],["▁Chang",-12.850650787353516],["▁rookie",-12.85070514678955],["Great",-12.850706100463867],["▁smoker",-12.850733757019045],["▁Container",-12.850812911987305],["▁bancaire",-12.850852966308594],["▁Actual",-12.850966453552246],["füllen",-12.850982666015623],["forum",-12.850985527038574],["bleib",-12.851073265075684],["▁combi",-12.851079940795898],["smoked",-12.851137161254885],["difficultés",-12.851161003112791],["▁tactical",-12.851240158081056],["▁sichtbar",-12.851483345031738],["▁dreptate",-12.851598739624023],["ERT",-12.85168743133545],["▁Pond",-12.85177993774414],["▁Holly",-12.851844787597656],["erfolg",-12.8518705368042],["▁Nordic",-12.851896286010742],["évènement",-12.851983070373535],["embracing",-12.851984024047852],["▁Maximum",-12.851984024047852],["▁défend",-12.85205078125],["▁fruct",-12.852056503295898],["▁Conditioning",-12.852099418640137],["LG",-12.852127075195312],["exigence",-12.852166175842283],["amide",-12.852187156677246],["▁darunter",-12.852208137512209],["▁EVERY",-12.852420806884766],["▁comparat",-12.85244083404541],["boosting",-12.852452278137209],["▁Hawaiian",-12.852553367614746],["▁Geburt",-12.852752685546877],["deci",-12.852782249450684],["▁Apollo",-12.852803230285645],["▁schützen",-12.852821350097656],["tragere",-12.852893829345703],["Online",-12.852904319763184],["▁neural",-12.852913856506348],["▁lucrez",-12.853188514709473],["▁phenomenal",-12.853253364562988],["▁Height",-12.853368759155272],["coordinating",-12.853548049926758],["geschnitten",-12.853631019592283],["auront",-12.853641510009766],["▁administer",-12.853644371032717],["▁contend",-12.853707313537598],["▁crispy",-12.853784561157228],["chuck",-12.854011535644531],["▁Condition",-12.8540678024292],["gestaltung",-12.854324340820312],["▁Blvd",-12.854331970214844],["▁subjective",-12.854470252990724],["▁événements",-12.854708671569824],["▁Jenny",-12.855131149291992],["▁cumpăra",-12.85519027709961],["constructing",-12.855262756347656],["▁instructional",-12.85539436340332],["▁sterling",-12.855446815490724],["scrise",-12.855470657348633],["▁Boulevard",-12.855551719665527],["pipe",-12.855620384216309],["▁Pride",-12.855748176574709],["▁Kau",-12.855751991271973],["▁overhaul",-12.855924606323242],["▁Recruitment",-12.85592555999756],["▁thrilling",-12.856218338012695],["living",-12.85630226135254],["▁rămân",-12.85645866394043],["▁MOD",-12.85661792755127],["▁Newport",-12.856675148010254],["▁infectious",-12.856688499450684],["6-3",-12.856860160827637],["▁Apache",-12.856976509094238],["▁dependence",-12.85698413848877],["nutzung",-12.857199668884276],["praised",-12.857211112976074],["▁craving",-12.857346534729004],["▁cramp",-12.857397079467772],["▁mancare",-12.857455253601074],["▁entdeckt",-12.857474327087402],["▁Pioneer",-12.857484817504885],["▁Adelaide",-12.85749053955078],["2.0",-12.857503890991213],["168",-12.857526779174805],["▁Decorating",-12.857611656188965],["▁unpleasant",-12.857854843139648],["▁déclaration",-12.857865333557127],["▁Grafik",-12.857908248901367],["5-2",-12.857937812805176],["căci",-12.857940673828123],["▁invade",-12.858171463012695],["▁internaţional",-12.858259201049805],["▁fraudulent",-12.858281135559082],["▁crestere",-12.858441352844238],["ografic",-12.858729362487791],["plină",-12.859140396118164],["sunteti",-12.859150886535645],["/04",-12.859176635742188],["▁admis",-12.85935115814209],["▁mediation",-12.859403610229492],["ICC",-12.859424591064451],["roș",-12.859660148620604],["▁Aroma",-12.8596773147583],["1:00",-12.859792709350586],["gasesc",-12.859822273254396],["▁Defence",-12.859850883483888],["▁dictionary",-12.859856605529783],["▁Batterie",-12.859865188598633],["▁gesunde",-12.85997486114502],["146",-12.860099792480469],["▁mortal",-12.860129356384276],["▁Flughafen",-12.860230445861816],["hhh",-12.860284805297852],["▁novice",-12.860342025756836],["▁Develop",-12.86043930053711],["▁accidental",-12.860516548156738],["Muzeul",-12.86054515838623],["▁Jupiter",-12.86062240600586],["supposedly",-12.860662460327148],["energy",-12.860758781433104],["▁montrer",-12.860764503479004],["recalled",-12.860795021057127],["Press",-12.860801696777344],["▁postcard",-12.86080265045166],["target",-12.86081600189209],["▁vêtements",-12.860881805419922],["▁particle",-12.860888481140137],["professional",-12.8608980178833],["▁1949",-12.860917091369627],["yah",-12.860980033874512],["▁Spiegel",-12.861017227172852],["▁Jeffrey",-12.861023902893066],["fahrzeug",-12.861027717590332],["▁Plug",-12.861051559448242],["▁violin",-12.861150741577148],["▁condemn",-12.86138153076172],["▁conducere",-12.861398696899414],["▁Chevrolet",-12.861412048339844],["▁conceput",-12.861461639404297],["▁Merri",-12.861493110656738],["judging",-12.861559867858888],["embraced",-12.86168098449707],["▁Compact",-12.86171531677246],["▁château",-12.861807823181152],["etch",-12.861945152282717],["bedroom",-12.861995697021484],["People",-12.862038612365724],["25,000",-12.86209774017334],["ocyte",-12.862146377563477],["▁Lenovo",-12.862205505371094],["▁Hampton",-12.862241744995115],["5.2",-12.862244606018066],["▁progres",-12.862266540527344],["hoc",-12.86228847503662],["▁complementary",-12.86241340637207],["turned",-12.862485885620115],["mangel",-12.862508773803713],["▁Drew",-12.862592697143556],["épisode",-12.86259651184082],["▁Versorgung",-12.86259651184082],["▁ausdrücklich",-12.86259651184082],["ciune",-12.862788200378418],["▁sfârșit",-12.862990379333496],["Agricultural",-12.862991333007812],["▁caffeine",-12.862991333007812],["▁emergencies",-12.862991333007812],["▁unhappy",-12.862991333007812],["(7)",-12.863043785095217],["▁inlocui",-12.863059043884276],["▁Rochester",-12.863153457641602],["183",-12.863155364990234],["niz",-12.863285064697266],["tasche",-12.863462448120115],["▁Salle",-12.86347484588623],["cît",-12.863478660583496],["▁Singer",-12.863489151000977],["▁economically",-12.863506317138672],["▁ieși",-12.863525390625],["▁façade",-12.86378288269043],["Ohne",-12.863801956176758],["▁edible",-12.863842964172363],["Rob",-12.863851547241213],["▁(2014)",-12.863859176635742],["▁Zar",-12.863919258117676],["▁obey",-12.863995552062988],["Pack",-12.864087104797363],["▁Omni",-12.864198684692385],["▁Gilbert",-12.864212036132812],["▁Vlad",-12.86429500579834],["▁pauvre",-12.864333152770996],["▁secular",-12.864383697509766],["Center",-12.864415168762209],["▁Prospect",-12.864457130432127],["▁Noah",-12.86450481414795],["▁Interactive",-12.86471176147461],["▁centaine",-12.86485767364502],["▁cerebral",-12.864971160888672],["▁Novel",-12.865013122558594],["▁Käufer",-12.865039825439451],["werfen",-12.865056991577148],["▁reluctant",-12.86514377593994],["ес",-12.86520004272461],["Look",-12.86521053314209],["Erkrankung",-12.86536693572998],["▁cucumber",-12.86536693572998],["/2017",-12.865399360656738],["▁flank",-12.865405082702637],["opportunité",-12.865667343139648],["zugleich",-12.865766525268556],["RAT",-12.865840911865234],["▁avantages",-12.865880012512209],["▁außer",-12.866008758544922],["GV",-12.866090774536133],["▁Continental",-12.866159439086914],["▁affiliation",-12.866159439086914],["▁ursprünglich",-12.86618423461914],["▁hardship",-12.86634922027588],["âme",-12.86647891998291],["▁hallway",-12.866576194763184],["▁afară",-12.866578102111816],["western",-12.866714477539062],["▁Jacket",-12.866802215576172],["▁culturelle",-12.866876602172852],["▁glaci",-12.866995811462402],["metoda",-12.867036819458008],["▁clerk",-12.867045402526855],["▁ordinance",-12.867185592651367],["▁Initial",-12.867197036743164],["waking",-12.86722469329834],["▁Secondary",-12.867366790771484],["▁Solomon",-12.867411613464355],["glomer",-12.867488861083984],["SYS",-12.867530822753906],["▁Florin",-12.867596626281738],["ffentlich",-12.867670059204102],["▁Printer",-12.867674827575684],["▁dimineata",-12.86774730682373],["▁stripes",-12.867748260498049],["plugged",-12.86776065826416],["öhl",-12.867836952209473],["infused",-12.867875099182127],["▁Rubber",-12.867895126342772],["paved",-12.86789894104004],["▁Devi",-12.867995262145996],["▁subway",-12.8681640625],["▁gases",-12.868306159973145],["▁reguli",-12.868371963500977],["▁Rebel",-12.868413925170898],["▁destructive",-12.86854648590088],["▁oferind",-12.868664741516112],["9001",-12.868876457214355],["CRA",-12.86891269683838],["why",-12.868932723999023],["sensul",-12.869036674499512],["guter",-12.869277000427246],["Empfehlung",-12.869338035583496],["▁convertible",-12.86953353881836],["▁predominantly",-12.869637489318848],["▁Mentor",-12.86964988708496],["Practic",-12.869720458984377],["▁echipă",-12.869754791259766],["onsite",-12.869853019714355],["▁zunehmend",-12.86994743347168],["▁Harbour",-12.87001609802246],["▁pineapple",-12.87013339996338],["▁gasoline",-12.870139122009276],["▁Jaguar",-12.870158195495604],["kno",-12.870259284973145],["▁heap",-12.870448112487791],["▁fictional",-12.870481491088867],["fiinta",-12.870753288269045],["▁Amber",-12.87081241607666],["▁Exclusive",-12.870929718017578],["▁Pharmaceutical",-12.870929718017578],["▁unterscheide",-12.871044158935549],["▁1942",-12.871116638183594],["▁Ceiling",-12.87115478515625],["developed",-12.871228218078612],["▁consacr",-12.87132453918457],["▁Membr",-12.871411323547363],["erton",-12.871447563171388],["habitation",-12.871685981750488],["▁longevity",-12.871726989746094],["▁Starbucks",-12.871728897094728],["▁poat",-12.871771812438965],["▁commissioner",-12.87179470062256],["pedia",-12.871938705444336],["popped",-12.872468948364258],["versorgung",-12.872525215148926],["▁Aktivitäten",-12.872525215148926],["▁Betreuung",-12.872525215148926],["▁afacere",-12.872968673706056],["▁Mechanical",-12.873323440551758],["▁Leiter",-12.873346328735352],["▁scaling",-12.873427391052246],["▁Slim",-12.87350082397461],["▁temperaturi",-12.873516082763672],["ACH",-12.873558044433594],["▁jährlich",-12.873682022094728],["▁photographie",-12.873722076416016],["▁préalable",-12.87372589111328],["▁părinți",-12.87372875213623],["▁Farmers",-12.873873710632324],["▁Printable",-12.873905181884766],["Früh",-12.873908996582031],["approved",-12.87398624420166],["otro",-12.874094009399414],["▁veneer",-12.874099731445312],["▁Warriors",-12.874122619628906],["▁Approach",-12.874149322509766],["Share",-12.874238967895508],["▁buds",-12.874252319335938],["▁Într",-12.874330520629885],["glichen",-12.87452507019043],["▁anbieten",-12.87452507019043],["MET",-12.874539375305176],["amélioration",-12.87468147277832],["ländische",-12.87468433380127],["nsgesamt",-12.874764442443848],["einiger",-12.874822616577148],["▁Förderung",-12.874876022338867],["destroying",-12.874910354614258],["▁accreditation",-12.874922752380373],["reminiscent",-12.875094413757324],["▁retriev",-12.87528133392334],["▁Flü",-12.875306129455566],["▁Monsieur",-12.875322341918944],["German",-12.87536334991455],["Orice",-12.875443458557127],["künftig",-12.875523567199709],["▁vorbi",-12.875639915466309],["▁intentionally",-12.875733375549316],["▁îngrij",-12.875743865966797],["▁laughed",-12.875850677490234],["▁Fiction",-12.875913619995115],["▁inteligent",-12.875914573669434],["▁Translation",-12.875953674316406],["greete",-12.875983238220217],["▁énergétique",-12.876123428344728],["uncovered",-12.876248359680176],["▁évidemment",-12.876523971557615],["▁Vietnamese",-12.876535415649414],["▁Libya",-12.876675605773926],["▁Trailer",-12.876734733581545],["▁Wohl",-12.876871109008787],["▁Congo",-12.87698745727539],["▁freut",-12.877002716064451],["zauber",-12.877090454101562],["▁Pân",-12.877142906188965],["▁mentine",-12.877333641052246],["▁welding",-12.87733554840088],["▁Mircea",-12.8773775100708],["▁optimism",-12.877455711364746],["VEL",-12.877504348754885],["oilea",-12.877540588378906],["▁thereafter",-12.877612113952637],["▁André",-12.877710342407228],["forschung",-12.877799987792969],["running",-12.878022193908691],["▁hostile",-12.878059387207031],["Homme",-12.87811279296875],["▁Satellite",-12.878129005432127],["▁collagen",-12.87841796875],["▁concedi",-12.878518104553224],["▁produziert",-12.87852954864502],["▁virgin",-12.878540992736816],["frant",-12.87857723236084],["▁teammates",-12.878744125366213],["▁faceti",-12.878802299499512],["▁Restoration",-12.87893295288086],["▁detached",-12.878935813903809],["▁Instructor",-12.878950119018556],["montag",-12.879227638244627],["▁borrowing",-12.879375457763672],["▁Retro",-12.879446983337402],["▁behandelt",-12.879536628723145],["▁Aussage",-12.879715919494627],["▁snorkel",-12.879734992980955],["▁Proceedings",-12.879754066467283],["▁Judy",-12.879776000976562],["▁Wendy",-12.879783630371094],["artă",-12.879920959472656],["▁Vergangenheit",-12.88013744354248],["▁Gegner",-12.880139350891112],["▁ulcer",-12.880166053771973],["wirksam",-12.880553245544434],["▁închis",-12.880560874938965],["▁emission",-12.88068962097168],["ulescu",-12.880754470825195],["▁bancar",-12.880819320678713],["compromising",-12.880924224853516],["▁Priest",-12.88115692138672],["▁Progress",-12.881318092346191],["▁punish",-12.88144588470459],["▁Afin",-12.881450653076172],["▁Bog",-12.881514549255373],["lunii",-12.881525039672852],["▁ressembl",-12.88157081604004],["▁Creation",-12.881644248962402],["effet",-12.881668090820312],["Versicherung",-12.881671905517578],["médias",-12.881672859191896],["▁Kritik",-12.881793975830078],["idia",-12.881896018981934],["▁Wasch",-12.881929397583008],["UAL",-12.88205909729004],["Approximately",-12.882149696350098],["izari",-12.882152557373049],["▁Dortmund",-12.882152557373049],["▁contul",-12.882343292236328],["▁Airways",-12.882408142089844],["sicherung",-12.882535934448242],["échelle",-12.882560729980469],["ADD",-12.882582664489746],["DIA",-12.88259506225586],["kabel",-12.88262176513672],["Media",-12.88268756866455],["ampli",-12.882894515991213],["▁quarry",-12.88295841217041],["▁acoper",-12.88307285308838],["halter",-12.883326530456545],["▁solicitor",-12.883684158325195],["phosphat",-12.883763313293455],["▁drown",-12.883773803710938],["congratulat",-12.884047508239746],["▁uneven",-12.884087562561035],["▁rupe",-12.884154319763184],["▁heureux",-12.88417911529541],["caractéristiques",-12.884221076965332],["60,000",-12.884283065795898],["ambigu",-12.884340286254885],["224",-12.884417533874512],["dov",-12.88454532623291],["▁Naturally",-12.884629249572754],["▁Ernst",-12.884634017944336],["Camp",-12.884757995605469],["▁Worldwide",-12.884909629821776],["▁antrenament",-12.885042190551758],["▁jocul",-12.88521671295166],["▁broccoli",-12.88537883758545],["▁fascinated",-12.88537883758545],["▁Abbey",-12.885387420654297],["▁aquarium",-12.885390281677246],["HAN",-12.885458946228027],["chaffung",-12.885480880737305],["137",-12.885503768920898],["rumors",-12.885515213012695],["reliance",-12.885557174682615],["▁vaccination",-12.8856782913208],["responsabilitate",-12.885777473449709],["▁legislati",-12.885782241821287],["ATT",-12.885826110839844],["206",-12.885896682739258],["▁miere",-12.885967254638672],["▁rezultatul",-12.885988235473633],["părea",-12.88599681854248],["zuführen",-12.886159896850586],["▁Kompetenz",-12.886187553405762],["▁nickname",-12.886195182800291],["pilot",-12.88620376586914],["▁ninth",-12.886252403259276],["▁Tyr",-12.886446952819824],["▁misuse",-12.886469841003418],["▁SUP",-12.886514663696287],["▁Attack",-12.88667106628418],["Smart",-12.88669490814209],["▁Philosoph",-12.886930465698242],["▁Alege",-12.88693141937256],["▁femeile",-12.886967658996582],["▁Heating",-12.88698673248291],["▁Cricket",-12.886999130249023],["▁scholar",-12.887049674987791],["Model",-12.887073516845703],["▁stimulating",-12.887182235717772],["▁industrielle",-12.887189865112305],["▁phenomena",-12.887303352355955],["▁Nahrung",-12.887414932250977],["▁Conditioner",-12.887433052062988],["führ",-12.887489318847656],["▁révolution",-12.88757610321045],["plastic",-12.887595176696776],["▁approximate",-12.887596130371094],["▁dienen",-12.887624740600586],["▁obsession",-12.887807846069336],["▁rectangular",-12.887807846069336],["Allemagne",-12.887808799743652],["▁Tanzania",-12.887824058532717],["border",-12.887884140014648],["▁crashed",-12.887958526611328],["visor",-12.887974739074709],["▁autorizat",-12.888072967529297],["▁Champagne",-12.888222694396973],["längst",-12.888238906860352],["▁realities",-12.888314247131348],["▁Keyword",-12.88831615447998],["▁GUI",-12.888495445251465],["▁simplified",-12.88865852355957],["▁Rack",-12.888681411743164],["▁Zahlen",-12.888693809509276],["growth",-12.888897895812988],["▁rehearsal",-12.888991355895996],["▁Epic",-12.888999938964844],["▁réussite",-12.889195442199709],["▁politician",-12.889263153076172],["▁emoți",-12.889378547668455],["▁delegation",-12.889449119567873],["▁со",-12.889464378356934],["oversized",-12.889477729797363],["▁Motto",-12.889481544494627],["1860",-12.889788627624512],["▁defective",-12.889803886413574],["brewing",-12.889852523803713],["linguistic",-12.890243530273438],["▁Hopkins",-12.890265464782717],["▁(2012)",-12.89030933380127],["crease",-12.890436172485352],["▁Versicherungs",-12.89052677154541],["▁Noble",-12.890752792358398],["▁Bekannt",-12.890896797180176],["▁vorstellen",-12.89095401763916],["▁suburban",-12.89097023010254],["DAC",-12.890995025634766],["▁scatter",-12.89103889465332],["▁Artificial",-12.8910551071167],["▁reactor",-12.891073226928713],["▁modelling",-12.89108943939209],["▁Holder",-12.891148567199709],["athon",-12.891149520874023],["147",-12.891190528869627],["▁stagn",-12.891257286071776],["ARY",-12.891261100769045],["Space",-12.89126968383789],["▁Gibson",-12.891718864440918],["▁Investigator",-12.89173698425293],["▁1914",-12.891818046569824],["▁Muhammad",-12.891868591308594],["▁shove",-12.89207363128662],["▁erklären",-12.892276763916016],["▁abdomen",-12.892277717590332],["▁Mazda",-12.892349243164062],["▁hemo",-12.892364501953123],["National",-12.892455101013184],["starken",-12.89267635345459],["▁Cyprus",-12.89268398284912],["▁tread",-12.89272117614746],["▁sweetness",-12.892725944519045],["stunden",-12.89279079437256],["▁couverture",-12.893059730529783],["▁Successful",-12.893060684204102],["▁oublier",-12.893171310424805],["▁esential",-12.893203735351562],["estival",-12.89321231842041],["gnac",-12.893280029296877],["▁Basement",-12.893457412719728],["presumably",-12.893497467041016],["▁mourn",-12.893561363220217],["armée",-12.893677711486816],["148",-12.893845558166504],["▁residue",-12.894006729125977],["▁metalic",-12.89404296875],["▁Zell",-12.89425277709961],["Build",-12.894280433654783],["▁prevalence",-12.894312858581545],["▁wrestling",-12.894312858581545],["▁ascuns",-12.894325256347656],["Sacred",-12.89434051513672],["Tec",-12.89438533782959],["▁Kindergarten",-12.894389152526855],["bindung",-12.894464492797852],["▁ritm",-12.894545555114746],["▁triste",-12.894651412963867],["▁introdus",-12.894758224487305],["/2016",-12.894824028015137],["▁română",-12.894899368286133],["▁bibli",-12.89490032196045],["▁cigar",-12.89491367340088],["Rie",-12.894990921020508],["▁intentional",-12.894999504089355],["▁cuprins",-12.895098686218262],["remarkably",-12.895129203796388],["▁printemps",-12.895133972167969],["▁declining",-12.895171165466309],["Magazin",-12.89552116394043],["▁săptămână",-12.895537376403809],["▁vérifier",-12.895549774169922],["▁Speise",-12.895584106445312],["▁reteta",-12.8956298828125],["heed",-12.89577293395996],["▁Compliance",-12.895946502685549],["▁embroidery",-12.895946502685549],["cried",-12.896025657653809],["▁(„",-12.896282196044922],["▁heck",-12.89629077911377],["▁sadness",-12.896501541137695],["▁impulse",-12.89658546447754],["ATH",-12.896740913391112],["▁lavender",-12.896773338317873],["uiesc",-12.896790504455566],["▁Disorder",-12.896876335144045],["stroke",-12.896991729736328],["▁piaţ",-12.8970365524292],["ournée",-12.897049903869627],["▁Barnes",-12.8971586227417],["▁scăzut",-12.897172927856444],["▁équipements",-12.89725112915039],["OND",-12.897375106811523],["▁Compet",-12.897424697875977],["▁Bestell",-12.89748477935791],["▁immédiatement",-12.897587776184082],["aparut",-12.89759635925293],["▁rainfall",-12.897882461547852],["oreille",-12.89797306060791],["▁ministère",-12.898014068603516],["iris",-12.898140907287598],["dyna",-12.898279190063477],["drücken",-12.898343086242676],["▁détect",-12.89834976196289],["▁fonctionnalité",-12.89840030670166],["▁imbalance",-12.89840030670166],["▁unpredictable",-12.89840030670166],["▁literar",-12.89846134185791],["▁Windsor",-12.898472785949709],["▁Unlimited",-12.898481369018556],["colour",-12.898674964904783],["▁Portfolio",-12.898810386657717],["149",-12.898883819580078],["volution",-12.898890495300291],["▁folgende",-12.899078369140623],["▁arbitration",-12.899105072021484],["kicking",-12.89913558959961],["zügig",-12.89923095703125],["▁1941",-12.899311065673828],["▁Drake",-12.89955997467041],["▁ausführlich",-12.899630546569824],["▁chaussure",-12.899630546569824],["▁intestinal",-12.89976692199707],["▁pilgrim",-12.90004062652588],["▁Bark",-12.900142669677734],["between",-12.900157928466797],["disposed",-12.900175094604492],["▁Dylan",-12.900218963623049],["ств",-12.900253295898438],["NOR",-12.900287628173828],["traces",-12.90038776397705],["▁moindre",-12.900500297546388],["▁$10,000",-12.900552749633787],["212",-12.900599479675291],["wusste",-12.900659561157228],["▁predictable",-12.900671005249023],["poţi",-12.900679588317873],["▁Celsius",-12.900860786437988],["gebunden",-12.90086841583252],["▁Legacy",-12.900891304016112],["movers",-12.90090274810791],["▁concret",-12.90098762512207],["▁simpla",-12.901050567626951],["rechnet",-12.901103973388672],["▁certainty",-12.901144981384276],["entrepreneurship",-12.901153564453123],["kohl",-12.901289939880373],["▁curte",-12.901311874389648],["▁Forbes",-12.901411056518556],["▁Zusatz",-12.901535987854004],["blending",-12.90163803100586],["▁variat",-12.90164279937744],["▁galaxy",-12.90168285369873],["▁safari",-12.90168571472168],["▁municipalities",-12.9017972946167],["▁Drept",-12.90180778503418],["aufnahme",-12.902128219604492],["▁endorse",-12.902223587036133],["einrichtung",-12.902244567871094],["Sync",-12.902270317077637],["abide",-12.902323722839355],["brushed",-12.902350425720217],["▁actiune",-12.902410507202148],["quaint",-12.902498245239258],["▁volatility",-12.902504920959473],["▁repetitive",-12.902505874633787],["▁découvr",-12.902560234069824],["Totodat",-12.902585983276367],["▁românesc",-12.902682304382324],["▁tempting",-12.902772903442385],["thesis",-12.902947425842283],["secure",-12.903013229370115],["delt",-12.903019905090332],["▁şef",-12.903167724609377],["▁epidemic",-12.903326988220217],["▁Appliance",-12.903327941894531],["cearcă",-12.903331756591797],["▁lodging",-12.903361320495604],["▁photographed",-12.903507232666016],["geschlagen",-12.903794288635254],["▁Methodist",-12.90380859375],["▁Transit",-12.90389347076416],["▁Länder",-12.903934478759766],["villa",-12.903986930847168],["▁toilette",-12.90403175354004],["anno",-12.904074668884276],["▁Aufnahme",-12.904091835021973],["▁Coral",-12.904099464416504],["pourraient",-12.904129981994627],["▁digestion",-12.904245376586914],["▁Vacation",-12.904274940490724],["▁Rugby",-12.90427589416504],["MIC",-12.904311180114746],["▁choc",-12.904417991638184],["2002",-12.904492378234863],["gestion",-12.904674530029297],["▁Zoom",-12.904745101928713],["essor",-12.904763221740724],["weighed",-12.904793739318848],["▁dispus",-12.904987335205078],["▁redemption",-12.90502643585205],["▁plaster",-12.905071258544922],["▁Quilt",-12.90507698059082],["▁teritoriul",-12.905088424682615],["ndern",-12.90509796142578],["▁expired",-12.905105590820312],["▁Tribunal",-12.905122756958008],["occupation",-12.9052152633667],["▁woodland",-12.905248641967772],["vieux",-12.905254364013672],["▁Midland",-12.905465126037598],["gât",-12.90571117401123],["électricité",-12.905800819396973],["▁vanzare",-12.905811309814451],["biologi",-12.905961036682127],["▁vive",-12.906060218811035],["▁Alarm",-12.906097412109377],["▁experiență",-12.9061279296875],["▁Loch",-12.906133651733398],["▁Pedro",-12.906194686889648],["▁detergent",-12.906217575073242],["language",-12.906554222106934],["▁sedan",-12.906655311584473],["▁Brady",-12.906736373901367],["▁compus",-12.906976699829102],["▁landfill",-12.906982421875],["giu",-12.907039642333984],["beziehung",-12.9070405960083],["▁picior",-12.907184600830078],["ALI",-12.907235145568848],["▁Commander",-12.907256126403809],["EPS",-12.907303810119627],["▁Textil",-12.907320022583008],["▁industria",-12.907339096069336],["lox",-12.907365798950195],["▁eclectic",-12.907453536987305],["▁gracious",-12.907477378845217],["Uniunea",-12.907525062561035],["bps",-12.90754222869873],["▁entertained",-12.907634735107422],["depinde",-12.907767295837402],["▁daylight",-12.907893180847168],["▁résistance",-12.907995223999023],["ARN",-12.908194541931152],["▁unavailable",-12.908201217651367],["Curtea",-12.908390045166016],["▁pores",-12.908502578735352],["▁Tonight",-12.908649444580078],["▁datori",-12.90869426727295],["▁gezielt",-12.908703804016112],["▁rupture",-12.90875244140625],["▁disput",-12.908848762512209],["▁sonstige",-12.908895492553713],["▁Ordnung",-12.90910816192627],["▁beschrieben",-12.909114837646484],["▁Rainbow",-12.90911865234375],["▁Werkzeug",-12.909136772155762],["GIN",-12.909354209899902],["facilitating",-12.909490585327148],["hunt",-12.90955638885498],["▁Serving",-12.909673690795898],["Writ",-12.909692764282228],["requisite",-12.909798622131348],["▁Kerry",-12.90989875793457],["▁riesig",-12.909957885742188],["▁Healing",-12.91030502319336],["▁1954",-12.910365104675291],["▁mousse",-12.910428047180176],["▁Positive",-12.910764694213867],["embodie",-12.910772323608398],["▁penetrate",-12.910774230957031],["endorsed",-12.910882949829102],["▁situatia",-12.910927772521973],["▁Unity",-12.911083221435549],["142",-12.911102294921877],["▁farmhouse",-12.911138534545898],["▁Handbook",-12.911368370056152],["▁symbolic",-12.911378860473633],["pristine",-12.911439895629885],["moitié",-12.911595344543455],["▁Sessions",-12.912017822265623],["technisch",-12.912116050720217],["▁lesquel",-12.912148475646973],["▁electronically",-12.912208557128906],["▁modificat",-12.912240982055664],["▁adjoin",-12.912242889404297],["actualité",-12.912256240844728],["vati",-12.91229248046875],["VENT",-12.912299156188965],["▁salsa",-12.912333488464355],["acupunctur",-12.912424087524414],["▁Opportunity",-12.912424087524414],["▁Inspection",-12.912425994873049],["▁vereinbart",-12.912425994873049],["▁Residents",-12.912426948547363],["▁perennial",-12.91242790222168],["CHAN",-12.912555694580078],["Search",-12.912572860717772],["UTE",-12.912696838378906],["▁Lens",-12.91270351409912],["▁Banner",-12.91281509399414],["aménagement",-12.912839889526367],["▁Decision",-12.91286849975586],["▁ferr",-12.912869453430176],["▁Transformation",-12.912878036499023],["▁Stamm",-12.912955284118652],["▁Galerie",-12.913003921508787],["onny",-12.913126945495604],["▁caption",-12.913195610046388],["▁viitorul",-12.91323471069336],["▁professionelle",-12.913281440734863],["drepturile",-12.913294792175291],["ylon",-12.913345336914062],["Société",-12.913387298583984],["AIS",-12.913456916809082],["March",-12.91350269317627],["▁Rav",-12.91357707977295],["▁1946",-12.913691520690918],["accompagnement",-12.913713455200195],["Liviu",-12.913716316223145],["▁Appeal",-12.913826942443848],["▁sentir",-12.913952827453612],["▁Indigenous",-12.914087295532228],["▁wizard",-12.914087295532228],["▁collateral",-12.914127349853516],["▁Proof",-12.914324760437012],["▁prze",-12.914398193359377],["▁obținut",-12.91450309753418],["COP",-12.914629936218262],["▁obiect",-12.914681434631348],["▁isolate",-12.914685249328612],["▁nieder",-12.914793014526367],["TECH",-12.914953231811523],["▁Sharing",-12.914998054504396],["Ideally",-12.915008544921877],["▁naked",-12.915059089660645],["horaire",-12.915130615234377],["▁prelucrare",-12.915180206298828],["▁forcément",-12.915349006652832],["▁ESPN",-12.915403366088867],["▁southwest",-12.9154634475708],["▁Timber",-12.915682792663574],["kleidung",-12.915748596191406],["MJ",-12.915854454040527],["Ped",-12.915889739990234],["▁lymph",-12.916181564331056],["wärme",-12.916399002075195],["▁Olivia",-12.916610717773438],["Ziua",-12.916705131530762],["reihe",-12.916747093200684],["▁selfish",-12.916752815246582],["▁geography",-12.916814804077148],["▁etaj",-12.916924476623535],["▁acquis",-12.91698932647705],["▁rejoin",-12.91701602935791],["7.1",-12.917097091674805],["▁paix",-12.91713809967041],["tirer",-12.917284965515137],["▁clase",-12.91745662689209],["▁blink",-12.917572021484377],["▁Interface",-12.917611122131348],["nado",-12.91765594482422],["RIT",-12.91777515411377],["ESC",-12.918120384216309],["▁carving",-12.918190002441406],["▁articolul",-12.918194770812988],["▁wreath",-12.918258666992188],["▁propaganda",-12.91826629638672],["▁Pair",-12.918267250061035],["▁pamant",-12.91831111907959],["▁venituri",-12.918357849121094],["rtz",-12.91835880279541],["uddle",-12.918529510498049],["uille",-12.918543815612791],["▁embed",-12.918654441833496],["0.05",-12.918655395507812],["▁Brighton",-12.918718338012695],["estens",-12.918742179870604],["▁occupational",-12.918862342834473],["ем",-12.918890953063965],["wünsche",-12.919081687927246],["▁Poetry",-12.91909408569336],["▁visualize",-12.919109344482422],["Across",-12.919121742248535],["▁essentielle",-12.919123649597168],["beratung",-12.919143676757812],["▁Guidelines",-12.91919231414795],["▁Fehl",-12.919198036193848],["▁liberty",-12.91921329498291],["▁Investigation",-12.91922378540039],["▁sunrise",-12.919266700744627],["▁12:00",-12.919541358947754],["venind",-12.919583320617676],["▁lotion",-12.919655799865724],["conscious",-12.91968822479248],["logists",-12.91973876953125],["▁judecător",-12.919893264770508],["▁Ecuador",-12.919928550720217],["▁ambulance",-12.91994857788086],["▁Already",-12.920026779174805],["▁eröffnet",-12.920090675354004],["▁naval",-12.92010498046875],["▁imposibil",-12.92011547088623],["▁Merry",-12.92011833190918],["▁Duncan",-12.920272827148438],["▁léger",-12.9203519821167],["▁delta",-12.920391082763672],["▁Machinery",-12.920578002929688],["▁craftsmanship",-12.920766830444336],["▁angezeigt",-12.9207763671875],["▁formidable",-12.9207763671875],["▁Startup",-12.920878410339355],["venus",-12.920969009399414],["▁tannin",-12.921019554138184],["collaborating",-12.921128273010254],["▁abrupt",-12.921152114868164],["emergence",-12.921171188354492],["Dienstleistungen",-12.921197891235352],["▁liefert",-12.921217918395996],["engagement",-12.921222686767578],["▁maximise",-12.921304702758787],["modeled",-12.9214448928833],["▁crane",-12.92148208618164],["▁effortless",-12.92154026031494],["▁Buffet",-12.92160701751709],["8000",-12.921648979187012],["▁Überblick",-12.921687126159668],["micro",-12.921981811523438],["▁vergleichen",-12.92204475402832],["143",-12.922080993652344],["5.6",-12.922094345092772],["▁odata",-12.922131538391112],["▁interviu",-12.922162055969238],["▁poliţi",-12.922375679016112],["plated",-12.922383308410645],["Roman",-12.922406196594238],["▁satisfactory",-12.92245388031006],["▁unanimous",-12.922459602355955],["▁întâln",-12.92246437072754],["nonsense",-12.922558784484863],["▁HOW",-12.922616004943848],["prezinta",-12.922639846801758],["▁măsura",-12.9226655960083],["▁Fuji",-12.92275619506836],["▁Meaning",-12.92278003692627],["aspiring",-12.922850608825684],["▁Suceava",-12.922863006591797],["arba",-12.922983169555664],["pressive",-12.922988891601562],["▁creek",-12.92301082611084],["trakt",-12.923023223876951],["▁fluffy",-12.923303604125977],["▁bateau",-12.92337131500244],["ме",-12.923545837402344],["UNG",-12.923609733581545],["motifs",-12.923907279968262],["Type",-12.923958778381348],["perçu",-12.924132347106934],["singurul",-12.924139022827148],["▁(2011)",-12.92418384552002],["▁hemp",-12.924263954162598],["betroffenen",-12.92431640625],["▁sermon",-12.92436981201172],["AID",-12.924545288085938],["3.7",-12.924627304077148],["▁heiß",-12.92463207244873],["▁bolnav",-12.924982070922852],["First",-12.92499542236328],["▁interrupt",-12.925040245056152],["phag",-12.925106048583984],["235",-12.925201416015623],["▁discoveries",-12.925262451171877],["▁Wellington",-12.925263404846191],["▁wechseln",-12.925298690795898],["▁strategically",-12.925379753112791],["▁iphone",-12.925440788269045],["geteilt",-12.925646781921388],["generative",-12.925748825073242],["▁Monroe",-12.925806045532228],["▁Execut",-12.925863265991213],["▁knitting",-12.925931930541992],["▁Couple",-12.925939559936523],["▁Shade",-12.926020622253418],["▁Taj",-12.926060676574709],["950",-12.926077842712402],["boiled",-12.92609977722168],["▁mixes",-12.926130294799805],["betroffene",-12.926156044006348],["▁continuation",-12.926169395446776],["▁begleitet",-12.926226615905762],["▁numerical",-12.926281929016112],["▁(2013)",-12.92630386352539],["▁nourish",-12.926399230957031],["oricar",-12.926485061645508],["focus",-12.926486015319824],["▁Crazy",-12.926651000976562],["▁ascend",-12.926671028137209],["▁vinde",-12.926855087280272],["roar",-12.926874160766602],["Vac",-12.926929473876951],["▁Zuschauer",-12.927068710327148],["izeze",-12.927179336547852],["▁Mindest",-12.92721939086914],["lingual",-12.92722988128662],["▁violet",-12.927264213562012],["▁Opfer",-12.92729949951172],["ARS",-12.927431106567385],["4.7",-12.92744255065918],["millennial",-12.927492141723633],["▁striv",-12.927639961242676],["▁bishop",-12.927680015563965],["▁Durham",-12.927708625793455],["opathic",-12.927817344665527],["Where",-12.92799949645996],["▁Rider",-12.928030014038086],["▁Reid",-12.928030967712402],["stumbled",-12.928156852722168],["deep",-12.92827320098877],["▁11:00",-12.928340911865234],["▁Essex",-12.928380966186523],["▁Analyst",-12.928397178649902],["feel",-12.928546905517578],["▁rave",-12.928601264953612],["▁Eddie",-12.928631782531738],["▁communiqué",-12.928756713867188],["[/",-12.928791046142578],["▁Tho",-12.929011344909668],["ffentlichkeit",-12.929019927978516],["instrument",-12.929126739501951],["▁metropolitan",-12.929179191589355],["▁experienţ",-12.929181098937988],["East",-12.929198265075684],["Compared",-12.929434776306152],["worn",-12.929484367370604],["berufliche",-12.92966365814209],["▁Umstände",-12.929710388183594],["individuellen",-12.929901123046877],["siehe",-12.929912567138672],["▁sfarsit",-12.929969787597656],["▁Strength",-12.929999351501465],["▁prejudice",-12.930024147033691],["▁shutdown",-12.93015956878662],["chatting",-12.93022346496582],["▁Gerne",-12.930227279663086],["▁Yum",-12.930305480957031],["▁coastline",-12.930387496948242],["▁headboard",-12.930623054504396],["▁politische",-12.930768966674805],["Sub",-12.930838584899902],["▁Henderson",-12.930870056152344],["▁astonishing",-12.930870056152344],["▁Dresden",-12.930871963500977],["▁strawberry",-12.93088436126709],["prenez",-12.930889129638672],["▁Monaco",-12.930912971496582],["▁empowered",-12.930953025817873],["fäl",-12.93109130859375],["▁creier",-12.93112087249756],["▁Equ",-12.931300163269045],["▁Selling",-12.931379318237305],["▁$35",-12.931483268737791],["konto",-12.931503295898438],["▁Procedure",-12.931715965270996],["▁reduziert",-12.931715965270996],["▁royalty",-12.931740760803224],["wyn",-12.931756019592283],["▁Unfall",-12.932141304016112],["NAT",-12.932161331176758],["▁grafic",-12.93251895904541],["▁Collective",-12.93256378173828],["▁Computing",-12.932564735412598],["▁Established",-12.932594299316406],["▁zest",-12.932598114013672],["venez",-12.932611465454102],["follow",-12.9326171875],["▁Motivation",-12.932640075683594],["▁dictator",-12.93275547027588],["whichever",-12.93281078338623],["▁întâmpl",-12.93293285369873],["Flüchtling",-12.932987213134766],["EMI",-12.933015823364258],["404",-12.933019638061523],["ICK",-12.93302059173584],["emplacement",-12.933191299438477],["complete",-12.933349609375],["advising",-12.933412551879885],["▁Administrative",-12.933481216430664],["▁deviation",-12.933496475219728],["▁experienț",-12.933500289916992],["lethor",-12.933996200561523],["▁compress",-12.934081077575684],["rival",-12.934173583984377],["reprendre",-12.934186935424805],["ugi",-12.934266090393066],["▁Invitation",-12.934267044067385],["▁retina",-12.934332847595217],["▁farther",-12.934335708618164],["▁fenêtre",-12.934799194335938],["6-7",-12.934815406799316],["zhou",-12.934834480285645],["▁Piano",-12.934840202331545],["▁Congrats",-12.935114860534668],["▁Configur",-12.935131072998049],["▁superficial",-12.935179710388184],["▁melting",-12.935315132141112],["▁raspunde",-12.935626983642578],["▁drip",-12.93564224243164],["östlich",-12.9358491897583],["189",-12.935925483703612],["▁Ludwig",-12.935959815979004],["▁keto",-12.935985565185549],["▁Bogdan",-12.936013221740724],["▁contracted",-12.936029434204102],["▁revive",-12.936100006103516],["▁cristal",-12.936232566833496],["▁mailbox",-12.936257362365724],["președintele",-12.936559677124023],["▁seekers",-12.936627388000488],["func",-12.936904907226562],["▁Markus",-12.93691349029541],["Unter",-12.936923027038574],["▁übertragen",-12.937003135681152],["▁adaptive",-12.937024116516112],["caster",-12.937051773071287],["▁geek",-12.937164306640623],["▁réservation",-12.937236785888672],["▁irritation",-12.937240600585938],["▁HDMI",-12.93734645843506],["Seeing",-12.937485694885254],["▁genul",-12.937569618225098],["▁catastrophe",-12.937662124633787],["▁Tweet",-12.937665939331056],["TZ",-12.937729835510254],["▁credible",-12.937946319580078],["▁cobor",-12.938064575195312],["▁realizeaz",-12.938159942626951],["journal",-12.938274383544922],["▁shaking",-12.938532829284668],["3-6",-12.938572883605955],["▁beneficiaz",-12.938605308532717],["▁Frankreich",-12.938633918762209],["committing",-12.9386568069458],["AMS",-12.938835144042969],["▁Feli",-12.939007759094238],["▁Producer",-12.939023971557615],["▁übrig",-12.93940544128418],["gemeinde",-12.939593315124512],["should",-12.939799308776855],["▁neurons",-12.939799308776855],["▁Agenda",-12.939833641052246],["▁hashtag",-12.939896583557127],["▁confortabil",-12.939897537231444],["520",-12.940008163452148],["bonded",-12.940033912658691],["▁următoare",-12.940191268920898],["▁volatile",-12.940223693847656],["infamous",-12.940225601196287],["seară",-12.940229415893556],["▁Sorge",-12.940346717834473],["▁Beiträge",-12.940420150756836],["▁îndeplin",-12.940449714660645],["gespräch",-12.940649032592772],["▁joueur",-12.940701484680176],["▁outsourcing",-12.940701484680176],["▁Guvernul",-12.940814018249512],["6-2",-12.940818786621094],["▁prioritize",-12.941068649291992],["▁duminică",-12.941076278686523],["▁resignation",-12.941076278686523],["▁Converter",-12.941079139709473],["hereby",-12.941155433654783],["▁stresses",-12.941299438476562],["▁brun",-12.941415786743164],["▁elev",-12.941423416137695],["▁Skip",-12.941479682922363],["540",-12.941499710083008],["TURE",-12.941603660583496],["▁Lynch",-12.941635131835938],["▁preveni",-12.941643714904783],["compatible",-12.941692352294922],["surveyed",-12.941702842712402],["▁Ausnahme",-12.941713333129885],["▁medicul",-12.941812515258787],["▁subtil",-12.941865921020508],["▁Quali",-12.941890716552734],["▁techno",-12.941900253295898],["presently",-12.94193172454834],["▁Müller",-12.941934585571287],["DIRECT",-12.941937446594238],["schuld",-12.941944122314451],["▁Bloomberg",-12.941994667053224],["feuer",-12.942181587219238],["▁Pharmacy",-12.942270278930664],["▁Schnitt",-12.942301750183104],["186",-12.942333221435549],["peaks",-12.942355155944824],["▁Gemeinsam",-12.94235897064209],["▁récemment",-12.94235897064209],["▁Pascal",-12.942490577697754],["filmed",-12.942523956298828],["RCA",-12.942548751831056],["▁virtuelle",-12.942622184753418],["▁dotat",-12.942630767822266],["logisch",-12.94271755218506],["▁Luck",-12.943005561828612],["cosy",-12.943132400512695],["▁Awareness",-12.94321632385254],["▁gesetzlich",-12.943263053894045],["padded",-12.943306922912598],["▁Lotus",-12.943395614624023],["urging",-12.9434175491333],["▁mushroom",-12.943426132202148],["▁adultes",-12.943527221679688],["▁Coca",-12.943571090698242],["▁recev",-12.943586349487305],["▁mantra",-12.943610191345217],["▁practise",-12.943644523620604],["▁acceler",-12.943663597106934],["bolster",-12.943756103515623],["▁compressed",-12.943818092346191],["TIN",-12.943899154663086],["▁aromatic",-12.944236755371094],["geleitet",-12.944408416748049],["▁fibr",-12.944443702697754],["exécut",-12.94444751739502],["▁unconscious",-12.94456958770752],["HAR",-12.944607734680176],["▁Gregory",-12.944661140441896],["▁Manila",-12.944738388061523],["ozitate",-12.944756507873535],["exemplary",-12.94480323791504],["éventuel",-12.944906234741213],["▁Craciun",-12.94493007659912],["▁tehnologii",-12.944931030273438],["▁Despre",-12.945138931274414],["▁1917",-12.945141792297363],["▁upfront",-12.945146560668944],["▁Iulia",-12.945280075073242],["▁erwähnt",-12.945359230041504],["▁magnesium",-12.945359230041504],["▁descriptive",-12.94536304473877],["▁consumul",-12.945364952087402],["▁10-15",-12.945423126220703],["▁erfüllen",-12.945611953735352],["gig",-12.94565773010254],["430",-12.945765495300291],["▁Migration",-12.945789337158203],["bră",-12.94579029083252],["▁réforme",-12.945863723754885],["▁york",-12.94610595703125],["dritten",-12.946109771728516],["cumva",-12.946182250976562],["▁Alumni",-12.946218490600586],["▁Ceramic",-12.946222305297852],["▁rappelle",-12.946236610412598],["▁pianist",-12.946248054504396],["twisted",-12.946306228637695],["earned",-12.94643211364746],["▁Hose",-12.946514129638672],["156",-12.946610450744627],["▁Salmon",-12.946687698364258],["Level",-12.946913719177246],["▁swirl",-12.947052001953123],["erfahrung",-12.947061538696287],["▁liabilities",-12.947078704833984],["praxis",-12.9470853805542],["IPO",-12.947089195251465],["▁screaming",-12.947092056274414],["emphasized",-12.947200775146484],["DEA",-12.947260856628418],["▁dermatolog",-12.947351455688477],["▁pacate",-12.947498321533203],["▁ansamblu",-12.947507858276367],["▁beteiligt",-12.947509765625],["▁Needles",-12.947574615478516],["▁organisiert",-12.947607040405272],["Pacific",-12.947639465332031],["actual",-12.947823524475098],["prindere",-12.94801139831543],["▁Indoor",-12.94834804534912],["▁Gewalt",-12.948431015014648],["▁rezid",-12.94850730895996],["censor",-12.948522567749023],["▁unlawful",-12.94882869720459],["▁Explain",-12.94887351989746],["▁Flame",-12.948897361755373],["▁brachte",-12.948941230773926],["▁Mustang",-12.94899845123291],["ectomy",-12.949044227600098],["▁deliberate",-12.949064254760742],["▁sparkle",-12.949225425720217],["▁inchis",-12.94926929473877],["▁Cristian",-12.949289321899414],["▁facture",-12.949291229248049],["▁Grundstück",-12.949292182922363],["außerhalb",-12.949300765991213],["coast",-12.949321746826172],["anilor",-12.949396133422852],["255",-12.94952392578125],["nterdisciplinary",-12.949576377868652],["▁Isabel",-12.949655532836914],["▁Städte",-12.949701309204102],["▁cicl",-12.949837684631348],["▁Zeug",-12.949905395507812],["▁Muskel",-12.949951171875],["▁indirectly",-12.950051307678224],["▁Vorbereitung",-12.950093269348145],["MMA",-12.95012378692627],["▁pudding",-12.950197219848633],["rax",-12.950389862060549],["▁Stimmung",-12.95052433013916],["▁hierarchy",-12.95052433013916],["partie",-12.950597763061523],["▁elevate",-12.950685501098633],["▁Persian",-12.950690269470217],["forensic",-12.95077896118164],["Become",-12.950854301452637],["leicht",-12.9508695602417],["▁staging",-12.950942039489746],["▁fühlt",-12.950965881347656],["fenster",-12.950979232788086],["▁unbelievable",-12.951089859008787],["„",-12.951260566711426],["▁Guatemala",-12.951387405395508],["LET",-12.95141315460205],["▁buff",-12.951454162597656],["▁Primul",-12.951626777648926],["▁mainland",-12.951702117919922],["campus",-12.951923370361328],["▁gefällt",-12.952075958251951],["BAN",-12.952153205871582],["finish",-12.952229499816896],["accustomed",-12.952251434326172],["▁Businesses",-12.95234203338623],["▁întreb",-12.95239543914795],["▁recomandă",-12.952425956726074],["▁pellet",-12.952474594116213],["▁GST",-12.952507972717283],["SEA",-12.952601432800291],["▁categorie",-12.952631950378418],["▁convainc",-12.95268440246582],["▁considéré",-12.952739715576172],["rois",-12.952853202819824],["▁thrust",-12.952898979187012],["ijk",-12.953001022338867],["gefüllt",-12.953118324279783],["▁situatii",-12.953327178955078],["▁Jacksonville",-12.95337200164795],["▁bakery",-12.953473091125488],["▁Accident",-12.953554153442385],["▁urmeaza",-12.953572273254396],["▁crib",-12.953593254089355],["getroffen",-12.953707695007324],["Based",-12.953877449035645],["Including",-12.95398235321045],["▁Morocco",-12.95398235321045],["▁casserole",-12.95398235321045],["▁enquiry",-12.953983306884766],["▁pahar",-12.954017639160156],["▁Unternehmer",-12.954025268554688],["électro",-12.954068183898926],["Marie",-12.95413589477539],["▁Sno",-12.954153060913086],["▁prostate",-12.954168319702148],["▁Wallace",-12.95426082611084],["empre",-12.954402923583984],["▁Multumesc",-12.954415321350098],["White",-12.954675674438477],["brief",-12.954751014709473],["▁kitten",-12.954751014709473],["füh",-12.95478057861328],["▁mankind",-12.954821586608888],["ENE",-12.95483112335205],["▁Ethics",-12.954848289489746],["▁Realty",-12.954946517944336],["▁Emerg",-12.954988479614258],["7-8",-12.955055236816406],["museum",-12.955096244812012],["BRE",-12.95518970489502],["▁kilometri",-12.955282211303713],["oyaume",-12.955286026000977],["▁Cambodia",-12.955288887023926],["▁bruit",-12.955304145812988],["▁sépar",-12.955334663391112],["mastered",-12.9554443359375],["shake",-12.955608367919922],["▁liaison",-12.955718994140623],["▁Boulder",-12.95571994781494],["▁tortilla",-12.955720901489258],["▁Fokus",-12.955731391906738],["▁Blair",-12.95573902130127],["▁disturbance",-12.955775260925291],["geladen",-12.955843925476074],["▁sunscreen",-12.955886840820312],["▁reuș",-12.955896377563477],["▁Braun",-12.95615577697754],["▁existente",-12.956157684326172],["stift",-12.956242561340332],["▁preot",-12.956387519836426],["▁doved",-12.956445693969728],["sexual",-12.956488609313965],["meanwhile",-12.956583976745604],["▁legislature",-12.956583976745604],["▁vermeiden",-12.956583976745604],["▁inequality",-12.95687484741211],["▁turc",-12.956881523132324],["ви",-12.95698070526123],["▁Kontrolle",-12.95702075958252],["▁Ursache",-12.95704174041748],["▁confess",-12.95704174041748],["▁poetic",-12.957109451293944],["attention",-12.957236289978027],["textured",-12.957386016845703],["GES",-12.957586288452148],["6-4",-12.957637786865234],["Ray",-12.957696914672852],["chromat",-12.957745552062988],["▁insightful",-12.957775115966797],["▁Navigation",-12.957887649536133],["▁destiny",-12.957887649536133],["▁ergeben",-12.957892417907717],["▁versteh",-12.958090782165527],["301",-12.958209037780762],["▁Exterior",-12.958321571350098],["église",-12.958322525024414],["▁Failure",-12.958322525024414],["▁Patricia",-12.958324432373049],["▁geschützt",-12.958328247070312],["intrarea",-12.95833969116211],["▁Forward",-12.958368301391602],["▁Portrait",-12.95844841003418],["▁enregistré",-12.958480834960938],["▁wagon",-12.958620071411133],["stealing",-12.958879470825195],["▁Numero",-12.958880424499512],["▁tradui",-12.958986282348633],["▁klassische",-12.959033966064451],["▁profitieren",-12.959043502807615],["▁laboratories",-12.95919132232666],["▁reconnaissance",-12.95919132232666],["ку",-12.959314346313477],["▁Petersburg",-12.959359169006348],["▁fertility",-12.959421157836914],["▁Understand",-12.959516525268556],["dehors",-12.959746360778809],["▁Knox",-12.959762573242188],["software",-12.959797859191896],["▁Celebration",-12.959823608398438],["4.6",-12.959897994995115],["quino",-12.959930419921877],["▁endeavour",-12.960073471069336],["▁temptation",-12.96013641357422],["▁Registry",-12.96035385131836],["IMP",-12.96050262451172],["bedingt",-12.960625648498535],["▁$60",-12.96084690093994],["▁Kriterien",-12.96093463897705],["▁strawberries",-12.960943222045898],["▁conspiracy",-12.96094799041748],["▁pouch",-12.960976600646973],["▁Alexandria",-12.961017608642578],["▁Mick",-12.961102485656738],["extra",-12.961114883422852],["▁Operator",-12.961151123046877],["enduring",-12.96132755279541],["▁smash",-12.961359024047852],["Euro",-12.961360931396484],["▁Nouvelle",-12.961370468139648],["▁Raspberry",-12.961370468139648],["▁präsentieren",-12.961380004882812],["▁electrician",-12.96140480041504],["▁cheerful",-12.961472511291504],["▁chargé",-12.961508750915527],["▁Diskussion",-12.961511611938477],["▁surpass",-12.961604118347168],["▁Acces",-12.96170139312744],["tausend",-12.96177101135254],["▁vigorous",-12.96180820465088],["▁tava",-12.961810111999512],["CHO",-12.96193790435791],["▁1951",-12.961941719055176],["▁Umsatz",-12.96201992034912],["▁slavery",-12.962055206298828],["travel",-12.962294578552246],["▁correspondent",-12.962297439575195],["▁$150",-12.962307929992676],["▁stärker",-12.962594985961914],["Alb",-12.96264362335205],["▁Lopez",-12.962682723999023],["▁longueur",-12.962767601013184],["▁successive",-12.962772369384766],["▁(2015)",-12.96278190612793],["teig",-12.962790489196776],["custom",-12.962944984436035],["TIM",-12.963099479675291],["▁Escape",-12.963174819946287],["▁Sekunden",-12.963349342346191],["tiré",-12.963444709777832],["▁chantier",-12.963489532470703],["▁saturated",-12.963555335998535],["▁confrontation",-12.963804244995115],["▁biography",-12.963805198669434],["zuerst",-12.9639892578125],["▁rencontré",-12.963991165161133],["▁harmless",-12.96412181854248],["Branche",-12.964139938354492],["▁QR",-12.964380264282228],["▁Ereignis",-12.964430809020996],["▁verkaufen",-12.96444320678711],["0:00",-12.96451187133789],["Association",-12.96469783782959],["▁Santiago",-12.964865684509276],["Control",-12.964993476867676],["▁Angriff",-12.9650297164917],["lase",-12.96505069732666],["▁sfaturi",-12.965224266052246],["▁Comprehensive",-12.965304374694824],["▁Shepherd",-12.965304374694824],["▁exponential",-12.965304374694824],["▁penetration",-12.965304374694824],["▁comble",-12.965394973754885],["ionar",-12.965557098388672],["slept",-12.965563774108888],["▁Spice",-12.965633392333984],["mAh",-12.965688705444336],["▁Vertreter",-12.965747833251951],["fehler",-12.965752601623535],["▁Scroll",-12.96599292755127],["▁WARRANT",-12.966179847717283],["▁minimise",-12.966326713562012],["▁Dept",-12.966474533081056],["▁urinar",-12.96661376953125],["établir",-12.966619491577148],["verhältnis",-12.966713905334473],["▁glowing",-12.966979026794434],["kulturelle",-12.966984748840332],["▁Pediatric",-12.96705722808838],["▁inconvenience",-12.96705722808838],["Antoine",-12.967121124267578],["▁Heck",-12.967164993286133],["▁couches",-12.967265129089355],["▁1938",-12.967331886291504],["maybe",-12.967333793640137],["ETA",-12.9673433303833],["▁solaire",-12.96748161315918],["▁Zürich",-12.967495918273926],["computer",-12.96754550933838],["milk",-12.96756362915039],["он",-12.967585563659668],["modalitate",-12.967608451843262],["spanning",-12.967655181884766],["▁Crypto",-12.96774959564209],["▁Spotify",-12.967935562133787],["mycin",-12.967944145202637],["▁similarities",-12.96811294555664],["▁eclipse",-12.968377113342283],["Map",-12.968610763549805],["double",-12.96861743927002],["corporate",-12.968734741210938],["▁Hindi",-12.968853950500488],["battling",-12.968866348266602],["▁habituel",-12.969098091125488],["▁Transition",-12.969196319580078],["▁luptă",-12.96920394897461],["▁trainee",-12.969219207763672],["LIS",-12.96922492980957],["▁Vatican",-12.96925449371338],["Archived",-12.9692964553833],["Connect",-12.969305038452148],["▁prealabil",-12.969307899475098],["▁Chambre",-12.969327926635742],["stuhl",-12.969440460205078],["▁arrivé",-12.969557762145996],["▁Urteil",-12.969575881958008],["▁scrutiny",-12.969818115234377],["▁memoir",-12.969854354858398],["▁innovant",-12.9699068069458],["▁sublime",-12.969943046569824],["children",-12.970004081726074],["▁Handwerk",-12.970056533813477],["▁campuses",-12.97026824951172],["▁durabil",-12.970502853393556],["▁immersive",-12.970632553100586],["▁Magnet",-12.970732688903809],["läufe",-12.970808029174805],["▁Techno",-12.970837593078612],["MAP",-12.9710693359375],["7.2",-12.971145629882812],["▁Schwimm",-12.971181869506836],["BOOK",-12.971186637878418],["188",-12.971441268920898],["▁Supervisor",-12.971498489379885],["prévue",-12.971691131591797],["needed",-12.971813201904297],["▁creditors",-12.97182273864746],["▁brin",-12.971837043762209],["▁Neck",-12.971900939941406],["▁Salut",-12.971988677978516],["▁despair",-12.972105979919434],["▁Sauce",-12.972261428833008],["▁Westminster",-12.972335815429688],["▁langfristig",-12.972335815429688],["▁northeast",-12.972365379333496],["▁încercat",-12.972399711608888],["▁nausea",-12.972408294677734],["▁Paypal",-12.972440719604492],["▁Arrow",-12.972469329833984],["▁Travis",-12.972633361816406],["(2009)",-12.972713470458984],["▁Rising",-12.972719192504885],["termes",-12.973097801208496],["Australie",-12.973154067993164],["▁scarf",-12.973187446594238],["klassischen",-12.97337818145752],["▁boug",-12.973466873168944],["DOT",-12.97360610961914],["▁Trink",-12.97361946105957],["▁bestätigt",-12.97365951538086],["▁officiel",-12.97370433807373],["Produkt",-12.973873138427734],["DNA",-12.974140167236328],["▁*******",-12.97426700592041],["GAR",-12.974271774291992],["therapeut",-12.974377632141112],["187",-12.974420547485352],["▁Louisville",-12.974493026733398],["▁geöffnet",-12.97462272644043],["Watch",-12.97464084625244],["85%",-12.974678993225098],["▁Candida",-12.974698066711426],["▁Kathy",-12.974703788757324],["▁Animation",-12.974711418151855],["planung",-12.97471523284912],["woche",-12.974730491638184],["Video",-12.974966049194336],["▁Automation",-12.97507095336914],["▁foliage",-12.97507381439209],["▁evenimentului",-12.975175857543944],["SEN",-12.97536277770996],["▁Dialog",-12.975372314453123],["▁ZIP",-12.975372314453123],["▁vieții",-12.97537612915039],["▁passionné",-12.975425720214844],["▁WOW",-12.97544002532959],["ectiv",-12.975464820861816],["▁vorbesc",-12.975482940673828],["▁computational",-12.975533485412598],["▁idiot",-12.97557258605957],["▁stigma",-12.97567081451416],["▁multumesc",-12.975870132446287],["▁sărbători",-12.975870132446287],["▁Advantage",-12.975906372070312],["▁alegeri",-12.976024627685549],["▁philosopher",-12.976031303405762],["RIE",-12.976117134094238],["refundable",-12.976221084594728],["▁Sofia",-12.97623348236084],["▁încheiat",-12.976313591003418],["meilleures",-12.976473808288574],["critical",-12.976744651794434],["▁cavity",-12.976766586303713],["▁ressort",-12.976792335510254],["strong",-12.976798057556152],["▁Backup",-12.976948738098145],["▁Zeitraum",-12.977023124694824],["▁Szene",-12.977027893066406],["▁Candle",-12.977173805236816],["▁ciocolat",-12.977198600769045],["etched",-12.977227210998535],["ан",-12.977302551269531],["▁Anchor",-12.977365493774414],["equate",-12.97747039794922],["▁bulg",-12.977476119995115],["▁motorist",-12.977524757385254],["träglich",-12.977736473083496],["please",-12.97793674468994],["different",-12.97801113128662],["▁Accel",-12.97813606262207],["Proiectul",-12.97829818725586],["▁cabbage",-12.97852897644043],["▁télécharger",-12.97852897644043],["▁Presentation",-12.97856330871582],["▁Struktur",-12.97862148284912],["bücher",-12.978650093078612],["▁flatter",-12.978672981262209],["emprunt",-12.979074478149414],["▁oriental",-12.979111671447754],["▁Turnier",-12.979166984558104],["brücke",-12.97917366027832],["▁légumes",-12.979416847229004],["gerechnet",-12.979595184326172],["flooded",-12.979621887207031],["LER",-12.979679107666016],["üben",-12.97973918914795],["internaute",-12.979888916015623],["▁Austausch",-12.979935646057127],["gefordert",-12.980034828186035],["▁adoptat",-12.980277061462402],["▁erinnern",-12.980305671691896],["▁dolphin",-12.980307579040527],["▁Parkinson",-12.980308532714844],["büro",-12.980310440063477],["▁Crest",-12.980368614196776],["▁Ikea",-12.98043727874756],["▁ecologic",-12.980470657348633],["mplă",-12.98065185546875],["▁șef",-12.980655670166016],["coop",-12.980868339538574],["▁Carson",-12.980900764465332],["▁uşor",-12.981054306030272],["▁exert",-12.981070518493652],["▁countertop",-12.981114387512209],["ntended",-12.981136322021484],["▁Civic",-12.981313705444336],["▁attentes",-12.98133373260498],["gesetzlichen",-12.981356620788574],["frischen",-12.981475830078123],["▁Bottle",-12.98163604736328],["▁cautare",-12.982080459594728],["▁waterfront",-12.982226371765137],["▁centerpiece",-12.982312202453612],["▁Castel",-12.982441902160645],["510",-12.98270034790039],["capped",-12.982709884643556],["▁mattresses",-12.982850074768066],["▁readiness",-12.982865333557127],["diag",-12.982970237731934],["▁geändert",-12.982980728149414],["▁complained",-12.983051300048828],["▁diary",-12.983073234558104],["▁ceremonies",-12.983144760131836],["▁următor",-12.983181953430176],["▁Engel",-12.983270645141602],["▁disconnect",-12.9832763671875],["▁Silvi",-12.983282089233398],["▁eingerichtet",-12.9834566116333],["medizin",-12.983512878417969],["▁majestic",-12.983869552612305],["▁Random",-12.983943939208984],["▁Equity",-12.984046936035156],["▁Echipa",-12.984111785888672],["са",-12.984163284301758],["316",-12.984179496765137],["▁Formation",-12.984183311462402],["inland",-12.98421859741211],["appuy",-12.984301567077637],["TAN",-12.984481811523438],["slipped",-12.984918594360352],["Certains",-12.985247611999512],["▁Silber",-12.98525333404541],["▁reçoi",-12.985257148742676],["▁Monthly",-12.985323905944824],["calculating",-12.98549461364746],["▁scratches",-12.98554515838623],["▁concurrence",-12.985654830932615],["▁Stärke",-12.985662460327148],["▁intermediar",-12.985751152038574],["▁erlebt",-12.98579216003418],["gesellschaftlich",-12.986037254333496],["▁Volk",-12.986041069030762],["▁Ansprüche",-12.986101150512695],["▁cumulative",-12.986103057861328],["▁Randy",-12.986183166503906],["▁instituții",-12.98622989654541],["together",-12.986489295959473],["▁Sap",-12.986539840698242],["▁modificari",-12.98655128479004],["▁erosion",-12.986572265625],["▁wicked",-12.986577033996582],["soaked",-12.986613273620604],["▁cellar",-12.9866361618042],["ignoring",-12.986726760864258],["▁scarce",-12.986815452575684],["ueuse",-12.98697280883789],["▁bibliothèque",-12.986995697021484],["critères",-12.987017631530762],["▁overlay",-12.98716640472412],["IPA",-12.98737907409668],["director",-12.987393379211426],["▁Krishna",-12.987444877624512],["▁methodologies",-12.987451553344728],["iocese",-12.987513542175291],["▁saucepan",-12.987713813781738],["184",-12.987948417663574],["275",-12.987981796264648],["▁précieu",-12.988165855407717],["▁academy",-12.9883394241333],["460",-12.988438606262209],["ERN",-12.988679885864258],["▁emoti",-12.988725662231444],["▁télévision",-12.988823890686035],["EDIT",-12.988901138305664],["▁Valeri",-12.98904514312744],["▁Charity",-12.98911190032959],["Voilà",-12.989297866821287],["▁lipsit",-12.989356994628906],["▁unleash",-12.989373207092283],["▁suferit",-12.989506721496582],["▁Lifestyle",-12.98953914642334],["▁Edel",-12.989603996276855],["▁Derek",-12.989643096923828],["▁Manga",-12.989801406860352],["▁increment",-12.989990234375],["▁plötzlich",-12.99013328552246],["▁5:30",-12.990208625793455],["▁Republicii",-12.990246772766112],["▁capitalism",-12.990293502807615],["ROW",-12.990510940551758],["▁Paar",-12.990523338317873],["allée",-12.99057674407959],["▁motto",-12.990610122680664],["Schäden",-12.990630149841309],["▁£10",-12.99063491821289],["RIP",-12.990728378295898],["courir",-12.990761756896973],["rocky",-12.990944862365724],["▁Sunshine",-12.991031646728516],["▁chimney",-12.991044998168944],["▁préfér",-12.991153717041016],["▁relaxare",-12.99118995666504],["▁colabora",-12.99134349822998],["liefer",-12.99142837524414],["▁ordentlich",-12.99148654937744],["▁dauerhaft",-12.991535186767578],["kammer",-12.991572380065918],["▁Basket",-12.991579055786133],["Site",-12.991657257080078],["▁Regina",-12.991716384887695],["▁simulate",-12.991868019104004],["▁wrestle",-12.991939544677734],["wertig",-12.991986274719238],["▁Christie",-12.992018699645996],["download",-12.992033004760742],["▁torch",-12.992213249206545],["riya",-12.992216110229492],["▁Grie",-12.992247581481934],["bitten",-12.992356300354004],["▁spezialisiert",-12.99238109588623],["▁Parade",-12.992408752441406],["▁migraine",-12.992830276489258],["▁Armstrong",-12.992846488952637],["▁cutie",-12.9928560256958],["▁bullying",-12.992889404296877],["▁Estonia",-12.99293041229248],["▁harvested",-12.992948532104492],["▁Hunger",-12.992971420288086],["▁frapp",-12.992999076843262],["REM",-12.993117332458496],["sensor",-12.993189811706545],["▁GREAT",-12.993293762207031],["▁thyroid",-12.99330234527588],["▁mărturi",-12.993335723876951],["ocupă",-12.993809700012209],["▁Wealth",-12.993812561035156],["▁convins",-12.993841171264648],["141",-12.993876457214355],["▁vingt",-12.993901252746582],["▁revel",-12.994054794311523],["▁Adri",-12.994083404541016],["▁remix",-12.994207382202148],["▁fermentation",-12.99425220489502],["▁achiziti",-12.994352340698242],["dream",-12.994426727294922],["▁contemporan",-12.994632720947266],["▁youngsters",-12.994685173034668],["▁Hartford",-12.994745254516602],["▁Wagen",-12.994988441467283],["▁Celebr",-12.995214462280272],["leveraging",-12.99527645111084],["▁Iasi",-12.99549674987793],["tackling",-12.9955415725708],["▁intrinsic",-12.995553970336914],["▁Macedon",-12.995603561401367],["NIA",-12.995784759521484],["▁bliss",-12.995905876159668],["▁gradual",-12.995908737182615],["▁inregistrat",-12.995981216430664],["▁volleyball",-12.995986938476562],["▁offiziell",-12.996054649353027],["▁carré",-12.99611759185791],["Mostly",-12.996174812316896],["▁Harley",-12.996193885803224],["▁locati",-12.996216773986816],["▁Klo",-12.996223449707031],["▁Equal",-12.996238708496094],["▁citat",-12.99636936187744],["▁argint",-12.996478080749512],["prüft",-12.99652862548828],["▁Fence",-12.996600151062012],["positive",-12.996988296508787],["▁Kaz",-12.99724578857422],["▁distortion",-12.997342109680176],["▁sâmbătă",-12.997342109680176],["▁frontière",-12.997346878051758],["▁revanch",-12.997394561767578],["▁Held",-12.997465133666992],["▁Hobb",-12.99776554107666],["▁reuşit",-12.997796058654783],["deem",-12.997880935668944],["▁dorint",-12.997902870178224],["▁Anlagen",-12.99790859222412],["▁cheval",-12.997973442077637],["630",-12.99806022644043],["▁implementare",-12.99808406829834],["▁curator",-12.99821662902832],["▁legislator",-12.998247146606444],["▁potassium",-12.998247146606444],["▁veterinarian",-12.998247146606444],["▁domenii",-12.998273849487305],["▁revue",-12.998310089111328],["Vielen",-12.998333930969238],["africain",-12.998570442199709],["before",-12.998680114746094],["▁Bestandteil",-12.998702049255373],["▁(2010)",-12.998767852783203],["▁Arlington",-12.999153137207031],["▁Gründung",-12.999153137207031],["▁Sprinkle",-12.999153137207031],["▁Princeton",-12.999186515808104],["chirurg",-12.999228477478027],["▁laissé",-12.999357223510742],["whoever",-12.999384880065918],["▁pasture",-12.999431610107422],["ajute",-12.999436378479004],["▁joyful",-12.999494552612305],["etapa",-12.999905586242676],["ESP",-13.000017166137695],["▁Iohannis",-13.000059127807615],["▁10:30",-13.000127792358398],["▁Kingston",-13.000140190124512],["▁contender",-13.000164031982422],["▁Damage",-13.000177383422852],["▁schreibt",-13.000482559204102],["sstisch",-13.00063133239746],["Associated",-13.00072956085205],["▁disposable",-13.000782012939451],["veranstaltung",-13.00096607208252],["▁puppet",-13.00100040435791],["pong",-13.001093864440918],["▁Chronicle",-13.001176834106444],["222",-13.001286506652832],["intuit",-13.00139617919922],["inscrire",-13.001429557800291],["▁speeches",-13.001431465148926],["▁Eingang",-13.001775741577148],["▁Adidas",-13.001875877380373],["▁cemetery",-13.001877784729004],["▁juicy",-13.001885414123535],["▁wertvolle",-13.0018892288208],["▁militari",-13.001917839050291],["China",-13.00196361541748],["ecția",-13.002041816711426],["luster",-13.002063751220703],["auftrag",-13.00234317779541],["▁Marius",-13.002523422241213],["▁crossover",-13.002555847167969],["▁enthusiast",-13.002555847167969],["▁cantitate",-13.002630233764648],["▁animat",-13.002634048461914],["Park",-13.002793312072754],["▁unchanged",-13.00279426574707],["russia",-13.00281810760498],["instant",-13.002833366394045],["ţiunea",-13.002835273742676],["▁franchi",-13.002920150756836],["▁mobiliz",-13.002963066101074],["athlet",-13.003013610839844],["▁Cardio",-13.0031099319458],["▁supus",-13.003119468688965],["▁Griff",-13.003137588500977],["flakes",-13.003217697143556],["soluble",-13.003250122070312],["Known",-13.00369358062744],["leaking",-13.003741264343262],["▁Holocaust",-13.004148483276367],["gift",-13.004197120666504],["▁tradiţi",-13.004359245300291],["▁southeast",-13.004498481750488],["▁correspondant",-13.00460147857666],["Isaiah",-13.004603385925291],["▁diagonal",-13.004606246948242],["▁Probabil",-13.004680633544922],["▁dégust",-13.004791259765623],["▁Naval",-13.004802703857422],["▁cultivation",-13.004839897155762],["▁Vertrieb",-13.004849433898926],["▁pony",-13.004854202270508],["▁Throw",-13.0050048828125],["little",-13.005010604858398],["▁remarque",-13.005074501037598],["▁parcare",-13.005085945129396],["3.8",-13.00518798828125],["▁renunt",-13.005330085754396],["▁Rewards",-13.005487442016602],["▁Thur",-13.005496978759766],["▁underestimate",-13.005515098571776],["▁frankly",-13.005516052246094],["Bretagne",-13.005517959594728],["axial",-13.005537986755373],["▁identities",-13.0055570602417],["▁Harvest",-13.00561237335205],["▁skippe",-13.00561237335205],["▁Boutique",-13.005670547485352],["▁intuition",-13.005746841430664],["▁Rotary",-13.00581169128418],["▁SERVICE",-13.00587558746338],["▁refill",-13.005915641784668],["▁arcade",-13.006060600280762],["▁komme",-13.006386756896973],["▁irrelevant",-13.006427764892578],["▁Sortiment",-13.006429672241213],["▁scriitor",-13.006488800048828],["▁clicked",-13.006516456604004],["▁ciel",-13.006610870361328],["▁Caesar",-13.00680160522461],["hound",-13.006803512573242],["whipped",-13.006843566894531],["licate",-13.00686740875244],["▁formatting",-13.006986618041992],["▁mosaic",-13.007028579711914],["(2017)",-13.007122039794922],["777",-13.007257461547852],["▁Messenger",-13.007342338562012],["dulci",-13.007369041442873],["▁(2016)",-13.007420539855955],["▁popcorn",-13.00742530822754],["▁Presidential",-13.007497787475586],["▁brokerage",-13.007564544677734],["dachte",-13.00762939453125],["verkauf",-13.00768756866455],["▁pomme",-13.00772190093994],["▁fret",-13.007822036743164],["▁revere",-13.007894515991213],["▁Canvas",-13.008092880249023],["▁Nottingham",-13.008255004882812],["▁Refuge",-13.008257865905762],["▁injustice",-13.008259773254396],["▁External",-13.008264541625977],["dincolo",-13.008304595947266],["directing",-13.008511543273926],["▁Toulouse",-13.008710861206056],["▁cheltuieli",-13.008746147155762],["▁distrus",-13.008816719055176],["impôt",-13.008912086486816],["landschaft",-13.00896453857422],["passion",-13.00897216796875],["▁Hobby",-13.009099006652832],["significant",-13.009115219116213],["▁Guinea",-13.009209632873535],["pecializing",-13.009237289428713],["pozitie",-13.00924587249756],["bourne",-13.009295463562012],["▁mâini",-13.00933837890625],["▁CFR",-13.009395599365234],["▁Konflikt",-13.009626388549805],["▁Vodafone",-13.009626388549805],["OUG",-13.009681701660156],["▁Übersicht",-13.009735107421877],["negotiated",-13.00990390777588],["▁gliss",-13.010042190551758],["▁Kapital",-13.010111808776855],["QC",-13.0101318359375],["▁gentleman",-13.01024341583252],["Inde",-13.01051425933838],["▁immensely",-13.010639190673828],["Business",-13.010702133178713],["▁04/2",-13.010882377624512],["societatea",-13.010973930358888],["fluoxetine",-13.011000633239746],["▁Wachstum",-13.011000633239746],["▁récit",-13.011011123657228],["▁Preisvergleich",-13.011034965515137],["▁Mohammed",-13.011460304260254],["gefangen",-13.011462211608888],["▁calibration",-13.011608123779297],["bekam",-13.011728286743164],["▁FUN",-13.011758804321287],["wasting",-13.011839866638184],["▁prosper",-13.011862754821776],["▁Afghan",-13.011919021606444],["▁Heroes",-13.011921882629396],["▁VMware",-13.011927604675291],["exception",-13.011969566345217],["▁înlocui",-13.01244831085205],["Neu",-13.01246452331543],["initiation",-13.01250171661377],["▁Peel",-13.01281452178955],["▁cunoaste",-13.012836456298828],["▁menschliche",-13.012849807739258],["▁poarta",-13.012852668762209],["▁congestion",-13.012930870056152],["▁îmbunătăț",-13.013103485107422],["EUR",-13.013171195983888],["▁sushi",-13.01326847076416],["Jährige",-13.01329517364502],["espoir",-13.013423919677734],["inspected",-13.013444900512695],["▁etape",-13.013677597045898],["▁pharmacist",-13.013754844665527],["flect",-13.013840675354004],["Changing",-13.01393222808838],["▁radiant",-13.014046669006348],["Daddy",-13.014275550842283],["▁categorii",-13.014360427856444],["quête",-13.014628410339355],["▁skincare",-13.014657020568848],["hébergement",-13.014674186706545],["840",-13.01477336883545],["awaiting",-13.014822006225586],["▁murdered",-13.014841079711914],["▁proficient",-13.014863967895508],["▁chauffe",-13.014899253845217],["▁contur",-13.014937400817873],["▁rejoindre",-13.015145301818848],["▁foloseste",-13.01521110534668],["▁Grup",-13.01535701751709],["152",-13.01541519165039],["▁workspace",-13.015438079833984],["▁primitive",-13.015546798706056],["▁Ginger",-13.015557289123535],["▁chemotherapy",-13.015595436096191],["▁platinum",-13.015596389770508],["▁sarcina",-13.01559829711914],["▁revival",-13.015820503234863],["▁Meditation",-13.016111373901367],["▁Vogel",-13.0161714553833],["IMA",-13.016359329223633],["▁handset",-13.016486167907717],["▁Nachmittag",-13.01651668548584],["▁déchets",-13.016517639160156],["▁Cornwall",-13.0165433883667],["▁Curry",-13.016605377197266],["▁cuplu",-13.016607284545898],["▁Birth",-13.016822814941406],["forward",-13.01693630218506],["Dezvoltare",-13.016977310180664],["▁irgendwie",-13.016980171203612],["▁erzielt",-13.016993522644045],["LOS",-13.01700496673584],["▁overload",-13.01708984375],["▁repay",-13.01713752746582],["urlaub",-13.017155647277832],["7.0",-13.01716423034668],["▁Wheat",-13.01748275756836],["▁degrab",-13.017488479614258],["▁Brock",-13.017491340637209],["▁inhabit",-13.0176362991333],["▁Speech",-13.017834663391112],["directional",-13.017862319946287],["▁Mandel",-13.017909049987791],["▁erscheinen",-13.01791763305664],["consciously",-13.018059730529783],["▁sunet",-13.0182523727417],["▁stole",-13.018259048461914],["▁Utilis",-13.018349647521973],["▁obstruction",-13.01852798461914],["▁mindfulness",-13.0186767578125],["partnering",-13.01868724822998],["CSI",-13.01881980895996],["204",-13.01905632019043],["▁squirrel",-13.019286155700684],["▁Rwanda",-13.01975154876709],["▁hunters",-13.019850730895996],["▁revitaliz",-13.02022647857666],["▁avansat",-13.02023220062256],["▁Yamaha",-13.020294189453123],["foto",-13.020435333251951],["▁Vegan",-13.020469665527344],["▁pitched",-13.02053165435791],["▁Vortrag",-13.020540237426758],["traditional",-13.020809173583984],["offrent",-13.021024703979492],["▁Expression",-13.021315574645996],["▁apprécié",-13.021354675292969],["▁Christina",-13.021408081054688],["eilig",-13.021464347839355],["▁verhindern",-13.021599769592283],["culturii",-13.021607398986816],["Aşa",-13.021703720092772],["▁enamel",-13.021756172180176],["▁fördern",-13.021771430969238],["▁acheté",-13.021798133850098],["▁eventuell",-13.021842956542969],["▁Sino",-13.021873474121094],["▁totodat",-13.022008895874023],["accelerated",-13.022202491760254],["▁strengthened",-13.02245044708252],["corro",-13.022482872009276],["4,5",-13.02253246307373],["▁Beverly",-13.022533416748049],["ulevard",-13.022615432739258],["▁hamper",-13.022644996643066],["▁Tempe",-13.02268123626709],["▁Yacht",-13.022799491882324],["▁LGBT",-13.022871017456056],["▁fingertips",-13.022991180419922],["▁Auftraggeber",-13.02299976348877],["▁harbour",-13.0230131149292],["blew",-13.0230712890625],["▁ideology",-13.023115158081056],["▁covenant",-13.023170471191406],["▁faction",-13.023419380187988],["▁animé",-13.023481369018556],["energie",-13.023515701293944],["iterführende",-13.02369499206543],["▁MAI",-13.023784637451172],["▁pluie",-13.023905754089355],["▁cathedral",-13.023919105529783],["▁chiropractic",-13.023919105529783],["monies",-13.023968696594238],["▁contraction",-13.024054527282717],["pvc",-13.024202346801758],["staff",-13.024209022521973],["BIT",-13.024216651916504],["EET",-13.024514198303224],["▁sanction",-13.024575233459473],["▁Reiki",-13.024709701538086],["Trying",-13.024772644042969],["▁endangered",-13.024847984313965],["▁Emperor",-13.024849891662598],["▁empfi",-13.024909973144531],["animation",-13.024998664855955],["207",-13.025029182434082],["separating",-13.02512264251709],["▁lucrative",-13.025148391723633],["▁ortho",-13.02524185180664],["variété",-13.025266647338867],["hésit",-13.025287628173828],["nuances",-13.02528953552246],["▁$250",-13.025394439697266],["▁drumuri",-13.025435447692873],["▁unsafe",-13.025446891784668],["▁1943",-13.025477409362791],["▁automatique",-13.025524139404297],["billed",-13.025585174560549],["▁rectangle",-13.02578067779541],["▁Spannung",-13.025781631469728],["▁dévoil",-13.025790214538574],["▁perimeter",-13.02580738067627],["▁imaginative",-13.02581787109375],["actifs",-13.025851249694824],["neuve",-13.0259428024292],["leagă",-13.026269912719728],["gehende",-13.026700973510742],["▁Gorgeous",-13.026708602905272],["▁impeccable",-13.026708602905272],["▁Curtain",-13.026718139648438],["▁presume",-13.026731491088867],["surpassed",-13.02687931060791],["schiff",-13.026927947998049],["Allied",-13.02699089050293],["fanden",-13.027080535888672],["▁célébr",-13.027174949645996],["▁phénomène",-13.027174949645996],["▁Powell",-13.027413368225098],["jean",-13.027631759643556],["▁peculiar",-13.027640342712402],["▁Antarctic",-13.02764129638672],["▁gradient",-13.027663230895996],["▁brainstorm",-13.027704238891602],["échapp",-13.02772617340088],["Bot",-13.027738571166992],["cita",-13.027743339538574],["▁lumber",-13.027752876281738],["weichen",-13.027852058410645],["▁Halte",-13.028024673461914],["▁noștri",-13.02810764312744],["construction",-13.028165817260742],["DOC",-13.028236389160156],["▁aluat",-13.028319358825684],["streamlined",-13.028462409973145],["Bio",-13.028494834899902],["▁nutritious",-13.028573036193848],["▁délicat",-13.0286283493042],["▁sticla",-13.028656959533691],["OVE",-13.028721809387209],["▁panneau",-13.028793334960938],["▁hetero",-13.028801918029783],["▁annul",-13.028839111328123],["IDA",-13.028935432434082],["▁pitches",-13.028960227966309],["▁Edmonton",-13.029040336608888],["mediated",-13.029136657714844],["AFP",-13.029139518737791],["▁Tibetan",-13.02922821044922],["intégration",-13.02934455871582],["▁Rox",-13.0294771194458],["energia",-13.02950668334961],["▁reconnaît",-13.02950954437256],["▁ține",-13.029525756835938],["▁ignition",-13.029534339904783],["Foarte",-13.029541015625],["▁HOME",-13.029545783996582],["▁MLB",-13.029545783996582],["▁Wähle",-13.029590606689451],["▁Merkel",-13.029658317565918],["poarte",-13.029664993286133],["ALT",-13.02979850769043],["jenigen",-13.029985427856444],["▁conflit",-13.029987335205078],["▁buckle",-13.029996871948242],["▁cacao",-13.030035018920898],["▁représentation",-13.030076026916504],["incepand",-13.030267715454102],["▁Carroll",-13.030306816101074],["▁clientilor",-13.030370712280272],["▁immunity",-13.030441284179688],["oût",-13.03044319152832],["▁Witch",-13.030488014221191],["▁Wolfgang",-13.030532836914062],["▁prudent",-13.030701637268066],["fotograf",-13.03084945678711],["paar",-13.030871391296388],["ergeti",-13.030927658081056],["▁empowerment",-13.031112670898438],["▁Admir",-13.03122329711914],["▁complémentaire",-13.03134059906006],["▁angepasst",-13.031376838684082],["▁flirt",-13.031376838684082],["▁elektronische",-13.03138828277588],["▁stereotype",-13.03140640258789],["SIL",-13.031465530395508],["▁Realtor",-13.031471252441406],["Edit",-13.031774520874023],["requête",-13.03181266784668],["▁Herstellung",-13.031815528869627],["▁cyst",-13.031947135925291],["syndic",-13.031994819641112],["leni",-13.032007217407228],["▁fringe",-13.032020568847656],["▁Jardin",-13.032032012939451],["▁Vezi",-13.032052993774414],["▁Ausstattung",-13.032312393188477],["▁glide",-13.032590866088867],["▁Andere",-13.032758712768556],["▁Haftung",-13.032781600952148],["maßnahmen",-13.032788276672363],["▁recommandé",-13.032790184020996],["▁nave",-13.032793998718262],["viziune",-13.033051490783691],["▁stimulus",-13.033098220825195],["faulty",-13.0331449508667],["▁vicinity",-13.033249855041504],["▁turnaround",-13.033445358276367],["stammt",-13.033846855163574],["▁problemlos",-13.033856391906738],["▁Establish",-13.03415298461914],["▁Silva",-13.034172058105469],["▁muzică",-13.034187316894531],["▁theatrical",-13.03421401977539],["▁braid",-13.034242630004885],["▁blieb",-13.034276962280272],["158",-13.034296989440918],["▁ignorance",-13.034330368041992],["onset",-13.034416198730469],["zeitlich",-13.034523963928224],["▁Sink",-13.034523963928224],["▁caractéris",-13.034594535827637],["▁kreative",-13.03465747833252],["behörde",-13.034677505493164],["repairing",-13.034680366516112],["▁tumble",-13.034757614135742],["zione",-13.034871101379396],["▁Evil",-13.03494644165039],["▁popping",-13.034952163696287],["▁mutant",-13.035025596618652],["emme",-13.035030364990234],["▁Pleasant",-13.035125732421877],["▁appetizer",-13.035125732421877],["▁PLEASE",-13.035126686096191],["▁physiological",-13.035128593444824],["▁Facility",-13.035131454467772],["▁quirky",-13.035131454467772],["▁colectiv",-13.035154342651367],["151",-13.035181999206545],["August",-13.03531551361084],["▁Jewelry",-13.035327911376951],["▁ziar",-13.035481452941896],["▁puissant",-13.035489082336426],["▁Argument",-13.035595893859863],["▁Betracht",-13.035621643066406],["▁TRANS",-13.035636901855469],["Exception",-13.036011695861816],["nosti",-13.036083221435549],["▁Geographic",-13.036155700683594],["amazingly",-13.036173820495604],["▁météo",-13.036181449890137],["streit",-13.036314010620115],["▁idle",-13.036439895629885],["179",-13.036441802978516],["▁Bremen",-13.036534309387209],["▁Kläger",-13.03653621673584],["▁Grammy",-13.036598205566406],["▁Philosophy",-13.036613464355469],["▁utilizeaz",-13.036779403686523],["Accord",-13.036897659301758],["▁USDA",-13.036986351013184],["Continuing",-13.037010192871094],["geschenk",-13.03717803955078],["kredit",-13.037248611450195],["Laugh",-13.037297248840332],["oaring",-13.03740692138672],["▁Richter",-13.037460327148438],["▁Figur",-13.037938117980955],["▁inconsistent",-13.03794765472412],["cresterea",-13.03806972503662],["▁regeneration",-13.038130760192873],["speaking",-13.03818416595459],["▁nasal",-13.03824234008789],["▁partagé",-13.038259506225586],["▁Warranty",-13.038419723510742],["▁Mueller",-13.038501739501951],["formează",-13.038734436035156],["hundert",-13.038745880126951],["gemeldet",-13.038893699645996],["▁excursions",-13.038912773132324],["▁linii",-13.039066314697266],["gefährlich",-13.039067268371582],["▁schema",-13.03907299041748],["nişte",-13.03913116455078],["▁roadway",-13.039132118225098],["▁regression",-13.039135932922363],["▁mână",-13.039366722106934],["5.3",-13.039373397827148],["▁Spät",-13.039734840393066],["▁stubborn",-13.039833068847656],["efectele",-13.040030479431152],["▁atenţi",-13.040136337280272],["▁dovedit",-13.04018497467041],["▁Agile",-13.040190696716309],["denying",-13.04023265838623],["fluss",-13.040620803833008],["▁Calvin",-13.04066276550293],["Sculpt",-13.04083251953125],["égalité",-13.040884971618652],["ticket",-13.040977478027344],["marketed",-13.041044235229492],["holic",-13.041173934936523],["▁eCommerce",-13.041346549987791],["▁Slip",-13.041369438171388],["▁degradation",-13.041736602783203],["écart",-13.041742324829102],["AGR",-13.041807174682615],["▁burglar",-13.041837692260742],["▁conjug",-13.041903495788574],["LLP",-13.04194164276123],["couvrir",-13.041997909545898],["▁Hearing",-13.042001724243164],["▁canton",-13.042006492614746],["▁sixteen",-13.042068481445312],["▁Verlust",-13.042097091674805],["allied",-13.042268753051758],["Performing",-13.042393684387209],["▁évoqu",-13.042519569396973],["▁bookstore",-13.042574882507324],["▁intrebari",-13.042627334594728],["▁Hyderabad",-13.042668342590332],["▁repertoire",-13.042668342590332],["▁cablu",-13.042678833007812],["▁Costume",-13.04269790649414],["▁Shannon",-13.042713165283203],["▁glossy",-13.042800903320312],["▁cible",-13.042876243591309],["Saint",-13.042984008789062],["▁Ultima",-13.043042182922363],["▁teint",-13.0432767868042],["▁envision",-13.043477058410645],["▁thinner",-13.043478965759276],["ис",-13.043609619140623],["▁bladder",-13.043615341186523],["▁Prairie",-13.043618202209473],["▁puppies",-13.043633460998535],["▁overweight",-13.043729782104492],["destined",-13.043925285339355],["▁addictive",-13.043935775756836],["▁posé",-13.043993949890137],["▁mecanism",-13.044112205505373],["▁chorus",-13.044466972351074],["weder",-13.044528007507324],["▁begrüß",-13.044562339782717],["▁unsuccessful",-13.044562339782717],["executing",-13.044564247131348],["▁metadata",-13.044611930847168],["traiter",-13.044620513916016],["▁borrowed",-13.044649124145508],["▁aeroport",-13.044679641723633],["▁Bibli",-13.044761657714844],["▁youthful",-13.044902801513672],["▁Herbert",-13.044913291931152],["client",-13.04500961303711],["merci",-13.04520034790039],["▁Beast",-13.045210838317873],["▁Entrepreneur",-13.045230865478516],["▁Gelände",-13.04525661468506],["▁Packers",-13.045268058776855],["formarea",-13.045469284057615],["▁Kündigung",-13.04551124572754],["▁verdient",-13.045515060424805],["▁solutie",-13.045530319213867],["figuration",-13.045611381530762],["voluntarily",-13.04562282562256],["Gregor",-13.045742988586426],["▁Uncle",-13.04589557647705],["tarifs",-13.045907020568848],["▁écologique",-13.045987129211426],["▁Investition",-13.045991897583008],["exemplar",-13.046127319335938],["▁prevede",-13.046144485473633],["▁waive",-13.046147346496582],["▁Legion",-13.046156883239746],["similar",-13.046247482299805],["▁shareholder",-13.04626750946045],["▁oyster",-13.046476364135742],["▁Lightning",-13.046530723571776],["experimenting",-13.04662799835205],["▁replies",-13.04663372039795],["80,000",-13.046757698059082],["▁adept",-13.04692554473877],["▁Crăciun",-13.046935081481934],["▁sanatos",-13.046935081481934],["305",-13.04699993133545],["specialised",-13.047069549560549],["▁drummer",-13.047189712524414],["Applicants",-13.04741096496582],["objekt",-13.04741096496582],["▁Fifth",-13.047446250915527],["rgic",-13.047567367553713],["theater",-13.047635078430176],["▁terminé",-13.047852516174316],["▁Englisch",-13.047894477844238],["▁Oradea",-13.047898292541504],["possesses",-13.0479097366333],["illiers",-13.047986030578612],["▁refurbish",-13.048110961914062],["graphie",-13.04814338684082],["▁Booth",-13.048174858093262],["▁Ausdruck",-13.048192977905272],["▁Marriage",-13.048361778259276],["▁knives",-13.048362731933594],["▁Relief",-13.048368453979492],["▁Clerk",-13.048392295837402],["wait",-13.048501014709473],["▁probablement",-13.048698425292969],["▁suplimentar",-13.048701286315918],["dollar",-13.048797607421877],["English",-13.04898452758789],["866",-13.04930019378662],["▁Savannah",-13.049314498901367],["▁aftermath",-13.049318313598633],["phé",-13.04932689666748],["▁Plum",-13.04941749572754],["264",-13.049566268920898],["2.000",-13.049582481384276],["niei",-13.049603462219238],["ATP",-13.049803733825684],["mila",-13.04985523223877],["▁glut",-13.049887657165527],["gotta",-13.049891471862791],["schütt",-13.049893379211426],["klick",-13.049996376037598],["whether",-13.050090789794922],["▁Wade",-13.050163269042969],["▁Riley",-13.050280570983888],["Chancellor",-13.050288200378418],["▁nebun",-13.050300598144531],["▁aufgebaut",-13.050374984741213],["steigt",-13.050423622131348],["▁entirety",-13.050494194030762],["▁telefoane",-13.05074691772461],["▁Roulette",-13.050763130187988],["1700",-13.050787925720217],["▁lycée",-13.050856590270996],["rotary",-13.051128387451172],["benefited",-13.051170349121094],["▁Bisericii",-13.051220893859863],["▁Rehabilitation",-13.051220893859863],["▁lithium",-13.051228523254396],["imposing",-13.051279067993164],["176",-13.051329612731934],["▁thunder",-13.051527976989746],["ăsesc",-13.052000045776367],["▁Einblick",-13.052010536193848],["oiled",-13.052151679992676],["SSA",-13.052181243896484],["apparition",-13.05224609375],["▁Impress",-13.052273750305176],["▁Aboriginal",-13.052297592163086],["loos",-13.052383422851562],["▁Bread",-13.052440643310549],["177",-13.052619934082031],["VERS",-13.052638053894045],["▁Respect",-13.05271053314209],["▁Practical",-13.05304718017578],["drafting",-13.05306339263916],["си",-13.053099632263184],["▁faza",-13.053109169006348],["▁sovereign",-13.053123474121094],["▁Untersuchung",-13.05314826965332],["▁Niveau",-13.053154945373535],["transport",-13.053182601928713],["▁downstream",-13.053293228149414],["▁Milton",-13.053383827209473],["▁knob",-13.053390502929688],["employeur",-13.053499221801758],["▁furnish",-13.053544044494627],["weather",-13.053564071655272],["LAB",-13.053646087646484],["166",-13.05385398864746],["▁salaire",-13.053937911987305],["▁Carnival",-13.054088592529297],["4-0",-13.054168701171877],["▁Angle",-13.054291725158691],["▁José",-13.054399490356444],["architecture",-13.054475784301758],["▁Sunset",-13.054574966430664],["▁Absolut",-13.054694175720217],["▁herrlich",-13.05470085144043],["12%",-13.05470371246338],["▁Indo",-13.054823875427246],["▁Komfort",-13.055049896240234],["▁acțiuni",-13.05505084991455],["energize",-13.05508518218994],["▁Warning",-13.055171966552734],["▁Sunny",-13.055216789245604],["▁razor",-13.055489540100098],["▁psychic",-13.055490493774414],["▁convivial",-13.05552577972412],["Voraussetzungen",-13.05555534362793],["IMO",-13.055622100830078],["opérateur",-13.055743217468262],["▁langjährige",-13.05575942993164],["▁Spanie",-13.055901527404783],["pulmonary",-13.056004524230955],["▁Bingo",-13.056050300598145],["▁confession",-13.056096076965332],["▁Petru",-13.056100845336914],["▁prerequisite",-13.056164741516112],["▁dodge",-13.056352615356444],["▁McN",-13.056436538696287],["▁originate",-13.056577682495115],["▁nettoy",-13.056612014770508],["▁$14",-13.056645393371582],["▁Bride",-13.05669116973877],["▁noisy",-13.05673885345459],["▁Worcester",-13.056963920593262],["▁Surrey",-13.056982040405272],["harmonis",-13.057110786437988],["▁représentant",-13.05730438232422],["organisée",-13.057475090026855],["truction",-13.057513236999512],["injected",-13.057597160339355],["▁Suzuki",-13.057924270629885],["▁japonais",-13.057924270629885],["▁turquoise",-13.057924270629885],["▁Peut",-13.05800437927246],["▁Sequ",-13.058028221130373],["slated",-13.058037757873535],["▁Alma",-13.058215141296388],["▁gebraucht",-13.05827522277832],["gängig",-13.058281898498535],["▁commis",-13.058377265930176],["ACS",-13.05856990814209],["pressure",-13.058664321899414],["cured",-13.05874252319336],["▁Jackie",-13.058757781982422],["▁Kashmir",-13.05888557434082],["▁recruited",-13.059000968933104],["▁vécu",-13.059011459350586],["▁opus",-13.059052467346191],["kWh",-13.05927562713623],["▁tapping",-13.059292793273926],["▁tehnologie",-13.05931282043457],["▁Gentle",-13.059365272521973],["▁bombard",-13.059372901916504],["▁caméra",-13.05942726135254],["züglich",-13.059431076049805],["▁bingo",-13.059453010559082],["private",-13.059496879577637],["▁mediator",-13.059642791748049],["▁carbohydrates",-13.059847831726074],["▁workmanship",-13.059849739074709],["▁Combat",-13.059853553771973],["▁Mickey",-13.059901237487791],["▁distressed",-13.059908866882324],["lucrează",-13.059924125671388],["treatment",-13.06007194519043],["▁Einwohner",-13.060330390930176],["▁glaze",-13.060386657714844],["scholarly",-13.06043529510498],["ROC",-13.060750007629396],["▁Darwin",-13.06077480316162],["drückt",-13.060775756835938],["▁treadmill",-13.060819625854492],["ntz",-13.060830116271973],["620",-13.061087608337402],["surface",-13.061148643493652],["▁vieţii",-13.0612211227417],["990",-13.061296463012695],["▁doigt",-13.061341285705566],["▁explor",-13.061450004577637],["▁asistent",-13.061670303344728],["coloriage",-13.061734199523926],["▁Martinez",-13.061758041381836],["▁antibodies",-13.061775207519531],["Schülerinnen",-13.061779975891112],["Honestly",-13.06178092956543],["grabbing",-13.061871528625488],["▁Cardiff",-13.061897277832031],["▁Trophy",-13.062084197998049],["▁pupil",-13.06211757659912],["▁invoke",-13.062161445617676],["bezüglich",-13.062193870544434],["Anschließend",-13.062275886535645],["perks",-13.062360763549805],["530",-13.062373161315918],["▁emblem",-13.06243133544922],["770",-13.062543869018556],["clairement",-13.06259059906006],["▁sublinia",-13.062597274780272],["▁1910",-13.062719345092772],["▁Embassy",-13.062740325927734],["▁Valencia",-13.062740325927734],["▁catastrophic",-13.062740325927734],["▁simulator",-13.06274700164795],["Pierre",-13.062766075134276],["▁doorstep",-13.062806129455566],["▁rallie",-13.062881469726562],["▁șans",-13.062891960144045],["▁crosses",-13.06300163269043],["▁zodi",-13.06312084197998],["Next",-13.06314754486084],["▁rebuilt",-13.063152313232422],["▁panorama",-13.063222885131836],["196",-13.06324291229248],["▁erinnert",-13.06370735168457],["lism",-13.06371784210205],["opened",-13.06383228302002],["▁breakout",-13.064126014709473],["▁mosque",-13.064153671264648],["boc",-13.064507484436035],["▁grout",-13.064568519592283],["▁Gather",-13.064582824707031],["▁vampire",-13.06467342376709],["▁tandem",-13.064684867858888],["▁pastra",-13.064702033996582],["▁lösen",-13.064794540405272],["▁discontinu",-13.064826965332031],["fuses",-13.064885139465332],["▁identitate",-13.064947128295898],["BAC",-13.064964294433594],["▁$100,000",-13.065122604370115],["Finder",-13.06515121459961],["▁Leicester",-13.065157890319824],["▁1933",-13.065159797668455],["informatiile",-13.065234184265137],["lädt",-13.065309524536133],["iggle",-13.065399169921877],["▁Discuss",-13.065462112426758],["distributing",-13.065470695495604],["▁disappoint",-13.065475463867188],["ecţia",-13.065611839294434],["▁condiment",-13.065640449523926],["▁Marriott",-13.06564235687256],["▁entspannt",-13.065644264221191],["arbitrary",-13.06564998626709],["rühren",-13.06574821472168],["Intensiv",-13.065771102905272],["eliminare",-13.065895080566406],["muster",-13.06594467163086],["▁komplexe",-13.06613063812256],["▁(2008)",-13.066184997558594],["absolument",-13.066349029541016],["aloo",-13.066420555114746],["cererea",-13.06655216217041],["▁imobiliar",-13.066696166992188],["▁paramount",-13.066705703735352],["▁Vince",-13.066723823547363],["pov",-13.067076683044434],["▁conveyor",-13.067549705505373],["▁Natalie",-13.067583084106444],["▁Comedy",-13.067623138427734],["Developing",-13.0678129196167],["disputed",-13.067878723144531],["164",-13.067911148071287],["▁Communist",-13.067949295043944],["▁Bahnhof",-13.06806468963623],["dokument",-13.068145751953123],["▁Somali",-13.06828498840332],["▁Strasbourg",-13.068503379821776],["▁Technician",-13.06855010986328],["▁subsidies",-13.068633079528809],["judeţul",-13.068723678588867],["▁bible",-13.068769454956056],["gefahren",-13.068855285644531],["▁literal",-13.068882942199709],["▁diminish",-13.068940162658691],["Sfântul",-13.0689697265625],["▁doreșt",-13.068978309631348],["▁Xiaomi",-13.069036483764648],["▁planète",-13.069130897521973],["▁LTD",-13.069175720214844],["▁Zugriff",-13.069196701049805],["beginn",-13.06921672821045],["▁Einführung",-13.069294929504396],["▁coronar",-13.069393157958984],["lomi",-13.0693941116333],["▁Accueil",-13.0695219039917],["scanned",-13.069528579711914],["▁Banque",-13.06952953338623],["▁réaction",-13.069531440734863],["▁Hoffman",-13.069546699523926],["▁merveille",-13.069637298583984],["navigating",-13.069719314575195],["schalten",-13.06984806060791],["▁ieşi",-13.070136070251465],["1-6",-13.070175170898438],["▁frustr",-13.070670127868652],["▁réfléchi",-13.0709810256958],["▁difuz",-13.071100234985352],["▁freue",-13.07121753692627],["besuch",-13.071349143981934],["153",-13.071386337280272],["▁butterflies",-13.071467399597168],["▁terrifying",-13.071467399597168],["▁încuraj",-13.071468353271484],["▁Château",-13.071470260620115],["▁contingent",-13.071474075317385],["▁abusive",-13.0714750289917],["▁SharePoint",-13.07148551940918],["▁skating",-13.071573257446287],["▁militaire",-13.07166576385498],["▁Vig",-13.071690559387209],["omics",-13.071840286254885],["▁Blockchain",-13.07197093963623],["▁principii",-13.071975708007812],["▁permitting",-13.071979522705078],["optimisation",-13.072270393371582],["▁maintien",-13.072328567504885],["▁Aluminum",-13.072442054748535],["▁Plymouth",-13.072443008422852],["▁Weiterbildung",-13.072457313537598],["▁Finanzierung",-13.072505950927734],["▁Kerala",-13.072514533996582],["insulated",-13.072668075561523],["▁loaf",-13.072802543640137],["▁Sammlung",-13.07292938232422],["▁îndepărt",-13.072930335998535],["▁Gewerbe",-13.072942733764648],["udel",-13.072988510131836],["▁coursework",-13.073104858398438],["▁Darstellung",-13.073246002197266],["▁indeplin",-13.073433876037598],["▁Gandhi",-13.073434829711914],["tossed",-13.07361888885498],["ewed",-13.073844909667969],["▁classement",-13.073884963989258],["▁Protestant",-13.07390594482422],["▁frumoasă",-13.07390594482422],["▁pantalon",-13.073906898498535],["▁rivet",-13.073966979980469],["▁Echt",-13.0741605758667],["erviciului",-13.07421588897705],["fabricated",-13.074322700500488],["Compania",-13.07437229156494],["▁juvenile",-13.07439422607422],["▁souligne",-13.07444953918457],["▁chrono",-13.07447338104248],["▁VII",-13.074594497680664],["▁Kirch",-13.074714660644531],["catcher",-13.075014114379885],["salv",-13.075263023376465],["▁Enforcement",-13.07537078857422],["▁Penguin",-13.075410842895508],["kowski",-13.075465202331545],["▁2:1",-13.07547092437744],["gesundheit",-13.075475692749023],["▁unveil",-13.075519561767578],["bending",-13.075531959533691],["▁conecta",-13.075579643249512],["▁faim",-13.075885772705078],["▁MacBook",-13.075969696044922],["versuch",-13.07600212097168],["▁regiuni",-13.076029777526855],["▁Willow",-13.076184272766112],["▁finanziell",-13.076303482055664],["▁nurturing",-13.076354026794434],["impuls",-13.076370239257812],["▁funktionieren",-13.076371192932127],["▁rezult",-13.07655429840088],["▁spui",-13.076593399047852],["▁walkway",-13.076653480529783],["▁Rauch",-13.076708793640137],["169",-13.076793670654297],["610",-13.076863288879396],["▁scazut",-13.0773286819458],["▁Garrett",-13.077329635620115],["▁necesită",-13.077352523803713],["Articolul",-13.077364921569824],["numită",-13.07737159729004],["Coastal",-13.077383041381836],["▁canned",-13.077421188354492],["▁Friendly",-13.077499389648438],["dissolved",-13.0775728225708],["seid",-13.077674865722656],["▁feminin",-13.077685356140137],["▁fetch",-13.077710151672363],["▁Accent",-13.077767372131348],["phrase",-13.077771186828612],["effekt",-13.077775955200195],["▁Progressive",-13.077777862548828],["▁canadien",-13.077820777893066],["iety",-13.077839851379396],["eignen",-13.077984809875488],["paraître",-13.07812213897705],["▁asylum",-13.07833194732666],["▁Albany",-13.078362464904783],["▁remis",-13.078386306762695],["▁Joyce",-13.078664779663086],["schätzt",-13.078784942626951],["▁begleiten",-13.078801155090332],["▁Siemens",-13.079007148742676],["▁schlimm",-13.079061508178713],["▁Libra",-13.079254150390623],["▁Composite",-13.079290390014648],["▁écr",-13.079315185546877],["disciplina",-13.079379081726074],["▁premature",-13.079630851745604],["▁scopuri",-13.079681396484377],["ffnung",-13.079715728759766],["7000",-13.079726219177246],["▁conséquent",-13.07978057861328],["▁côte",-13.079787254333496],["celul",-13.079872131347656],["▁fourteen",-13.079940795898438],["▁Riverside",-13.080077171325684],["gemacht",-13.08013916015625],["▁volcanic",-13.080272674560549],["▁Salesforce",-13.080315589904783],["▁Granite",-13.080317497253418],["▁Zentral",-13.080329895019531],["▁Female",-13.080341339111328],["▁culmin",-13.08047103881836],["▁urmatoare",-13.080547332763672],["toxicity",-13.080560684204102],["▁mâna",-13.080678939819336],["▁Umfang",-13.080764770507812],["▁Encore",-13.08077621459961],["▁Edgar",-13.08083152770996],["▁négoci",-13.080852508544922],["njeux",-13.080873489379885],["▁variance",-13.080917358398438],["▁Functional",-13.080973625183104],["172",-13.081046104431152],["▁dissolve",-13.0811185836792],["förderung",-13.081188201904297],["▁Brilliant",-13.081254959106444],["▁comprehension",-13.081254959106444],["▁soybean",-13.081254959106444],["▁standalone",-13.081255912780762],["▁Communi",-13.081303596496582],["▁ajut",-13.081313133239746],["▁lavish",-13.081338882446287],["Ouest",-13.081384658813477],["▁Maggie",-13.081385612487791],["▁evolutionary",-13.081550598144531],["bowel",-13.081575393676758],["▁glyco",-13.081626892089844],["▁Happi",-13.081706047058104],["organising",-13.081710815429688],["▁übernimm",-13.081727027893066],["▁snowboard",-13.081793785095217],["▁prévention",-13.081830024719238],["▁Celebrate",-13.082160949707031],["▁pottery",-13.08225440979004],["▁Outstanding",-13.08232879638672],["▁toamna",-13.082331657409668],["▁graceful",-13.082548141479492],["197",-13.082559585571287],["strecke",-13.082598686218262],["▁medizinische",-13.082733154296877],["216",-13.082839965820312],["▁prune",-13.082868576049805],["Pourtant",-13.083000183105469],["▁Difference",-13.083224296569824],["▁factura",-13.08383083343506],["Mass",-13.084161758422852],["▁Enhanc",-13.084190368652344],["upholstered",-13.084209442138672],["▁übernommen",-13.084209442138672],["▁mitigation",-13.084210395812988],["▁Hidden",-13.084219932556152],["▁Häuser",-13.084234237670898],["▁Pavel",-13.08440399169922],["▁congress",-13.084512710571287],["▁antibody",-13.084598541259766],["▁stitches",-13.084811210632324],["▁colonies",-13.084820747375488],["Into",-13.084900856018066],["▁démo",-13.084924697875977],["▁MVP",-13.085041046142578],["▁replay",-13.08506202697754],["▁usoara",-13.08522891998291],["▁Breast",-13.085278511047363],["ooney",-13.085336685180664],["▁außen",-13.085663795471191],["▁Motorola",-13.085695266723633],["▁spalat",-13.08578109741211],["euillez",-13.086088180541992],["▁jeunesse",-13.086170196533203],["▁pastoral",-13.086174011230469],["▁Sussex",-13.086185455322266],["▁stencil",-13.08619213104248],["▁organismului",-13.086504936218262],["seized",-13.086649894714355],["▁întrebare",-13.086865425109863],["cliquez",-13.086874961853027],["5.7",-13.086984634399414],["▁Yama",-13.087080955505373],["painted",-13.08708667755127],["▁Swimming",-13.087176322937012],["Rhythm",-13.087202072143556],["▁sorrow",-13.087210655212402],["▁Movers",-13.08731460571289],["renforcer",-13.08735466003418],["▁Wach",-13.08738136291504],["0,00",-13.087390899658203],["▁glove",-13.08753490447998],["▁stâng",-13.087669372558594],["rgendwann",-13.087687492370604],["▁Philippine",-13.08769416809082],["▁anunțat",-13.087716102600098],["▁Coleman",-13.087723731994627],["affir",-13.087918281555176],["uleiul",-13.08808422088623],["▁Coconut",-13.088197708129885],["▁Supplement",-13.088210105895996],["haudiere",-13.088293075561523],["▁kettle",-13.088313102722168],["▁3,5",-13.088370323181152],["refurbished",-13.088425636291504],["esthétique",-13.088665962219238],["performing",-13.088667869567873],["▁Engag",-13.088762283325195],["Group",-13.088801383972168],["▁viande",-13.088887214660645],["▁oricum",-13.08888816833496],["Spitalul",-13.089093208312988],["▁cesse",-13.089110374450684],["▁contradiction",-13.089130401611328],["▁Chrysler",-13.089154243469238],["▁poultry",-13.089154243469238],["▁thirteen",-13.089154243469238],["▁sightseeing",-13.089155197143556],["▁Miguel",-13.089158058166504],["▁terminology",-13.08933448791504],["▁Genetic",-13.089553833007812],["commercial",-13.08963394165039],["gehoben",-13.08965015411377],["RIGHT",-13.08995532989502],["▁proprietate",-13.089990615844728],["▁Cannes",-13.090012550354004],["▁klicken",-13.090023040771484],["▁Belgique",-13.0901460647583],["tapped",-13.09034538269043],["kinetic",-13.090569496154783],["▁feuilles",-13.090673446655272],["whitening",-13.090760231018066],["Any",-13.090946197509766],["Manager",-13.091099739074709],["▁constatat",-13.091106414794922],["▁Myanmar",-13.091140747070312],["▁Examination",-13.091142654418944],["▁règle",-13.091208457946776],["▁umgesetzt",-13.09128475189209],["211",-13.091336250305176],["▁Herald",-13.091449737548828],["Alex",-13.091680526733398],["▁drauf",-13.091707229614258],["logger",-13.091714859008787],["▁pictur",-13.09186840057373],["▁Divi",-13.09196949005127],["▁furnizat",-13.092089653015137],["▁verzichten",-13.092132568359377],["▁Sergi",-13.092199325561523],["contaminated",-13.09223747253418],["▁Buddy",-13.092243194580078],["▁chilled",-13.09226894378662],["▁vorlieg",-13.092317581176758],["▁Claudia",-13.092632293701172],["▁miserable",-13.092653274536133],["▁sketches",-13.092683792114258],["schicken",-13.092814445495604],["since",-13.0928373336792],["2.9",-13.092840194702148],["▁sitzen",-13.092928886413574],["ceapa",-13.093396186828612],["respectarea",-13.093438148498535],["▁handheld",-13.093448638916016],["popular",-13.093527793884276],["calming",-13.093603134155272],["Govern",-13.093632698059082],["▁omega",-13.093645095825195],["▁Planner",-13.093791007995604],["enriched",-13.093850135803224],["154",-13.093976974487305],["▁autorisé",-13.093989372253418],["▁cadouri",-13.09407901763916],["▁vulnerabilities",-13.094143867492676],["▁Arbeitnehmer",-13.094158172607422],["éditeur",-13.094234466552734],["▁Anleitung",-13.094317436218262],["rubbing",-13.094343185424805],["▁autovehicul",-13.094621658325195],["▁öffnen",-13.094621658325195],["▁Napoleon",-13.094622611999512],["▁cliché",-13.094637870788574],["▁Schaf",-13.09469985961914],["regulating",-13.094894409179688],["▁Kühl",-13.09490966796875],["▁blush",-13.094913482666016],["▁discard",-13.094992637634276],["▁confine",-13.095027923583984],["▁Rodriguez",-13.09511947631836],["▁ADHD",-13.095165252685549],["▁Madame",-13.09516716003418],["▁résolution",-13.095319747924805],["▁flair",-13.095369338989258],["▁claw",-13.095422744750977],["▁1929",-13.095643043518066],["ETH",-13.095672607421877],["nähe",-13.09580421447754],["▁soothe",-13.0958251953125],["4.9",-13.095833778381348],["montée",-13.095925331115724],["confirming",-13.095989227294922],["continent",-13.09613037109375],["reiz",-13.09643840789795],["john",-13.096577644348145],["IONAL",-13.096588134765623],["▁exported",-13.0966215133667],["▁Prison",-13.096651077270508],["possessed",-13.096952438354492],["▁placebo",-13.096991539001465],["▁biodiversity",-13.097116470336914],["▁combustion",-13.097116470336914],["▁Plumbing",-13.09711742401123],["ixie",-13.097124099731444],["▁repetition",-13.09715461730957],["▁soumis",-13.097372055053713],["▁reduc",-13.097671508789062],["▁constrain",-13.097759246826172],["Anti",-13.097760200500488],["consolidated",-13.097817420959473],["214",-13.098095893859863],["▁breaches",-13.098108291625977],["infringement",-13.098115921020508],["▁drizzle",-13.098115921020508],["▁erhöhen",-13.098116874694824],["▁Somerset",-13.098118782043455],["▁blonde",-13.098132133483888],["▁Funny",-13.09813404083252],["tuşi",-13.098149299621582],["▁reinvent",-13.098162651062012],["▁sérieux",-13.098247528076172],["▁croire",-13.098308563232422],["general",-13.098315238952637],["▁Distance",-13.098319053649902],["▁VoIP",-13.098348617553713],["▁adăugat",-13.098406791687012],["matik",-13.098546028137209],["▁avatar",-13.098647117614746],["▁superstar",-13.098804473876951],["8.0",-13.098814010620115],["lusieurs",-13.09898281097412],["▁Judeţean",-13.099117279052734],["offenen",-13.099128723144531],["RAF",-13.099133491516112],["▁restroom",-13.099207878112791],["enfance",-13.099348068237305],["▁garnish",-13.099499702453612],["▁vermittelt",-13.099631309509276],["Histoire",-13.099634170532228],["cyan",-13.100628852844238],["Talk",-13.100666046142578],["▁Varianten",-13.10069465637207],["▁Lille",-13.10085678100586],["▁offenbar",-13.10098934173584],["▁rénovation",-13.10112190246582],["▁comentarii",-13.10124969482422],["▁Bedford",-13.10130500793457],["▁cercetări",-13.101325988769531],["▁précision",-13.101337432861328],["MRC",-13.101358413696287],["alterations",-13.101476669311523],["▁discours",-13.10153102874756],["äger",-13.101577758789062],["▁antreprenor",-13.101622581481934],["▁Oriental",-13.101849555969238],["conducerea",-13.101868629455566],["CBC",-13.101932525634766],["▁mince",-13.101985931396484],["▁presidency",-13.10212516784668],["▁lipstick",-13.102167129516602],["▁SERVICES",-13.102237701416016],["productive",-13.10237979888916],["Assad",-13.10240077972412],["▁efectiv",-13.102540969848633],["▁gestern",-13.102596282958984],["▁RGB",-13.102606773376465],["▁Transilvania",-13.102627754211426],["▁Raleigh",-13.102670669555664],["DOM",-13.102702140808104],["▁iesit",-13.102806091308594],["▁anuntat",-13.102810859680176],["▁automatiquement",-13.102901458740234],["▁proliferation",-13.103130340576172],["▁Maroc",-13.103156089782717],["▁prezenţ",-13.10323429107666],["▁Filipino",-13.103296279907228],["▁Traian",-13.103351593017578],["▁swimmer",-13.10356616973877],["▁Slovenia",-13.103632926940918],["phobia",-13.103724479675291],["curricular",-13.103734016418455],["jurnal",-13.103825569152832],["▁vorne",-13.103870391845703],["▁asuma",-13.103875160217283],["defended",-13.10410499572754],["▁imminent",-13.104140281677246],["favored",-13.10417366027832],["▁innovator",-13.10417938232422],["▁Salzburg",-13.104289054870604],["5.4",-13.104452133178713],["Safe",-13.104597091674805],["▁inteleg",-13.104744911193848],["▁charisma",-13.104781150817873],["nature",-13.104784965515137],["4.8",-13.104942321777344],["argues",-13.105104446411133],["▁dimensiune",-13.105142593383787],["▁subdivision",-13.105142593383787],["▁embarrassing",-13.105144500732422],["▁confuse",-13.105207443237305],["DIC",-13.105460166931152],["rubrique",-13.10549545288086],["dépendance",-13.105598449707031],["INCLUD",-13.10565185546875],["▁Griffin",-13.10574722290039],["157",-13.105751037597656],["▁revamp",-13.105839729309082],["▁umgehen",-13.10595989227295],["▁mențin",-13.106231689453123],["▁1937",-13.106695175170898],["eklagte",-13.106766700744627],["▁clientèle",-13.106801986694336],["▁campsite",-13.10708999633789],["▁florist",-13.107144355773926],["▁Ferguson",-13.107159614562988],["▁demolition",-13.107160568237305],["▁McCain",-13.107254981994627],["▁reckon",-13.10733413696289],["striped",-13.107414245605469],["▁sonore",-13.107481002807615],["migrated",-13.107548713684082],["▁fluorescent",-13.107664108276367],["▁Colegi",-13.107762336730955],["ianu",-13.107860565185549],["cruising",-13.107882499694824],["LINK",-13.107965469360352],["▁Cutting",-13.108001708984377],["ABILITY",-13.108168601989746],["▁Categories",-13.108168601989746],["▁erhoben",-13.108168601989746],["▁Cocktail",-13.108169555664062],["▁Generator",-13.108177185058594],["▁gesucht",-13.108186721801758],["▁telescope",-13.10818862915039],["KET",-13.108192443847656],["▁hilfreich",-13.108192443847656],["▁beneficiary",-13.108585357666016],["▁Winston",-13.108636856079102],["Auswirkungen",-13.108675956726074],["portrayed",-13.108705520629885],["▁Aspekte",-13.10874366760254],["ffected",-13.108901023864746],["eutic",-13.108905792236328],["International",-13.109021186828612],["attente",-13.109078407287598],["mentioning",-13.109119415283203],["launch",-13.109129905700684],["▁EURO",-13.109152793884276],["▁Fraser",-13.109344482421877],["▁Johannes",-13.109408378601074],["▁felicit",-13.109477043151855],["▁plâng",-13.109522819519045],["izant",-13.10971736907959],["▁reţe",-13.109846115112305],["Mech",-13.109954833984377],["▁algebra",-13.110193252563477],["▁surgeries",-13.110257148742676],["▁semifinal",-13.110262870788574],["▁intimidating",-13.110288619995115],["▁exkl",-13.110604286193848],["asigurarea",-13.110918998718262],["Tek",-13.111136436462402],["▁Einladung",-13.111205101013184],["▁similaire",-13.111205101013184],["▁bebelus",-13.111221313476562],["▁déclin",-13.111400604248049],["▁Console",-13.111495018005373],["RET",-13.111573219299316],["appli",-13.111586570739746],["45%",-13.111663818359377],["Evenimentul",-13.111811637878418],["sincerely",-13.111812591552734],["sammlung",-13.112098693847656],["Amérique",-13.112220764160156],["▁1919",-13.112326622009276],["regulation",-13.112367630004885],["gebäude",-13.112726211547852],["▁Perspektive",-13.112726211547852],["Espagne",-13.112744331359863],["▁Underground",-13.11283016204834],["secret",-13.112833976745604],["▁Aussicht",-13.112874031066896],["Photo",-13.112977027893066],["▁Brust",-13.113144874572754],["▁Sustainability",-13.11323356628418],["▁clădiri",-13.11323356628418],["▁librarian",-13.11323356628418],["▁HBO",-13.113235473632812],["▁Parallel",-13.113240242004396],["▁shimmer",-13.113283157348633],["▁schlicht",-13.113292694091797],["▁anticipat",-13.113311767578123],["▁foolish",-13.11335563659668],["▁Ability",-13.11347484588623],["▁ceremoni",-13.11358642578125],["▁Ablauf",-13.11359977722168],["icrobial",-13.113606452941896],["▁actiuni",-13.11362361907959],["▁Wilhelm",-13.113761901855469],["▁nennen",-13.113775253295898],["▁botez",-13.113832473754885],["Alpes",-13.11391258239746],["▁libér",-13.11392593383789],["▁sneakers",-13.114052772521973],["geschafft",-13.114252090454102],["▁downstairs",-13.114261627197266],["▁wrench",-13.114294052124023],["▁erheblich",-13.11442756652832],["▁alimentar",-13.114710807800291],["▁suger",-13.11474323272705],["analysis",-13.114883422851562],["öhn",-13.114891052246094],["▁Nantes",-13.114895820617676],["▁Arbor",-13.11489963531494],["ooze",-13.115150451660156],["▁facade",-13.115229606628418],["▁MySQL",-13.115266799926758],["▁Salvador",-13.115266799926758],["▁Schlafzimmer",-13.115279197692873],["▁autentic",-13.115320205688477],["▁prezint",-13.115348815917969],["▁campground",-13.115397453308104],["Query",-13.11540412902832],["bekannt",-13.115598678588867],["arcinia",-13.11563205718994],["▁stunt",-13.115825653076172],["▁informare",-13.115830421447754],["▁interzis",-13.11584186553955],["▁Burke",-13.115995407104492],["certified",-13.11601734161377],["▁clove",-13.11605167388916],["java",-13.116271018981934],["▁Vielfalt",-13.116284370422363],["gebung",-13.116329193115234],["▁9/11",-13.116497993469238],["▁disruptive",-13.11650562286377],["visual",-13.116693496704102],["▁anunţat",-13.11679458618164],["▁Plätze",-13.116799354553224],["▁reduceri",-13.116920471191406],["autorisation",-13.116950035095217],["▁ligament",-13.11705207824707],["▁învăța",-13.11708164215088],["läufig",-13.117303848266602],["▁Copenhagen",-13.117303848266602],["▁commodities",-13.117303848266602],["▁eindeutig",-13.117313385009766],["▁catheter",-13.117321014404297],["erklärung",-13.117720603942873],["▁intelectual",-13.11781406402588],["▁municipality",-13.117891311645508],["▁1936",-13.11798095703125],["rruption",-13.11821746826172],["▁Lafayette",-13.118324279785156],["▁berühmte",-13.118324279785156],["▁idylli",-13.118325233459473],["▁caldura",-13.118447303771973],["▁tablette",-13.118535995483398],["▁liquidity",-13.118728637695312],["NGOs",-13.118885040283203],["▁supliment",-13.11889934539795],["contact",-13.119075775146484],["lustig",-13.119219779968262],["▁watercolor",-13.119319915771484],["▁Tiffany",-13.119344711303713],["▁Glauben",-13.119365692138672],["Immobilie",-13.119406700134276],["▁stripped",-13.119549751281738],["▁Beatles",-13.119601249694824],["ани",-13.119770050048828],["▁lifespan",-13.119986534118652],["▁profondeur",-13.120251655578612],["▁durere",-13.12032985687256],["▁Lithuania",-13.120367050170898],["▁resurrection",-13.120367050170898],["▁suitcase",-13.120535850524902],["▁Plumber",-13.120545387268066],["criticized",-13.120595932006836],["feared",-13.120756149291992],["▁Aunt",-13.120929718017578],["otwithstanding",-13.121068000793455],["verständlich",-13.12115478515625],["fiber",-13.121248245239258],["headquartered",-13.121390342712402],["▁Perspective",-13.12139129638672],["▁semantic",-13.121413230895996],["VIEW",-13.121431350708008],["▁Ersatzteile",-13.121567726135254],["▁disgust",-13.121685981750488],["rrington",-13.121834754943848],["ässe",-13.121922492980955],["▁anerkannt",-13.121956825256348],["meaning",-13.12203598022461],["178",-13.122039794921877],["▁grupuri",-13.1221284866333],["ciones",-13.122267723083496],["▁Mobility",-13.122414588928224],["▁unstable",-13.122422218322754],["▁FULL",-13.122456550598145],["austausch",-13.122491836547852],["▁culminat",-13.122549057006836],["▁Roast",-13.122742652893066],["existant",-13.122940063476562],["167",-13.123008728027344],["tinerii",-13.123040199279783],["September",-13.12311553955078],["▁haircut",-13.12327480316162],["▁Tutorial",-13.123440742492676],["▁enquiries",-13.123440742492676],["▁livelihood",-13.123440742492676],["▁proficiency",-13.123440742492676],["▁pavement",-13.123443603515623],["▁Reservation",-13.123445510864258],["aimerai",-13.123491287231444],["▁laboratoire",-13.123492240905762],["leihen",-13.123501777648926],["ministerium",-13.12351894378662],["▁Concentr",-13.12366008758545],["▁swipe",-13.12368106842041],["extrêmement",-13.123687744140623],["cultivated",-13.123708724975586],["▁Converse",-13.123845100402832],["▁paycheck",-13.123863220214844],["olltest",-13.123995780944824],["▁Bauch",-13.124022483825684],["▁autobuz",-13.124067306518556],["attack",-13.124094009399414],["While",-13.124311447143556],["Retrouvez",-13.12432098388672],["▁Dolphin",-13.124466896057127],["▁Shelby",-13.12448024749756],["▁Diagnostic",-13.124486923217772],["▁reconcil",-13.124558448791504],["▁Iaşi",-13.124733924865724],["▁iubesc",-13.124979972839355],["▁Bestseller",-13.124985694885254],["▁antrenor",-13.125035285949709],["▁Imaging",-13.125089645385742],["▁priorité",-13.125295639038086],["▁brewery",-13.125494003295898],["▁residual",-13.125494003295898],["▁intermittent",-13.125494956970217],["Kollekt",-13.125585556030272],["▁Walsh",-13.12558650970459],["▁marvelous",-13.125653266906738],["canceled",-13.125686645507812],["174",-13.125761985778809],["normes",-13.125837326049805],["▁Tempo",-13.125996589660645],["▁Târgu",-13.126008987426758],["877",-13.126165390014648],["5-8",-13.126190185546877],["960",-13.126486778259276],["▁Scandinavia",-13.1265230178833],["▁prolific",-13.126526832580566],["lasi",-13.126916885375977],["glück",-13.127097129821776],["▁immersion",-13.127204895019531],["RSA",-13.127323150634766],["▁Polk",-13.12734031677246],["▁transmitter",-13.12747859954834],["▁Kleidung",-13.12755298614502],["▁Cosmo",-13.127676963806152],["▁1935",-13.127788543701172],["höhere",-13.127906799316406],["▁Tatsache",-13.128074645996094],["▁Outlet",-13.1282377243042],["▁canalisation",-13.12824821472168],["Mbps",-13.128433227539062],["▁skeptical",-13.128582954406738],["mplification",-13.128617286682127],["▁Advice",-13.128618240356444],["▁détaillé",-13.128676414489746],["660",-13.128701210021973],["▁eyebrow",-13.128722190856934],["▁HIGH",-13.128898620605469],["hnlich",-13.129073143005373],["▁depăș",-13.12910270690918],["▁procurori",-13.129140853881836],["▁refrain",-13.129212379455566],["▁geschaffen",-13.12952995300293],["justement",-13.129663467407228],["exposing",-13.129700660705566],["243",-13.1298828125],["sectorul",-13.130104064941406],["▁courrier",-13.13018035888672],["▁carcas",-13.130199432373049],["sitter",-13.13022518157959],["▁Schreiben",-13.130335807800291],["▁malfunction",-13.130358695983888],["poartă",-13.130522727966309],["raisons",-13.130565643310549],["▁HOT",-13.130650520324709],["▁refreshed",-13.130730628967283],["mânt",-13.130744934082031],["▁coefficient",-13.13097858428955],["▁instituţii",-13.13119411468506],["▁sanguin",-13.131202697753906],["▁ceci",-13.131213188171388],["▁garçon",-13.131232261657717],["deluxe",-13.131237030029297],["▁rectif",-13.131311416625977],["920",-13.131364822387695],["Exista",-13.131428718566896],["▁magnif",-13.131568908691406],["efficiencies",-13.131681442260742],["▁Mitsubishi",-13.131681442260742],["▁consortium",-13.131681442260742],["▁baggage",-13.131683349609377],["▁guild",-13.131736755371094],["▁sixty",-13.13193130493164],["▁Retreat",-13.13245677947998],["batting",-13.132473945617676],["470",-13.132708549499512],["▁Britanie",-13.132718086242676],["displaced",-13.132734298706056],["▁spați",-13.132794380187988],["▁exceptionnelle",-13.13281536102295],["▁authorize",-13.132906913757324],["▁prescribe",-13.133187294006348],["▁dépannage",-13.133234024047852],["▁sexuelle",-13.133234024047852],["valid",-13.133275032043455],["▁hymn",-13.133752822875977],["▁histories",-13.13375759124756],["▁oriunde",-13.133764266967772],["Pop",-13.133785247802734],["▁dispoziţi",-13.133800506591797],["ADI",-13.133819580078123],["Google",-13.133830070495604],["▁Autism",-13.133918762207031],["▁aggr",-13.134354591369627],["bleed",-13.134618759155272],["▁displacement",-13.13478946685791],["▁hobbies",-13.13478946685791],["▁anatomy",-13.134799003601074],["▁Klinik",-13.134821891784668],["▁CCTV",-13.1348237991333],["readable",-13.134886741638184],["ulph",-13.134982109069824],["metabol",-13.135035514831545],["▁rugăm",-13.135037422180176],["▁Scotia",-13.135087013244627],["▁Einheit",-13.135211944580078],["▁troupe",-13.13581371307373],["▁Practitioner",-13.135828018188477],["▁oarec",-13.135909080505373],["Appel",-13.135998725891112],["situația",-13.136096000671388],["▁Yemen",-13.136353492736816],["piping",-13.136515617370604],["blood",-13.13677215576172],["engraved",-13.136866569519045],["▁Cristina",-13.136866569519045],["▁inaccurate",-13.136866569519045],["savory",-13.136878967285156],["atism",-13.136919021606444],["▁dependency",-13.137007713317873],["▁assertion",-13.137015342712402],["▁intersect",-13.137201309204102],["DATA",-13.137224197387695],["▁britanic",-13.1373872756958],["▁sanitaire",-13.137393951416016],["▁PLUS",-13.137436866760254],["▁platter",-13.137730598449709],["▁reconsider",-13.137802124023438],["▁Swim",-13.13786792755127],["▁Scene",-13.137896537780762],["▁Reynolds",-13.137907028198242],["▁gesund",-13.137922286987305],["international",-13.137959480285645],["government",-13.13804817199707],["▁gemstone",-13.138052940368652],["▁reproductive",-13.1381196975708],["▁expressive",-13.13820743560791],["▁tranche",-13.13842487335205],["▁Niagara",-13.138427734375],["▁Studierende",-13.138434410095217],["▁crave",-13.138607025146484],["pathetic",-13.138739585876465],["▁1916",-13.138858795166016],["▁Thousand",-13.138873100280762],["uffed",-13.138893127441406],["▁Lancaster",-13.138960838317873],["▁revenge",-13.138972282409668],["▁melody",-13.1389741897583],["Suitable",-13.138991355895996],["▁beacon",-13.139082908630373],["▁MAY",-13.139205932617188],["livré",-13.139216423034668],["Virus",-13.139391899108888],["▁collaborator",-13.139413833618164],["produktion",-13.139480590820312],["▁iluminat",-13.139593124389648],["facets",-13.13975715637207],["▁expus",-13.139784812927246],["▁baptism",-13.13999080657959],["▁urgency",-13.140016555786133],["artery",-13.14030647277832],["▁eingeladen",-13.14043140411377],["▁entfernen",-13.14051342010498],["soaking",-13.140555381774902],["▁irré",-13.140557289123535],["▁purity",-13.140700340270996],["▁adăug",-13.140731811523438],["historischen",-13.140777587890623],["crezi",-13.140793800354004],["▁tarziu",-13.141035079956056],["▁Mozart",-13.141040802001951],["▁trimming",-13.141056060791016],["▁violat",-13.141056060791016],["▁Vermögen",-13.14108943939209],["▁Theorie",-13.141114234924316],["scheibe",-13.14114761352539],["Partidul",-13.141324996948242],["▁childcare",-13.14133071899414],["ajele",-13.141345977783203],["▁Punjab",-13.141390800476074],["6.3",-13.14156436920166],["▁recount",-13.141571044921877],["▁repel",-13.141799926757812],["vantage",-13.1419095993042],["6.4",-13.141953468322754],["▁comedian",-13.142087936401367],["▁snappe",-13.142256736755373],["PLE",-13.142271041870115],["▁rapper",-13.14243984222412],["▁Belfast",-13.142657279968262],["▁predictive",-13.14271068572998],["dépôt",-13.1427583694458],["flavored",-13.142769813537598],["chließlich",-13.14293098449707],["▁stump",-13.142955780029297],["▁lakh",-13.142963409423828],["3:30",-13.143021583557127],["▁cetățeni",-13.1431245803833],["▁Milliarden",-13.143125534057615],["Assurance",-13.143128395080566],["▁Marketplace",-13.143329620361328],["equipped",-13.143423080444336],["▁russe",-13.143462181091309],["Exactly",-13.143651008605955],["▁Venez",-13.144125938415527],["▁Pavilion",-13.144171714782717],["▁incontournable",-13.144171714782717],["▁slaughter",-13.14417839050293],["asteptam",-13.144190788269045],["▁Fighter",-13.14419651031494],["▁Landkreis",-13.144278526306152],["▁lumini",-13.144312858581545],["▁connaît",-13.144615173339844],["▁Breite",-13.14467430114746],["▁Disability",-13.144774436950684],["▁Alfa",-13.144786834716797],["▁poise",-13.144895553588867],["▁Alpen",-13.144898414611816],["betont",-13.145031929016112],["159",-13.145161628723145],["▁geprägt",-13.145219802856444],["▁intrigued",-13.145219802856444],["▁sympathy",-13.145220756530762],["societal",-13.145225524902344],["▁sédui",-13.145243644714355],["▁differentiation",-13.145384788513184],["▁aprobare",-13.145744323730469],["schirm",-13.14585018157959],["sagt",-13.145956039428713],["7.3",-13.14610195159912],["Bib",-13.146263122558594],["europäischen",-13.146268844604492],["▁Innovative",-13.146268844604492],["▁autonome",-13.14633083343506],["▁Objective",-13.146400451660156],["▁refusal",-13.146551132202148],["▁exposé",-13.146719932556152],["▁cetăţeni",-13.146793365478516],["▁stimmt",-13.146798133850098],["acordul",-13.147162437438965],["▁hormonal",-13.147254943847656],["intermédiaire",-13.147319793701172],["▁doubl",-13.147374153137209],["▁flute",-13.147509574890137],["▁Balkon",-13.147523880004885],["▁Florian",-13.147607803344728],["737",-13.14761447906494],["▁dritte",-13.147639274597168],["spitze",-13.147685050964355],["donnent",-13.14778995513916],["▁Zuhause",-13.147850036621094],["▁VIII",-13.147852897644045],["familien",-13.148151397705078],["▁sécurisé",-13.148313522338867],["▁glamour",-13.148370742797852],["▁societati",-13.148370742797852],["typique",-13.1483793258667],["▁addicted",-13.14842128753662],["▁Providence",-13.148500442504885],["▁Extended",-13.14850616455078],["▁Barbie",-13.148513793945312],["zustand",-13.148516654968262],["▁Sauna",-13.148638725280762],["▁propane",-13.148663520812988],["europa",-13.14889430999756],["glued",-13.148940086364746],["▁Mystery",-13.14894199371338],["▁travaillé",-13.149106979370115],["riol",-13.149251937866213],["fleisch",-13.149288177490234],["▁Eintritt",-13.149327278137209],["▁Syndrome",-13.149422645568848],["▁petroleum",-13.149426460266112],["▁genial",-13.149433135986328],["sponsored",-13.149436950683594],["▁Cindy",-13.149436950683594],["▁courier",-13.149600982666016],["▁Scrap",-13.149640083312988],["▁conţin",-13.149724006652832],["(2007)",-13.14976406097412],["▁gewährleisten",-13.149949073791504],["▁proprietor",-13.15011215209961],["▁cheque",-13.15046215057373],["maternity",-13.150477409362791],["▁Gustav",-13.15048599243164],["▁arterial",-13.150497436523438],["▁whiskey",-13.150510787963867],["▁concealed",-13.150525093078612],["thèque",-13.150553703308104],["felony",-13.150579452514648],["▁tweeted",-13.15061378479004],["OTA",-13.150619506835938],["nsel",-13.150664329528809],["▁coarse",-13.150664329528809],["▁identificat",-13.150707244873049],["▁variability",-13.150716781616213],["civ",-13.150843620300291],["▁drastic",-13.150956153869627],["▁hatred",-13.151090621948242],["▁Bürgermeister",-13.151237487792969],["▁utilizatorilor",-13.15124225616455],["OULD",-13.15137004852295],["rmaßen",-13.15138339996338],["▁windshield",-13.151530265808104],["▁Particular",-13.151531219482422],["▁Tunnel",-13.151638984680176],["▁litri",-13.15164852142334],["extrême",-13.15180492401123],["▁Schalt",-13.151944160461426],["paket",-13.152159690856934],["berlin",-13.152169227600098],["▁slujb",-13.152193069458008],["facilitated",-13.152206420898438],["Congressional",-13.152510643005373],["▁honeymoon",-13.152585983276367],["▁Provision",-13.152697563171388],["▁Outfit",-13.152779579162598],["udder",-13.152814865112305],["▁chandelier",-13.153002738952637],["donating",-13.153132438659668],["historic",-13.15333080291748],["organized",-13.153508186340332],["(8)",-13.15356731414795],["▁touristique",-13.153610229492188],["▁Roosevelt",-13.153643608093262],["▁Verständnis",-13.153643608093262],["▁prilej",-13.15365505218506],["Vanity",-13.153806686401367],["chilly",-13.153964042663574],["loyer",-13.15403175354004],["▁Zhang",-13.154053688049316],["▁Nouveau",-13.154193878173828],["Soft",-13.154326438903809],["▁motherboard",-13.15441608428955],["▁Erklärung",-13.154701232910156],["▁Tasmania",-13.154702186584473],["▁verändern",-13.154703140258787],["▁seldom",-13.154711723327637],["▁Karriere",-13.154714584350586],["▁Mixed",-13.154902458190918],["umfang",-13.154970169067385],["▁Strategies",-13.155035972595217],["CHAR",-13.155051231384276],["olitary",-13.155075073242188],["▁Persoan",-13.1550874710083],["bewegung",-13.155242919921877],["▁Ernest",-13.155367851257324],["withdrawn",-13.155855178833008],["▁stationary",-13.155881881713867],["▁bland",-13.155939102172852],["▁Replace",-13.15605926513672],["▁Londres",-13.156290054321287],["▁plural",-13.156290054321287],["▁concentrat",-13.15651512145996],["Maschine",-13.156675338745115],["▁Advocate",-13.156820297241213],["▁vermitteln",-13.156824111938477],["▁dispenser",-13.156827926635742],["▁tedious",-13.15695858001709],["▁Straight",-13.15705394744873],["▁Corona",-13.157061576843262],["▁monumental",-13.15707302093506],["▁migrate",-13.15720272064209],["▁verlieren",-13.157366752624512],["▁Lub",-13.157482147216797],["▁reinforcement",-13.157827377319336],["▁cherish",-13.157843589782717],["Veterinary",-13.157881736755373],["geschwindigkeit",-13.157881736755373],["▁féminin",-13.157881736755373],["▁Facilities",-13.157964706420898],["▁urmari",-13.158050537109377],["▁Vertical",-13.158098220825195],["echoe",-13.158188819885254],["toured",-13.15854835510254],["Served",-13.158772468566896],["más",-13.158853530883787],["license",-13.158893585205078],["misunderstanding",-13.158944129943848],["▁glamorous",-13.158944129943848],["BJP",-13.158973693847656],["▁découvert",-13.159173965454102],["schönsten",-13.159517288208008],["▁(2018)",-13.15957736968994],["▁orasului",-13.159581184387209],["328",-13.159674644470217],["thighs",-13.159801483154297],["éclairage",-13.160008430480955],["Oamenii",-13.160009384155272],["▁Transmission",-13.16014575958252],["▁transpir",-13.16015911102295],["▁președinte",-13.160321235656738],["finalists",-13.160327911376951],["genügend",-13.160524368286133],["▁Aufmerksamkeit",-13.160539627075195],["▁unglaublich",-13.160539627075195],["▁descarc",-13.160604476928713],["▁Couch",-13.160683631896973],["eaucoup",-13.160788536071776],["▁adidas",-13.161075592041016],["▁1-800-",-13.161077499389648],["▁Communities",-13.161102294921877],["▁Einkommen",-13.161102294921877],["▁Reagan",-13.16114330291748],["▁Stoke",-13.161260604858398],["▁Snapchat",-13.161269187927246],["éclat",-13.161272048950195],["▁auseinander",-13.161367416381836],["▁richesse",-13.16137409210205],["▁toggle",-13.161396026611328],["▁Zutaten",-13.161606788635254],["▁député",-13.16161060333252],["▁battlefield",-13.161611557006836],["▁spirituel",-13.161611557006836],["▁Shuttle",-13.161632537841797],["▁Aktien",-13.161665916442873],["hormon",-13.161819458007812],["connection",-13.16187858581543],["▁vizitatori",-13.16191577911377],["érité",-13.16197109222412],["truck",-13.1619873046875],["▁yourselves",-13.162139892578123],["▁Logistics",-13.16214084625244],["coveted",-13.16215705871582],["▁şedinţ",-13.162671089172363],["▁messenger",-13.16270351409912],["▁țar",-13.162918090820312],["▁Grau",-13.163025856018066],["chirurgie",-13.163138389587402],["▁Ressourcen",-13.16320514678955],["▁Jésus",-13.163207054138184],["▁acțiune",-13.163208961486816],["▁Bundesliga",-13.163249015808104],["Lizenz",-13.163379669189451],["ELLE",-13.16390895843506],["vraie",-13.1639986038208],["ruined",-13.164018630981444],["▁Marble",-13.164109230041504],["▁Zambia",-13.164308547973633],["▁Finnish",-13.164366722106934],["▁trackback",-13.164488792419434],["héros",-13.16451644897461],["▁réclam",-13.16453456878662],["locurile",-13.164706230163574],["tägliche",-13.164753913879396],["IFF",-13.164824485778809],["▁contextual",-13.164938926696776],["▁Elvis",-13.165084838867188],["▁Batch",-13.165183067321776],["▁appris",-13.16519546508789],["intensive",-13.165404319763184],["▁întâmplat",-13.16565990447998],["▁prelucr",-13.16576099395752],["flore",-13.165873527526855],["▁Alkohol",-13.16587734222412],["Konzern",-13.165895462036133],["Delete",-13.166082382202148],["öck",-13.16612720489502],["▁clientii",-13.16614818572998],["▁innovate",-13.166224479675291],["▁ASAP",-13.166345596313477],["crumbs",-13.166425704956056],["reusable",-13.166489601135254],["▁Beaver",-13.166507720947266],["▁rosii",-13.166643142700195],["Arr",-13.166704177856444],["▁Zubehör",-13.166948318481444],["▁stolz",-13.166952133178713],["▁$75",-13.16695499420166],["▁Frühling",-13.166967391967772],["▁disagreement",-13.166988372802734],["▁formulate",-13.167381286621094],["braking",-13.167522430419922],["▁submarine",-13.167535781860352],["▁identificare",-13.167652130126951],["lansarea",-13.167659759521484],["covered",-13.167753219604492],["benso",-13.167859077453612],["▁situatie",-13.16798973083496],["hilf",-13.1681547164917],["▁Southampton",-13.168557167053224],["▁intéressé",-13.168557167053224],["▁congressional",-13.168572425842283],["65%",-13.16859531402588],["▁Allison",-13.168627738952637],["Mainland",-13.168726921081545],["▁touchscreen",-13.16882038116455],["leitet",-13.168922424316406],["mnului",-13.16958999633789],["▁engagiert",-13.169631004333496],["joacă",-13.16964340209961],["▁$5,000",-13.169652938842772],["upscale",-13.1697359085083],["▁vérité",-13.16983413696289],["flüssig",-13.170167922973633],["Richtlinie",-13.170169830322266],["▁positif",-13.170169830322266],["▁diferenta",-13.170175552368164],["▁întâi",-13.17070770263672],["ethylene",-13.170791625976562],["kreuz",-13.170913696289062],["Surely",-13.170990943908691],["puneti",-13.171002388000488],["europe",-13.171142578125],["▁comunist",-13.171271324157717],["unterricht",-13.171302795410156],["▁Füll",-13.171304702758787],["▁Aberdeen",-13.171792030334473],["▁DSLR",-13.171792030334473],["▁functioneaza",-13.171799659729004],["▁benches",-13.171807289123535],["▁Alpine",-13.171866416931152],["phthal",-13.172003746032717],["▁counselling",-13.17219066619873],["▁erzielen",-13.172323226928713],["▁părinţi",-13.172329902648926],["▁besitzen",-13.17236614227295],["heavenly",-13.172389030456545],["▁masque",-13.17281723022461],["▁Legislature",-13.172859191894531],["▁Recycling",-13.172861099243164],["▁Derma",-13.172883987426758],["reunite",-13.172926902770996],["recettes",-13.17310619354248],["converge",-13.173262596130373],["▁compoziti",-13.17327880859375],["▁Nürnberg",-13.173398971557615],["760",-13.173545837402344],["▁entière",-13.17367458343506],["▁parchment",-13.173944473266602],["▁Aufwand",-13.173945426940918],["▁antivirus",-13.174087524414062],["▁remettr",-13.17409610748291],["▁NEVER",-13.174243927001951],["▁restrictive",-13.174266815185549],["▁beurre",-13.174283027648926],["▁frigider",-13.174478530883787],["acquisition",-13.174642562866213],["▁Correct",-13.174866676330566],["▁immortal",-13.17501735687256],["▁occupancy",-13.17501735687256],["▁Tucson",-13.175019264221191],["▁Dhabi",-13.175025939941406],["obligation",-13.175033569335938],["▁warfare",-13.175037384033203],["▁syntax",-13.175045013427734],["APS",-13.175106048583984],["мен",-13.175209999084473],["▁diferenț",-13.175251960754396],["wordpress",-13.17549991607666],["▁Wohnzimmer",-13.175593376159668],["oppo",-13.175736427307127],["▁miscare",-13.175762176513672],["companiilor",-13.17581558227539],["▁bezahlt",-13.17584228515625],["Sterne",-13.175864219665527],["inability",-13.175898551940918],["▁Hoffnung",-13.176156044006348],["▁românească",-13.176176071166992],["document",-13.176177024841309],["borrowers",-13.17625904083252],["▁rasa",-13.176301956176758],["▁bénéfice",-13.176445960998535],["▁Panda",-13.17645263671875],["▁cărţi",-13.176730155944824],["▁Vorgehen",-13.17690658569336],["▁afecteaz",-13.176956176757812],["▁diagnos",-13.177050590515137],["▁Dentistry",-13.177180290222168],["▁staggering",-13.177180290222168],["präsident",-13.177181243896484],["▁vocational",-13.177239418029783],["Combined",-13.177287101745604],["stère",-13.177306175231934],["▁frunze",-13.177478790283203],["OLI",-13.177525520324709],["▁răc",-13.177752494812012],["▁changé",-13.177754402160645],["▁reprezentanți",-13.177757263183594],["▁ausgeschlossen",-13.177777290344238],["Windows",-13.177891731262209],["sometimes",-13.177898406982422],["▁dargestellt",-13.178120613098145],["provoking",-13.178263664245604],["terribly",-13.178264617919922],["▁speculate",-13.178274154663086],["▁complément",-13.178305625915527],["▁(2006)",-13.178306579589844],["zulegen",-13.178668022155762],["▁définitive",-13.178876876831056],["considerare",-13.17911148071289],["▁Subaru",-13.179354667663574],["WAN",-13.179390907287598],["guessed",-13.179417610168455],["spannung",-13.179479598999023],["▁supernatural",-13.179515838623049],["▁Interstate",-13.17957878112793],["▁redundant",-13.179891586303713],["▁HUG",-13.179893493652344],["▁restauration",-13.180006980895996],["repute",-13.180011749267578],["coagul",-13.180028915405272],["tehnologia",-13.18043327331543],["warded",-13.180444717407228],["▁lobster",-13.180469512939451],["▁Hafen",-13.180542945861816],["▁Guess",-13.18056583404541],["seraient",-13.181038856506348],["▁trench",-13.181156158447266],["▁piept",-13.181283950805664],["categorized",-13.181396484375],["softer",-13.1815185546875],["▁feasibility",-13.181519508361816],["▁restructuring",-13.181519508361816],["▁GOOD",-13.181537628173828],["▁inspiré",-13.181610107421877],["▁spéci",-13.18163013458252],["▁Mattress",-13.181686401367188],["▁biologique",-13.181702613830566],["▁Crema",-13.182043075561523],["▁korrekt",-13.182063102722168],["▁imperfect",-13.182205200195312],["▁advantageous",-13.182329177856444],["9.00",-13.182390213012695],["PAL",-13.182557106018066],["▁Illustration",-13.182607650756836],["▁Katherine",-13.182607650756836],["▁cervical",-13.182607650756836],["▁hectic",-13.182611465454102],["▁Belastung",-13.182615280151367],["▁Laguna",-13.182628631591797],["▁Burton",-13.182761192321776],["nettoyage",-13.182875633239746],["Toward",-13.183072090148926],["continuare",-13.183072090148926],["▁acumulat",-13.183106422424316],["▁déposé",-13.183216094970703],["▁prestige",-13.183269500732422],["▁LNG",-13.18352508544922],["▁Dacia",-13.18366241455078],["▁concede",-13.183691024780272],["▁reconciliation",-13.183822631835938],["Sistemul",-13.183877944946287],["Speed",-13.183937072753906],["▁Implant",-13.183977127075195],["▁möchtest",-13.184020042419434],["▁Norton",-13.184064865112305],["▁cosmic",-13.184181213378906],["enregistrement",-13.184247016906738],["țării",-13.18433952331543],["Veröffentlichung",-13.184786796569824],["erlebnis",-13.184786796569824],["▁Carpenter",-13.184786796569824],["▁INFORMATION",-13.184786796569824],["invites",-13.18481731414795],["▁gewan",-13.1849365234375],["▁réservé",-13.184986114501951],["▁aquatic",-13.184988021850586],["▁Seoul",-13.18507194519043],["▁älter",-13.185185432434082],["▁classmates",-13.185223579406738],["gelangen",-13.185253143310549],["▁Camill",-13.185285568237305],["simo",-13.185291290283203],["▁dormitor",-13.185333251953123],["wahren",-13.185354232788086],["▁incremental",-13.185357093811035],["▁caci",-13.185494422912598],["mittlere",-13.185752868652344],["▁condominium",-13.185877799987791],["▁rainforest",-13.185877799987791],["▁championnat",-13.185891151428224],["▁interrupted",-13.185921669006348],["▁tactile",-13.185930252075195],["▁unconditional",-13.185945510864258],["▁reactive",-13.186041831970217],["▁Stretch",-13.1861572265625],["▁serene",-13.18624210357666],["570",-13.186318397521973],["igte",-13.186376571655272],["Louis",-13.186410903930664],["▁Mittelpunkt",-13.186493873596191],["EEP",-13.18651294708252],["▁vault",-13.186552047729492],["absolu",-13.186893463134766],["▁solidarity",-13.186971664428713],["CLICK",-13.18708324432373],["▁hustle",-13.187090873718262],["▁microscope",-13.187105178833008],["▁Recommended",-13.187111854553224],["âche",-13.18716812133789],["▁flashlight",-13.187286376953123],["modificarea",-13.18754768371582],["izaţi",-13.18773078918457],["planned",-13.187899589538574],["Download",-13.187906265258787],["▁gourmand",-13.188064575195312],["▁subsidiaries",-13.188064575195312],["orthodox",-13.188135147094728],["▁Auburn",-13.18832302093506],["▁exprimat",-13.188336372375488],["procédé",-13.18861198425293],["▁ressenti",-13.188648223876951],["▁stint",-13.188678741455078],["Essentially",-13.189072608947754],["▁Savior",-13.189164161682127],["▁Flood",-13.189168930053713],["▁neurological",-13.189249038696287],["▁strig",-13.189340591430664],["scended",-13.18942165374756],["▁Shiva",-13.189483642578123],["▁Sketch",-13.189544677734377],["▁monarch",-13.18956184387207],["▁Preview",-13.189632415771484],["▁bewegt",-13.189811706542969],["mapped",-13.189818382263184],["énorme",-13.18996238708496],["▁définition",-13.189963340759276],["▁nécessité",-13.189984321594238],["▁antren",-13.190027236938477],["▁Infant",-13.190072059631348],["▁incumbent",-13.190255165100098],["▁pavilion",-13.190255165100098],["▁Taliban",-13.19025707244873],["Easily",-13.19025993347168],["▁verteilt",-13.19030475616455],["▁Biblical",-13.190320014953612],["Christian",-13.190333366394045],["județul",-13.190436363220217],["Learning",-13.19046688079834],["▁Expand",-13.19054126739502],["▁Attach",-13.19056224822998],["consideră",-13.190573692321776],["einsatz",-13.190574645996094],["Numai",-13.190585136413574],["▁Eintrag",-13.190597534179688],["▁üblich",-13.190607070922852],["▁cumpără",-13.19062614440918],["escaped",-13.190693855285645],["▁Ortodox",-13.190804481506348],["▁obţinut",-13.190805435180664],["ecluded",-13.191036224365234],["▁brownie",-13.191089630126951],["▁regulament",-13.191253662109377],["▁Chaos",-13.191302299499512],["▁masiv",-13.19132137298584],["▁Gerald",-13.191376686096191],["▁Sigur",-13.191380500793455],["▁wavelength",-13.191380500793455],["▁retiring",-13.191396713256836],["▁exactement",-13.191819190979004],["ntino",-13.191823959350586],["▁Krebs",-13.19194221496582],["▁monatlich",-13.191956520080566],["▁aranj",-13.192011833190918],["▁priveşt",-13.192099571228027],["▁mecanic",-13.192109107971191],["money",-13.192233085632324],["parliamentary",-13.1922607421875],["▁probation",-13.192427635192873],["embroidered",-13.19245147705078],["▁amenajat",-13.19245147705078],["▁remnant",-13.19245147705078],["▁senzati",-13.192472457885742],["▁Declaration",-13.19248390197754],["farbe",-13.192506790161133],["▁skinny",-13.19260311126709],["Energi",-13.192648887634276],["verhältnisse",-13.19288158416748],["Recruit",-13.19297218322754],["frying",-13.193161010742188],["925",-13.193294525146484],["nstruire",-13.193302154541016],["toasted",-13.193424224853516],["▁nicotine",-13.193551063537598],["recessed",-13.193570137023926],["▁dialect",-13.19357204437256],["▁confisc",-13.193575859069824],["▁bubbl",-13.193643569946287],["▁Precision",-13.193682670593262],["▁sollicit",-13.193842887878418],["▁Moral",-13.193977355957031],["▁renseignements",-13.19411277770996],["UMP",-13.194116592407228],["ijn",-13.194183349609377],["▁fermeture",-13.194320678710938],["▁blueprint",-13.19462776184082],["▁groceries",-13.194652557373049],["möbel",-13.194655418395996],["▁Plenty",-13.194657325744627],["▁forfeit",-13.194719314575195],["méthodes",-13.194915771484377],["paving",-13.19493293762207],["outheastern",-13.194979667663574],["▁Overview",-13.19503116607666],["▁observers",-13.195171356201172],["▁Timișoara",-13.19520378112793],["noticing",-13.195332527160645],["▁Owl",-13.19538116455078],["▁1925",-13.195517539978027],["▁prüfen",-13.195755004882812],["▁Bewohner",-13.195756912231444],["▁Latvia",-13.195770263671877],["▁Tuscan",-13.19577407836914],["▁apprenticeship",-13.195789337158203],["▁courteous",-13.1958646774292],["adult",-13.19602394104004],["Licensed",-13.196029663085938],["abused",-13.196762084960938],["confidence",-13.19678020477295],["▁revolt",-13.196782112121582],["conference",-13.196861267089844],["genoss",-13.196914672851562],["▁răni",-13.196944236755373],["▁Intervention",-13.196949005126951],["▁primesc",-13.196969985961914],["trays",-13.197041511535645],["nozzle",-13.197216033935549],["▁splitting",-13.197443962097168],["▁könne",-13.197507858276367],["▁peisaj",-13.197943687438965],["▁academia",-13.197962760925291],["▁chakra",-13.197979927062988],["▁Abdul",-13.1981201171875],["▁Beschreibung",-13.198225021362305],["Regeln",-13.19831371307373],["eezy",-13.198314666748049],["▁problématique",-13.198515892028809],["▁Ausführung",-13.198524475097656],["▁reconnect",-13.19868278503418],["▁telefonic",-13.198966026306152],["▁Ethereum",-13.199069023132324],["▁Winnipeg",-13.199069023132324],["▁misconception",-13.199069023132324],["▁Verpackung",-13.199070930480955],["▁erzeugt",-13.199097633361816],["▁Identity",-13.199104309082031],["▁dunkle",-13.199109077453612],["sustaining",-13.19916820526123],["▁pereche",-13.199178695678713],["▁neîn",-13.19923973083496],["directorul",-13.199291229248049],["▁élabor",-13.199584007263184],["▁Hollow",-13.19960880279541],["▁getestet",-13.199751853942873],["▁Promote",-13.19979763031006],["agriculture",-13.199920654296877],["▁deosebir",-13.199934005737305],["▁neam",-13.199999809265137],["aufbau",-13.200042724609377],["▁susținut",-13.200079917907717],["fueled",-13.200119018554688],["▁impresionant",-13.200177192687988],["innate",-13.20026969909668],["grenzt",-13.200340270996094],["rescued",-13.200514793395996],["bestand",-13.200559616088867],["▁adjunct",-13.200729370117188],["▁Mischung",-13.200754165649414],["▁Lease",-13.201258659362791],["espagnol",-13.201284408569336],["▁Kickstarter",-13.201284408569336],["▁buzunar",-13.201284408569336],["▁buddies",-13.20129108428955],["käufe",-13.201485633850098],["cevoir",-13.201582908630373],["▁creşte",-13.201675415039062],["▁Cluster",-13.201825141906738],["▁obișnui",-13.201838493347168],["▁cassette",-13.201889038085938],["▁optisch",-13.201947212219238],["manned",-13.20200252532959],["schneid",-13.202362060546877],["Württemberg",-13.202393531799316],["shredded",-13.202393531799316],["▁botanical",-13.20239543914795],["characterization",-13.20244598388672],["▁Durchführung",-13.202452659606934],["▁tireless",-13.20250129699707],["lässlich",-13.20254135131836],["▁Merchant",-13.202570915222168],["joutez",-13.20259952545166],["▁amélior",-13.202676773071287],["fixed",-13.202741622924805],["kho",-13.202760696411133],["▁televizor",-13.202948570251465],["▁Davies",-13.202964782714844],["enceinte",-13.203118324279783],["▁Panorama",-13.20350456237793],["▁maternal",-13.20350742340088],["diversified",-13.203513145446776],["▁Jü",-13.203570365905762],["▁naz",-13.203730583190918],["▁plonge",-13.2039213180542],["geschickt",-13.203944206237791],["MIS",-13.204215049743652],["ragged",-13.204553604125977],["▁diarrhea",-13.20461654663086],["▁tsunami",-13.20461654663086],["▁Nikola",-13.204625129699709],["▁festivities",-13.20464038848877],["potting",-13.20479965209961],["▁telefonisch",-13.204874038696287],["TAR",-13.204971313476562],["▁schimbări",-13.205023765563965],["▁occidental",-13.205172538757324],["schloss",-13.20517921447754],["Print",-13.205284118652344],["▁autoritățil",-13.205361366271973],["idos",-13.20556640625],["mediocr",-13.20559310913086],["▁Decla",-13.205686569213867],["▁Elliott",-13.205729484558104],["▁pinpoint",-13.205734252929688],["▁disciple",-13.20579719543457],["▁Cairo",-13.2058744430542],["▁15-20",-13.2059326171875],["▁limbaj",-13.20611572265625],["▁retenu",-13.206154823303224],["▁Blüte",-13.20628833770752],["▁MINI",-13.206467628479004],["▁lumină",-13.206567764282228],["▁flawed",-13.206846237182615],["▁Belarus",-13.207067489624023],["Totul",-13.207207679748535],["hôte",-13.207273483276367],["▁verbringen",-13.207315444946287],["▁simultaneous",-13.20734405517578],["▁competiți",-13.207402229309082],["▁lancement",-13.20741367340088],["▁proprietati",-13.207432746887209],["▁angajator",-13.207465171813965],["▁ignorant",-13.207674026489258],["▁indicative",-13.207700729370115],["▁Bearbeitung",-13.207961082458496],["▁Ungaria",-13.207961082458496],["▁Sfint",-13.208015441894531],["▁Trojan",-13.20804214477539],["▁1911",-13.208100318908691],["▁reliabl",-13.2081937789917],["6-0",-13.20827865600586],["obst",-13.208523750305176],["▁relève",-13.208579063415527],["▁standpoint",-13.208874702453612],["ridden",-13.208918571472168],["▁Pdf",-13.20900535583496],["tatewide",-13.209051132202148],["Water",-13.209062576293944],["▁Pricing",-13.209089279174805],["▁protecţi",-13.209168434143066],["November",-13.20961570739746],["▁televiziune",-13.20964241027832],["Sodium",-13.209881782531738],["douceur",-13.209942817687988],["▁Flasche",-13.210183143615724],["3.9",-13.210193634033203],["▁electromagnetic",-13.210195541381836],["▁mitochondria",-13.210195541381836],["Suddenly",-13.210199356079102],["▁Drupal",-13.210201263427734],["▁supraveghere",-13.210211753845217],["▁cornea",-13.210288047790527],["räumt",-13.210309982299805],["▁healed",-13.210410118103027],["Roc",-13.210649490356444],["▁temporar",-13.210707664489746],["▁amaze",-13.210770606994627],["▁confrunta",-13.210833549499512],["Afterward",-13.21083641052246],["▁festgelegt",-13.21084213256836],["▁Kuchen",-13.210844993591309],["▁perpetual",-13.210858345031738],["systematically",-13.211000442504885],["▁coloan",-13.21100616455078],["▁extensi",-13.211058616638184],["▁Județean",-13.211315155029297],["▁amelior",-13.211315155029297],["▁illustrator",-13.211315155029297],["▁titanium",-13.211344718933104],["SMEs",-13.211384773254396],["taxable",-13.211578369140623],["▁Borough",-13.211607933044434],["verlust",-13.211772918701172],["ductive",-13.21233081817627],["▁Küste",-13.212335586547852],["▁végétal",-13.212410926818848],["▁breastfeeding",-13.212435722351074],["▁captivating",-13.212435722351074],["▁Chevy",-13.212443351745604],["▁aerospace",-13.212469100952148],["pozitia",-13.213095664978027],["Tutor",-13.213199615478516],["▁spum",-13.213312149047852],["curând",-13.213419914245604],["iscus",-13.213458061218262],["October",-13.213495254516602],["▁Reparatur",-13.213557243347168],["▁Servicii",-13.213574409484863],["▁Gonz",-13.21357536315918],["▁cybersecurity",-13.21357536315918],["▁UCLA",-13.213678359985352],["rissa",-13.21383571624756],["▁Kemp",-13.213850021362305],["▁piston",-13.214046478271484],["▁révèle",-13.214118957519531],["▁posséd",-13.21412181854248],["▁versehen",-13.214129447937012],["▁scrutin",-13.214226722717283],["donnant",-13.21436882019043],["▁Geschwindigkeit",-13.214680671691896],["▁Panasonic",-13.214680671691896],["audio",-13.21470069885254],["▁Packaging",-13.214771270751951],["phra",-13.2147798538208],["▁Letzte",-13.214954376220703],["insicht",-13.21514129638672],["▁sammeln",-13.215243339538574],["▁extins",-13.215259552001951],["▁collège",-13.215266227722168],["ancies",-13.215343475341797],["▁întâlnit",-13.215350151062012],["▁Servi",-13.215392112731934],["stattet",-13.215493202209473],["▁abstraction",-13.215566635131836],["▁candidature",-13.21559238433838],["ONU",-13.215676307678224],["▁raffle",-13.215826988220217],["▁Soldier",-13.215834617614746],["▁stipulate",-13.215883255004885],["▁vizual",-13.215950012207031],["lucht",-13.216007232666016],["▁circus",-13.216068267822266],["▁decree",-13.216259002685549],["immeuble",-13.216367721557615],["Store",-13.216426849365234],["randul",-13.216622352600098],["▁narration",-13.216933250427246],["implication",-13.216958045959473],["▁discontinued",-13.216971397399902],["▁Pilates",-13.216989517211914],["▁biais",-13.21701431274414],["panel",-13.217325210571287],["▁mower",-13.217458724975586],["▁Castro",-13.21753978729248],["pregătire",-13.217641830444336],["▁denomination",-13.218062400817873],["▁throttle",-13.21806526184082],["▁finition",-13.21808624267578],["▁clarification",-13.218286514282228],["laut",-13.218366622924805],["▁wastewater",-13.2184419631958],["▁Sanchez",-13.21877098083496],["▁Umfeld",-13.2189359664917],["▁consili",-13.218997955322266],["extrait",-13.219013214111328],["ionism",-13.2190523147583],["▁Cannabis",-13.219186782836914],["▁misconduct",-13.219186782836914],["▁shepherd",-13.219186782836914],["▁feminist",-13.21919059753418],["▁criterii",-13.219212532043455],["America",-13.219219207763672],["▁Telephone",-13.219270706176758],["▁Fritz",-13.219438552856444],["▁cheltui",-13.219794273376465],["▁Übung",-13.219857215881348],["făcută",-13.22006893157959],["▁străzi",-13.220170021057127],["influencing",-13.22031593322754],["▁Democracy",-13.220321655273438],["atorium",-13.220376014709473],["▁Stufe",-13.220465660095217],["▁Cornell",-13.220660209655762],["zugehen",-13.22074031829834],["▁coton",-13.22080421447754],["▁beinhaltet",-13.220881462097168],["▁kritisch",-13.220884323120115],["▁Kalender",-13.22105884552002],["▁Teig",-13.221253395080566],["cooked",-13.221264839172363],["▁diversité",-13.221390724182127],["recognizable",-13.221446990966797],["▁Dictionary",-13.221446990966797],["attribution",-13.22145938873291],["▁Teresa",-13.221471786499023],["▁Ahmad",-13.221487998962402],["HAM",-13.221627235412598],["▁floss",-13.221668243408203],["génie",-13.2218599319458],["▁Espa",-13.221989631652832],["hersteller",-13.221993446350098],["Musée",-13.222001075744627],["▁Crawford",-13.222579002380373],["▁Phantom",-13.222579002380373],["▁Jenkins",-13.22264003753662],["genauer",-13.222774505615234],["▁acţiuni",-13.222885131835938],["▁meciuri",-13.22322940826416],["▁verstärkt",-13.22326374053955],["▁troop",-13.22341251373291],["räder",-13.223483085632324],["Putting",-13.223536491394045],["NASDAQ",-13.223712921142578],["▁Buddhism",-13.223712921142578],["▁Religious",-13.223712921142578],["▁accommodating",-13.223712921142578],["▁lendemain",-13.223712921142578],["▁plywood",-13.223714828491213],["▁inflatable",-13.223724365234377],["▁sèche",-13.223731994628906],["▁fragil",-13.22384548187256],["▁Filip",-13.224115371704102],["▁Terrace",-13.22427463531494],["Biblio",-13.22432804107666],["resides",-13.22448444366455],["▁varf",-13.22451114654541],["Bildern",-13.224528312683104],["loß",-13.224685668945312],["555",-13.224702835083008],["▁astounding",-13.224847793579102],["▁brillant",-13.224857330322266],["▁Railroad",-13.224871635437012],["minimizing",-13.224907875061035],["▁Benedict",-13.225019454956056],["▁$400",-13.225068092346191],["▁schematic",-13.225217819213867],["Canada",-13.225371360778809],["▁psihic",-13.225415229797363],["▁avertiz",-13.225497245788574],["▁Breed",-13.225550651550291],["▁gradina",-13.22560691833496],["▁Liege",-13.225822448730469],["▁Retirement",-13.22598361968994],["▁pergola",-13.22600555419922],["▁Kuwait",-13.2260103225708],["▁logistic",-13.22629451751709],["▁captive",-13.22651481628418],["prepared",-13.226568222045898],["▁prononc",-13.226568222045898],["Celui",-13.226676940917969],["deutschland",-13.227120399475098],["▁devreme",-13.227124214172363],["▁părți",-13.227270126342772],["▁1934",-13.227517127990724],["▁ersetzt",-13.227560997009276],["▁frightening",-13.227689743041992],["▁fiecărui",-13.227819442749023],["correct",-13.22799015045166],["6.6",-13.228057861328123],["▁Manitoba",-13.228259086608888],["Chartered",-13.228416442871094],["▁părăs",-13.228543281555176],["Powered",-13.228697776794434],["impede",-13.22876262664795],["agonist",-13.22878646850586],["▁stratégique",-13.228829383850098],["▁vigilant",-13.228830337524414],["faceted",-13.228930473327637],["available",-13.229308128356934],["▁Promise",-13.229388236999512],["▁humorous",-13.229446411132812],["treibt",-13.229449272155762],["▁Patrol",-13.229514122009276],["huh",-13.22952365875244],["ztlich",-13.229804039001465],["▁rejet",-13.2299165725708],["odeur",-13.229935646057127],["usziehbar",-13.22996997833252],["▁gespannt",-13.229972839355469],["church",-13.230018615722656],["▁Popescu",-13.230109214782717],["▁einmalig",-13.230518341064451],["diluted",-13.230551719665527],["lighted",-13.231070518493652],["▁stattfinden",-13.23111343383789],["▁Reaktion",-13.231183052062988],["▁délivr",-13.23134994506836],["▁Helfer",-13.231407165527344],["Fiind",-13.23142147064209],["rmând",-13.231507301330566],["▁Beweis",-13.231671333312988],["▁Violet",-13.231733322143556],["kamera",-13.231764793395996],["▁Romney",-13.231779098510742],["▁Bradford",-13.231800079345703],["stellbar",-13.231852531433104],["▁roadmap",-13.231921195983888],["▁subconscious",-13.23204231262207],["contrasting",-13.232138633728027],["mécanisme",-13.232254981994627],["kämpft",-13.232255935668944],["▁Preston",-13.23271942138672],["▁Anliegen",-13.232802391052246],["▁necessities",-13.232827186584473],["▁detrimental",-13.232828140258787],["▁sprawl",-13.232830047607422],["▁Erfüllung",-13.23287582397461],["▁massacre",-13.2329683303833],["▁pietre",-13.232987403869627],["▁situații",-13.233027458190918],["vêtement",-13.233080863952637],["Listed",-13.233144760131836],["▁extravagant",-13.233399391174316],["▁axle",-13.233525276184082],["OTT",-13.23366355895996],["wildly",-13.233744621276855],["70,000",-13.233797073364258],["▁chauffeur",-13.23384952545166],["▁Brasov",-13.233972549438477],["▁Fähigkeiten",-13.233972549438477],["▁staatlich",-13.23402500152588],["outlines",-13.234034538269045],["▁aufmerksam",-13.234545707702637],["▁Relation",-13.234749794006348],["▁Stephan",-13.234947204589844],["yland",-13.23494815826416],["proclaimed",-13.23508644104004],["Wallet",-13.235100746154783],["verarbeitung",-13.235118865966797],["▁überraschen",-13.235118865966797],["▁Injury",-13.235125541687012],["▁horsepower",-13.235237121582031],["▁Tropical",-13.23523998260498],["▁wives",-13.235459327697754],["adherence",-13.235677719116213],["schätzung",-13.235692977905272],["▁coherent",-13.235708236694336],["parlament",-13.23574161529541],["▁stup",-13.235852241516112],["▁resonance",-13.23626708984375],["▁inheritance",-13.236355781555176],["commenced",-13.23645305633545],["▁supervise",-13.236475944519045],["▁facilitator",-13.236488342285156],["fares",-13.23667812347412],["▁Tibet",-13.23672866821289],["communication",-13.236787796020508],["yog",-13.236806869506836],["▁WLAN",-13.236842155456545],["▁Chili",-13.23685073852539],["▁Harold",-13.2369966506958],["▁Guerre",-13.237005233764648],["▁Femme",-13.237146377563477],["▁Lisbon",-13.237231254577637],["▁mulțumi",-13.237415313720703],["▁vorbereitet",-13.237415313720703],["▁aperture",-13.237422943115234],["▁Universities",-13.237442016601562],["▁reckless",-13.237471580505373],["▁Botschaft",-13.237533569335938],["▁Squad",-13.238022804260254],["▁buoy",-13.238061904907228],["participarea",-13.238236427307127],["stiinta",-13.238389015197754],["▁repeal",-13.238415718078612],["drilled",-13.238489151000977],["▁Conversation",-13.238567352294922],["▁subsid",-13.238615036010742],["anstalt",-13.238741874694824],["faktor",-13.23874282836914],["▁swamp",-13.23879051208496],["pflichtig",-13.238921165466309],["▁camion",-13.238970756530762],["▁gouvern",-13.239032745361328],["▁archaeological",-13.239141464233398],["▁glitch",-13.239198684692385],["average",-13.239294052124023],["▁coffre",-13.239481925964355],["▁Insert",-13.239513397216797],["▁colonne",-13.2395601272583],["▁Assess",-13.23962116241455],["▁batches",-13.239716529846191],["▁ammunition",-13.239717483520508],["▁scissors",-13.239717483520508],["▁Locksmith",-13.239740371704102],["▁Bollywood",-13.239991188049316],["expédi",-13.240288734436035],["▁descendants",-13.24039363861084],["▁unwilling",-13.240506172180176],["▁Noise",-13.240649223327637],["▁Directive",-13.240660667419434],["ATOR",-13.240765571594238],["▁Rajasthan",-13.240870475769045],["▁chaotic",-13.240888595581056],["▁NEED",-13.24093246459961],["▁părere",-13.24095344543457],["▁begonnen",-13.241448402404783],["▁Reef",-13.241504669189451],["▁vorgesehen",-13.24161434173584],["▁allocate",-13.241826057434082],["▁exceptionnel",-13.241936683654783],["▁gefertigt",-13.24203872680664],["fading",-13.242072105407717],["▁interpersonal",-13.242178916931152],["▁occupie",-13.242204666137695],["▁Teatr",-13.242579460144045],["▁kilomètres",-13.242603302001951],["▁verbinden",-13.242608070373535],["▁Frucht",-13.242643356323242],["augmented",-13.242720603942873],["▁twentieth",-13.243181228637695],["▁aggression",-13.243183135986328],["▁Miracle",-13.243184089660645],["▁peninsula",-13.243184089660645],["▁Fernando",-13.24318504333496],["▁autorităţil",-13.243203163146973],["▁Iisus",-13.24321746826172],["▁puck",-13.243423461914062],["titel",-13.243454933166504],["▁remake",-13.243562698364258],["freiheit",-13.243563652038574],["▁Belize",-13.243590354919434],["▁secundar",-13.243779182434082],["▁perpetrat",-13.243786811828612],["jedenfalls",-13.243797302246094],["linked",-13.243820190429688],["▁dégag",-13.243918418884276],["LAY",-13.243926048278809],["behandlung",-13.24417209625244],["▁1928",-13.244193077087402],["▁Nickel",-13.244205474853516],["rophy",-13.244256973266602],["▁autonomy",-13.244338989257812],["▁Treffen",-13.244402885437012],["▁groundbreaking",-13.24445915222168],["politisch",-13.244484901428224],["▁Vector",-13.244553565979004],["oricine",-13.244684219360352],["utilisées",-13.244684219360352],["plete",-13.244771003723145],["droht",-13.244918823242188],["▁alternativ",-13.245104789733888],["▁Bernie",-13.245213508605955],["▁embellish",-13.24526023864746],["▁Curriculum",-13.24549674987793],["herrscht",-13.245525360107422],["escalier",-13.246126174926758],["hian",-13.246333122253418],["ertaining",-13.246387481689451],["hitter",-13.246430397033691],["▁kompetente",-13.24665641784668],["▁trekking",-13.246760368347168],["EACH",-13.246841430664062],["▁Bedien",-13.2470703125],["starred",-13.247169494628906],["▁săptămâna",-13.247236251831056],["▁Gratuit",-13.247239112854004],["▁Jahrzehnte",-13.247241020202637],["ingénieur",-13.24731731414795],["▁Huang",-13.24736213684082],["Music",-13.247401237487791],["misiei",-13.247544288635254],["▁masuri",-13.247733116149902],["▁Achievement",-13.247817039489746],["▁Dorothy",-13.247817039489746],["blätter",-13.247817993164062],["éloign",-13.247817993164062],["▁Anglia",-13.247990608215332],["brach",-13.248013496398926],["▁Optimization",-13.248085021972656],["6.7",-13.248170852661133],["winkel",-13.248210906982422],["contenan",-13.248347282409668],["Astăzi",-13.248398780822754],["wiped",-13.248441696166992],["granting",-13.248665809631348],["▁plăti",-13.248859405517578],["▁Compensation",-13.248979568481444],["▁Verkäufer",-13.248979568481444],["▁angajați",-13.248980522155762],["▁diminished",-13.24902057647705],["employment",-13.249250411987305],["yahoo",-13.249435424804688],["▁détrui",-13.249698638916016],["▁suffisant",-13.24982738494873],["▁Moldovei",-13.250144004821776],["▁Pokemon",-13.250144004821776],["▁Malcolm",-13.250144958496094],["▁mysteries",-13.250147819519045],["▁Diversity",-13.250149726867676],["▁clinique",-13.250327110290527],["landais",-13.250344276428224],["▁campanii",-13.250399589538574],["▁témoignage",-13.250439643859863],["▁paralel",-13.25046730041504],["▁travailleurs",-13.250576972961426],["▁salvage",-13.250580787658691],["▁crayon",-13.250732421875],["immédiat",-13.25085163116455],["hopped",-13.250958442687988],["▁senzor",-13.25102710723877],["▁imbunatati",-13.251073837280272],["▁capitalize",-13.2511568069458],["▁Elephant",-13.25130844116211],["▁insomnia",-13.25131607055664],["▁Ansicht",-13.251325607299805],["▁lupte",-13.251556396484377],["▁genomic",-13.251557350158691],["▁Grape",-13.251769065856934],["MONT",-13.25197982788086],["métiers",-13.252004623413086],["▁Pierce",-13.252123832702637],["consulted",-13.252388954162598],["▁Responsible",-13.252474784851074],["symmetry",-13.252476692199709],["▁sulfur",-13.252487182617188],["▁înapoi",-13.25251007080078],["▁Junction",-13.252549171447754],["▁trilogy",-13.252622604370115],["▁unkompliziert",-13.253059387207031],["▁zugänglich",-13.253059387207031],["▁préfèr",-13.253153800964355],["oarelor",-13.253361701965332],["langage",-13.253460884094238],["admired",-13.253589630126951],["platform",-13.253595352172852],["▁pluralit",-13.253616333007812],["▁betrachtet",-13.253643035888672],["▁reproduc",-13.253790855407717],["exemple",-13.25385570526123],["▁conspir",-13.254347801208496],["▁pelvi",-13.25437068939209],["leased",-13.254551887512209],["▁souffle",-13.254570960998535],["▁approprié",-13.254705429077148],["absorbing",-13.254817962646484],["dividing",-13.254855155944824],["herently",-13.25514793395996],["▁blister",-13.255179405212402],["löst",-13.255182266235352],["Apotheke",-13.255398750305176],["▁Asociaţi",-13.25542449951172],["education",-13.255904197692873],["▁retract",-13.255982398986816],["▁appraise",-13.255990982055664],["▁Debbie",-13.256075859069824],["▁arhitect",-13.256193161010742],["▁Mohamed",-13.256568908691406],["▁îndrept",-13.256568908691406],["▁exhaustive",-13.256753921508787],["▁Notebook",-13.257004737854004],["crashing",-13.257068634033203],["▁Betreiber",-13.257155418395996],["▁présidentielle",-13.257159233093262],["▁Träger",-13.257172584533691],["▁noteworthy",-13.257259368896484],["▁séparé",-13.257729530334473],["▁doppelt",-13.257795333862305],["tină",-13.258066177368164],["Quelques",-13.258085250854492],["culoarea",-13.258100509643556],["▁ethic",-13.258166313171388],["▁cohesive",-13.258329391479492],["▁congratulations",-13.258334159851074],["▁sovereignty",-13.25833797454834],["▁Aplica",-13.258413314819336],["▁Covenant",-13.25851058959961],["▁multicultural",-13.258591651916504],["assemblée",-13.258955001831056],["▁petals",-13.258974075317385],["erode",-13.259026527404783],["▁porumb",-13.259035110473633],["▁Barrier",-13.259050369262695],["▁WWE",-13.259085655212402],["Etwa",-13.259175300598145],["▁recunosc",-13.259271621704102],["▁turtle",-13.25941562652588],["▁vârf",-13.259444236755373],["▁Ranking",-13.259448051452637],["▁sympathetic",-13.259514808654783],["exploded",-13.2595796585083],["▁influenț",-13.259591102600098],["▁Fireplace",-13.25972843170166],["▁Nachwuchs",-13.260090827941896],["▁empfohlen",-13.260090827941896],["Voir",-13.260661125183104],["▁Vimeo",-13.26069164276123],["▁weaving",-13.260967254638672],["beneficiar",-13.261198043823242],["▁balade",-13.261216163635254],["▁Mercy",-13.261566162109377],["3.000",-13.26181697845459],["Immediately",-13.26185703277588],["▁frosting",-13.261868476867676],["▁Fiscal",-13.261882781982422],["downloadable",-13.26188850402832],["▁Hwy",-13.261902809143066],["évoluer",-13.261951446533203],["▁vieille",-13.2620210647583],["heißen",-13.262436866760254],["▁étrangère",-13.262446403503418],["▁incapable",-13.262490272521973],["volunteered",-13.262520790100098],["fortunately",-13.262564659118652],["company",-13.262738227844238],["denkt",-13.2627592086792],["▁citesc",-13.262818336486816],["▁intrebare",-13.262896537780762],["pleasantly",-13.262990951538086],["▁Minecraft",-13.263079643249512],["▁Schmuck",-13.26308536529541],["▁maghiar",-13.263099670410156],["conductive",-13.263339042663574],["décrit",-13.263534545898438],["provide",-13.26353931427002],["▁depăş",-13.263628959655762],["ituated",-13.263657569885254],["▁trumpet",-13.264216423034668],["▁nastere",-13.2642240524292],["▁Région",-13.264245986938477],["Occupational",-13.264411926269531],["▁Grecia",-13.264415740966797],["▁Conclusion",-13.26449203491211],["▁collaborateurs",-13.264927864074709],["▁Alibaba",-13.265398025512695],["▁amplasat",-13.265398979187012],["▁Plastik",-13.265992164611816],["▁stash",-13.266023635864258],["▁Bonnie",-13.266045570373535],["▁ehrlich",-13.266156196594238],["▁contention",-13.266193389892578],["▁Oslo",-13.266263008117676],["englische",-13.266319274902344],["measurable",-13.266439437866213],["loppy",-13.266470909118652],["▁Refrigerat",-13.266579627990724],["▁remboursement",-13.26658058166504],["▁societăţi",-13.26658058166504],["translates",-13.266607284545898],["ichtigkeit",-13.266685485839844],["agentur",-13.266741752624512],["▁compute",-13.266800880432127],["berater",-13.266921043395996],["▁Georgetown",-13.266945838928224],["wolves",-13.26695156097412],["ceased",-13.266959190368652],["▁Binary",-13.267030715942385],["▁kontrolliert",-13.267172813415527],["informer",-13.267416000366213],["lehrer",-13.267578125],["lieferung",-13.267709732055664],["▁definit",-13.267742156982422],["chèque",-13.267765045166016],["▁clergy",-13.267765045166016],["▁ministries",-13.267767906188965],["▁plague",-13.267779350280762],["▁Jedi",-13.267805099487305],["▁Blackjack",-13.268025398254396],["▁subsection",-13.26807689666748],["▁Sachsen",-13.268121719360352],["valorile",-13.268146514892578],["molded",-13.26816463470459],["▁betroffen",-13.268183708190918],["▁adecvat",-13.268229484558104],["▁collègue",-13.26835823059082],["▁chinez",-13.268392562866213],["emelle",-13.268695831298828],["▁körperliche",-13.268902778625488],["▁titan",-13.26891040802002],["▁sophistication",-13.268951416015623],["▁provoke",-13.268957138061523],["▁pensii",-13.269042015075684],["▁Tucker",-13.26937770843506],["▁motoare",-13.26943302154541],["supported",-13.269536972045898],["▁Sicil",-13.269697189331056],["▁Ausgangs",-13.26987361907959],["▁verletzt",-13.269908905029297],["Ligue",-13.269996643066406],["▁organizatori",-13.270026206970217],["▁apprentice",-13.270099639892578],["▁Potato",-13.270183563232422],["▁Duft",-13.27039623260498],["▁medicament",-13.270566940307615],["Hôtel",-13.270740509033203],["▁Triangle",-13.27084255218506],["buted",-13.271100044250488],["▁Bentley",-13.271336555480955],["următoarele",-13.271389961242676],["animate",-13.271404266357422],["megapixel",-13.271404266357422],["einfachen",-13.271514892578123],["▁performanț",-13.271544456481934],["lurry",-13.27184009552002],["suffisamment",-13.27192211151123],["▁Weihnachten",-13.27192211151123],["▁Detective",-13.27194595336914],["▁lovit",-13.272049903869627],["▁blouse",-13.27213191986084],["▁hartie",-13.27216339111328],["vro",-13.27225112915039],["▁disastrous",-13.272517204284668],["vermutlich",-13.2725191116333],["▁Stafford",-13.272527694702148],["ehlt",-13.272628784179688],["▁vielseitig",-13.272643089294434],["Manifest",-13.273274421691896],["homage",-13.27354907989502],["menée",-13.273566246032717],["▁erläuter",-13.27370834350586],["▁volontaire",-13.273709297180176],["wrought",-13.27371597290039],["▁Naples",-13.273719787597656],["recommending",-13.273759841918944],["▁thermique",-13.273774147033691],["▁subtitle",-13.27378749847412],["▁Slam",-13.273809432983398],["▁necesitate",-13.273809432983398],["trimmed",-13.274099349975586],["urmatoarele",-13.274178504943848],["▁Sorin",-13.274245262145996],["▁compromis",-13.274300575256348],["overcoming",-13.274477005004885],["▁Samantha",-13.274901390075684],["dazzling",-13.27490234375],["▁Pearson",-13.274903297424316],["▁glazing",-13.274911880493164],["Revelation",-13.274921417236328],["destinée",-13.275156021118164],["öffnet",-13.27515983581543],["CERT",-13.275327682495115],["▁Sneak",-13.275503158569336],["proiectele",-13.275605201721191],["▁longitudinal",-13.27609634399414],["▁cocaine",-13.276098251342772],["▁universitar",-13.276108741760254],["▁refreshments",-13.276166915893556],["▁instanţ",-13.276243209838867],["▁kostenfrei",-13.276397705078123],["▁comédie",-13.276451110839844],["▁Locat",-13.276725769042969],["▁Albania",-13.276732444763184],["▁mécanique",-13.276776313781738],["messung",-13.27683162689209],["issus",-13.277260780334473],["pinned",-13.277328491210938],["▁sanft",-13.277335166931152],["▁geprüft",-13.277435302734377],["▁procè",-13.277442932128906],["▁Üb",-13.277765274047852],["5-0",-13.277802467346191],["▁Catering",-13.277957916259766],["▁prosperous",-13.27801513671875],["▁replication",-13.278098106384276],["▁obese",-13.278441429138184],["clerosis",-13.278489112854004],["▁Carnegie",-13.278489112854004],["▁Incredible",-13.278489112854004],["▁Teppich",-13.278489112854004],["▁crunchy",-13.278489112854004],["▁vomiting",-13.278529167175291],["▁sourire",-13.278619766235352],["publish",-13.278948783874512],["▁exterioar",-13.279094696044922],["▁forehead",-13.279107093811035],["▁climatique",-13.27931308746338],["▁conservator",-13.279458999633787],["▁Russland",-13.279687881469728],["▁kombiniert",-13.279687881469728],["▁Thrones",-13.279688835144045],["▁Griffith",-13.27968978881836],["▁fragrant",-13.279695510864258],["▁RSVP",-13.279698371887209],["klima",-13.279751777648926],["▁situație",-13.279808044433594],["deschiderea",-13.280009269714355],["▁moale",-13.280033111572266],["▁Trevor",-13.280112266540527],["ménager",-13.28011417388916],["deploying",-13.280428886413574],["▁Loft",-13.280500411987305],["▁Willkommen",-13.28059196472168],["▁Bezirks",-13.280887603759766],["▁Himself",-13.280975341796877],["▁quarant",-13.28101634979248],["▁1901",-13.281079292297363],["▁tripod",-13.28136920928955],["▁récolt",-13.281553268432615],["natură",-13.281631469726562],["School",-13.281649589538574],["contested",-13.281773567199709],["bwohl",-13.281784057617188],["Darren",-13.281830787658691],["medicine",-13.281903266906738],["▁Impuls",-13.282041549682615],["prevailing",-13.282057762145996],["▁orthodontic",-13.282089233398438],["▁sequential",-13.282089233398438],["▁Kolkata",-13.28209114074707],["▁séch",-13.282100677490234],["▁diaper",-13.28212833404541],["▁simplifie",-13.282144546508787],["▁reflux",-13.282163619995115],["▁Hypo",-13.28224277496338],["imprimer",-13.282251358032228],["▁Folosi",-13.282401084899902],["Info",-13.282570838928224],["▁Investiga",-13.282801628112791],["stabilirea",-13.282845497131348],["élis",-13.28314971923828],["ccessed",-13.28320026397705],["▁recyclable",-13.28329372406006],["▁forbidden",-13.283295631408691],["▁Colonel",-13.283297538757324],["▁nisip",-13.28330135345459],["▁Fundamental",-13.283303260803224],["▁nouveauté",-13.283308029174805],["khi",-13.283357620239258],["▁ecology",-13.28339672088623],["▁filament",-13.283540725708008],["▁relentless",-13.283559799194336],["▁Behavior",-13.283669471740724],["titulaire",-13.283900260925291],["▁administrativ",-13.28404426574707],["▁Vorlage",-13.284209251403809],["zeigte",-13.28427791595459],["▁Bäume",-13.284497261047363],["▁Kartoffel",-13.284497261047363],["▁Possible",-13.284500122070312],["▁perturb",-13.28466510772705],["▁Grigor",-13.284717559814451],["▁streng",-13.284759521484377],["▁vânzare",-13.285101890563965],["concentrating",-13.285698890686035],["▁rechtzeitig",-13.2857027053833],["▁eternity",-13.28570556640625],["▁Puzzle",-13.28575611114502],["▁malade",-13.285775184631348],["▁Metallic",-13.285776138305664],["▁Unterhaltung",-13.285783767700195],["▁4:00",-13.285820960998535],["▁magique",-13.285908699035645],["▁cellphone",-13.285975456237791],["▁inhibition",-13.286023139953612],["▁remplacement",-13.286025047302246],["▁WWII",-13.286089897155762],["Eff",-13.286258697509766],["kontakt",-13.286832809448242],["Update",-13.286869049072266],["▁Emerald",-13.286910057067873],["▁hammock",-13.286910057067873],["POWER",-13.286917686462402],["automne",-13.286917686462402],["▁(2004)",-13.286961555480955],["▁participanți",-13.287012100219728],["1998)",-13.287014961242676],["▁deletion",-13.287186622619627],["▁Proiect",-13.287226676940918],["IDENT",-13.287504196166992],["▁precis",-13.287623405456545],["▁limp",-13.287676811218262],["▁Pompe",-13.287686347961426],["▁ménage",-13.28780746459961],["▁Wahrheit",-13.288119316101074],["▁Intelligent",-13.28812026977539],["▁instability",-13.2881441116333],["insurance",-13.28834629058838],["▁Nursery",-13.288352966308594],["▁synonym",-13.288427352905272],["▁ignite",-13.28848934173584],["▁Vernon",-13.28849983215332],["purchase",-13.288524627685549],["▁disponibilité",-13.288662910461426],["▁producţi",-13.28909969329834],["▁Pentagon",-13.289329528808594],["▁illumination",-13.289329528808594],["▁obsolete",-13.289329528808594],["▁unacceptable",-13.28933048248291],["Gleichzeitig",-13.289938926696776],["rutsch",-13.290071487426758],["viziuni",-13.290409088134766],["▁Nicaragua",-13.29054069519043],["▁hesitation",-13.290541648864746],["▁nascut",-13.290545463562012],["▁Warehouse",-13.29055404663086],["geboten",-13.29055881500244],["▁Lagos",-13.290844917297363],["produced",-13.290874481201172],["cativa",-13.291309356689451],["▁Tracy",-13.291326522827148],["Projekt",-13.291468620300291],["▁malaria",-13.291692733764648],["▁Baldwin",-13.291755676269531],["Take",-13.291791915893556],["▁fluctuations",-13.291844367980955],["▁titular",-13.29194450378418],["bmw",-13.291976928710938],["▁brevet",-13.29202651977539],["étapes",-13.292173385620115],["wikipedia",-13.292373657226562],["▁corporal",-13.292424201965332],["▁Schönheit",-13.2926664352417],["utilizatorii",-13.292695999145508],["INFO",-13.292807579040527],["▁formularul",-13.29290008544922],["femi",-13.292959213256836],["Konferenz",-13.29296875],["▁carnival",-13.29296875],["▁Kräuter",-13.292969703674316],["▁gelernt",-13.292981147766112],["▁Sherman",-13.293017387390137],["▁persistence",-13.293289184570312],["▁Behörden",-13.293577194213867],["▁Frühjahr",-13.293578147888184],["▁Guvern",-13.293649673461914],["interpreting",-13.293878555297852],["▁nommé",-13.294021606445312],["consult",-13.29403591156006],["▁obligaţi",-13.294184684753418],["▁Newspaper",-13.2942476272583],["(2005)",-13.294515609741213],["pumped",-13.294614791870115],["▁autoritati",-13.294634819030762],["▁aplicatii",-13.294644355773926],["▁verhindert",-13.294794082641602],["▁évident",-13.294794082641602],["▁getrennt",-13.294795036315918],["▁Encourage",-13.295403480529783],["▁lurk",-13.295432090759276],["▁condemned",-13.295455932617188],["▁4:30",-13.295502662658691],["labelled",-13.29576587677002],["ordinea",-13.295899391174316],["▁pantofi",-13.296012878417969],["Default",-13.296042442321776],["▁beruh",-13.296120643615724],["/01/",-13.296268463134766],["league",-13.296503067016602],["▁couvert",-13.296524047851562],["▁competencies",-13.296622276306152],["▁mozzarella",-13.296622276306152],["jihad",-13.29662799835205],["▁gossip",-13.29662799835205],["▁Omaha",-13.296628952026367],["▁coincidence",-13.296669960021973],["▁Pinot",-13.296710968017578],["dotted",-13.296789169311523],["schilder",-13.297197341918944],["▁Munte",-13.29722499847412],["▁Vermieter",-13.297232627868652],["▁britannique",-13.297232627868652],["▁comentariu",-13.297235488891602],["abonnement",-13.29725456237793],["▁inventive",-13.29727840423584],["complie",-13.297279357910156],["composée",-13.29734992980957],["▁glatt",-13.297684669494627],["adorned",-13.297842979431152],["▁Opportunities",-13.297842979431152],["▁equilibrium",-13.297842979431152],["▁persuasive",-13.297842979431152],["▁achiziţi",-13.297843933105469],["▁déterminer",-13.297843933105469],["▁fleece",-13.297857284545898],["▁ivory",-13.29786205291748],["▁Genuss",-13.297900199890137],["Thousands",-13.297930717468262],["▁izolat",-13.297965049743652],["▁symbolize",-13.298033714294434],["gâteau",-13.298051834106444],["▁relații",-13.298062324523926],["▁Classroom",-13.298144340515137],["settlers",-13.298155784606934],["▁vremuri",-13.298195838928224],["▁Serial",-13.29838752746582],["▁boite",-13.298399925231934],["équivalent",-13.298453330993652],["▁benutzen",-13.298454284667969],["▁Recomand",-13.298462867736816],["▁Sinai",-13.298968315124512],["▁Advertise",-13.29906940460205],["▁Thermal",-13.299206733703612],["fiance",-13.299471855163574],["▁universitaire",-13.299683570861816],["▁rivière",-13.299793243408203],["▁reimburse",-13.299907684326172],["ţara",-13.299932479858398],["tician",-13.30002498626709],["intelligence",-13.300041198730469],["▁abgestimmt",-13.300288200378418],["▁compliqué",-13.300288200378418],["▁succulent",-13.300297737121582],["opéra",-13.300395011901855],["7-9",-13.300456047058104],["▁pierderi",-13.300654411315918],["extinction",-13.30090045928955],["▁Zweifel",-13.30103874206543],["ATCH",-13.30112361907959],["10,000",-13.301222801208496],["▁uninterrupted",-13.301513671875],["▁Eigentum",-13.301517486572266],["▁Utility",-13.301517486572266],["ско",-13.30152988433838],["▁tornado",-13.301544189453123],["▁Güte",-13.301727294921877],["▁pertain",-13.301923751831056],["painters",-13.301993370056152],["Help",-13.3021240234375],["▁străinătate",-13.30212688446045],["▁stammen",-13.302170753479004],["opposition",-13.30222988128662],["▁rhino",-13.302233695983888],["intervenir",-13.302427291870115],["▁hyperlink",-13.302441596984863],["höchst",-13.302518844604492],["roach",-13.302627563476562],["wSt",-13.302687644958496],["▁monastery",-13.302740097045898],["▁algae",-13.302754402160645],["▁shaving",-13.302757263183594],["présentent",-13.302804946899414],["Africa",-13.302860260009766],["eigener",-13.30304718017578],["▁glace",-13.30315399169922],["▁discurs",-13.303179740905762],["▁autograph",-13.303204536437988],["▁Conflict",-13.303359031677246],["▁școli",-13.303411483764648],["▁excerpt",-13.303617477416992],["correlated",-13.303628921508787],["empel",-13.303841590881348],["cryptocurrencies",-13.30396842956543],["▁symposium",-13.30396842956543],["▁gewohnt",-13.303994178771973],["PTSD",-13.304070472717283],["▁harmonic",-13.304166793823242],["discarded",-13.304282188415527],["▁Flint",-13.304359436035156],["Russia",-13.30442237854004],["▁ședinț",-13.304583549499512],["▁accusations",-13.304727554321287],["▁încălc",-13.304827690124512],["sendung",-13.305152893066406],["▁Chiropractic",-13.305197715759276],["▁excepți",-13.305201530456545],["▁proclaim",-13.305201530456545],["▁Flexible",-13.305295944213867],["▁Hüt",-13.30538272857666],["▁Baltic",-13.30539608001709],["▁inaltime",-13.30553913116455],["▁montré",-13.305868148803713],["exécution",-13.305898666381836],["partei",-13.30596160888672],["▁specifie",-13.306072235107422],["▁Jackpot",-13.306105613708496],["▁stumble",-13.306134223937988],["▁individuel",-13.306161880493164],["▁Veteran",-13.306217193603516],["▁Supplies",-13.306428909301758],["▁excavation",-13.306428909301758],["▁Libraries",-13.306469917297363],["▁prénom",-13.306476593017578],["WOOD",-13.30650806427002],["meciul",-13.306917190551758],["Chef",-13.30693817138672],["▁SUPER",-13.306940078735352],["Appeals",-13.30696964263916],["terapia",-13.307113647460938],["▁relatii",-13.30713939666748],["modifying",-13.30748462677002],["▁Regulament",-13.307662010192873],["▁bănci",-13.307662963867188],["▁agility",-13.307666778564451],["▁Magnetic",-13.307674407958984],["▁piatra",-13.30767822265625],["▁Governance",-13.307680130004885],["▁clown",-13.30772876739502],["▁Choir",-13.308337211608888],["aujourd",-13.308548927307127],["▁vendeur",-13.30873203277588],["ndererseits",-13.308859825134276],["▁Bahrain",-13.3088960647583],["▁Timisoara",-13.3088960647583],["▁exklusive",-13.3088960647583],["▁Population",-13.309001922607422],["▁nepo",-13.309073448181152],["▁relish",-13.309085845947266],["▁Pumpkin",-13.309571266174316],["▁détente",-13.309784889221191],["▁episcop",-13.309860229492188],["patterned",-13.309929847717283],["▁THANK",-13.310132026672363],["▁Widerspruch",-13.310132026672363],["▁Crisis",-13.310189247131348],["▁goose",-13.310226440429688],["▁couture",-13.310307502746582],["▁hinweg",-13.310446739196776],["supplemental",-13.310486793518066],["shingles",-13.31060791015625],["investir",-13.310635566711426],["▁steriliz",-13.31075954437256],["tractors",-13.310761451721191],["cellules",-13.31078815460205],["▁Gloria",-13.310888290405272],["▁teilnehmen",-13.311092376708984],["companiile",-13.311248779296877],["surfacing",-13.311279296875],["▁nostalgic",-13.311368942260742],["▁Badezimmer",-13.31136989593506],["▁conjoint",-13.311370849609377],["vacancy",-13.31145191192627],["▁homeland",-13.311582565307615],["▁Abschnitt",-13.311625480651855],["Cartea",-13.311653137207031],["SIA",-13.311782836914062],["▁explode",-13.311786651611328],["fostering",-13.311959266662598],["▁ceilalti",-13.31198787689209],["▁gentil",-13.31214714050293],["oplasty",-13.31218433380127],["bodied",-13.312424659729004],["▁1906",-13.312499046325684],["▁BlackBerry",-13.312607765197754],["▁Presbyterian",-13.312607765197754],["▁berücksichtigt",-13.312607765197754],["▁compartiment",-13.312607765197754],["▁compulsory",-13.312607765197754],["Millennial",-13.312609672546388],["▁sanitar",-13.31263828277588],["▁stink",-13.312975883483888],["lius",-13.313047409057615],["thankfully",-13.313136100769045],["modalité",-13.313173294067385],["▁cunoaște",-13.313226699829102],["Infrastruktur",-13.313227653503418],["▁studenți",-13.31325340270996],["Bref",-13.313270568847656],["London",-13.31360149383545],["▁Arduino",-13.313847541809082],["▁cilantro",-13.313847541809082],["▁Rafael",-13.313848495483398],["▁untersucht",-13.313861846923828],["▁martyr",-13.31389331817627],["▁Mormon",-13.313984870910645],["▁wicket",-13.31399631500244],["cherished",-13.314335823059082],["liquid",-13.314417839050291],["▁dorinț",-13.314571380615234],["lehnt",-13.314717292785645],["meisterschaft",-13.31493091583252],["fondateur",-13.314971923828123],["câble",-13.315078735351562],["▁erreichbar",-13.315091133117676],["▁footsteps",-13.31509494781494],["▁Kloster",-13.31519889831543],["▁multiplayer",-13.315218925476074],["▁substitu",-13.31527614593506],["▁Frisch",-13.315526962280272],["▁arsenal",-13.315712928771973],["explication",-13.315866470336914],["▁conexiun",-13.31598663330078],["muddy",-13.316045761108398],["▁Reifen",-13.316120147705078],["auraient",-13.316132545471191],["▁biologic",-13.316136360168455],["▁acquainted",-13.316332817077637],["▁shelving",-13.316341400146484],["Stunning",-13.316373825073242],["▁Clothing",-13.316394805908203],["▁kidding",-13.316431999206545],["excellent",-13.316452026367188],["▁susțin",-13.316487312316896],["bătut",-13.316502571105955],["elusive",-13.3165283203125],["werbung",-13.316743850708008],["slipping",-13.316813468933104],["▁configura",-13.316926956176758],["▁proaspat",-13.31695556640625],["▁apporté",-13.317120552062988],["▁démarr",-13.317328453063965],["Spezialist",-13.317578315734863],["▁obligați",-13.317578315734863],["▁societăți",-13.317578315734863],["▁malpractice",-13.31757926940918],["Hundreds",-13.317609786987305],["▁3:1",-13.318138122558594],["▁computation",-13.31817626953125],["▁Heilig",-13.318528175354004],["▁Helsinki",-13.318824768066406],["▁firefighters",-13.318824768066406],["▁obedience",-13.318824768066406],["▁evacuate",-13.318825721740724],["▁Floyd",-13.318840026855469],["▁Disneyland",-13.318859100341797],["Cathy",-13.319069862365724],["▁Broken",-13.319278717041016],["cript",-13.319952011108398],["▁Gewähr",-13.320073127746582],["▁embarrassed",-13.320073127746582],["▁Leicht",-13.32007884979248],["▁témoign",-13.320379257202148],["▁viteze",-13.3206148147583],["▁hallmark",-13.320731163024902],["uploads",-13.32082462310791],["▁Submission",-13.320929527282717],["▁croissant",-13.321049690246582],["awning",-13.32105827331543],["detecting",-13.32119846343994],["▁Bahamas",-13.321322441101074],["▁Kathleen",-13.321325302124023],["▁latch",-13.321377754211426],["▁pronounce",-13.321380615234377],["▁choke",-13.321428298950195],["▁$50,000",-13.3215970993042],["▁historische",-13.321642875671388],["jugé",-13.321829795837402],["▁MasterCard",-13.321949005126951],["▁Horror",-13.321955680847168],["spoiled",-13.321958541870115],["▁apariți",-13.32202434539795],["geschaltet",-13.3225736618042],["▁Londra",-13.32257843017578],["viction",-13.322580337524414],["▁Disaster",-13.322593688964844],["▁desigur",-13.322601318359377],["▁substanț",-13.322601318359377],["▁compiler",-13.322613716125488],["▁vanzari",-13.32262897491455],["▁Simulation",-13.322669982910156],["Occasionally",-13.322842597961426],["Seite",-13.322884559631348],["Linked",-13.322938919067385],["Roll",-13.323015213012695],["▁trajet",-13.323244094848633],["Molecular",-13.323834419250488],["▁pragmatic",-13.323843002319336],["judecată",-13.323915481567385],["ров",-13.32400894165039],["serrurerie",-13.324024200439451],["▁reconstruct",-13.324129104614258],["▁heureuse",-13.324179649353027],["▁knight",-13.32422924041748],["knowingly",-13.32443141937256],["▁perspectiva",-13.324453353881836],["ordinary",-13.324604034423828],["▁chaudière",-13.324721336364746],["Neill",-13.324727058410645],["cellulose",-13.325080871582031],["▁Delicious",-13.325080871582031],["▁incearca",-13.325080871582031],["▁retrospective",-13.325080871582031],["▁mundane",-13.325081825256348],["▁definiert",-13.32508659362793],["▁cockpit",-13.325088500976562],["Aktionen",-13.325363159179688],["▁distanț",-13.325654029846191],["▁diplôme",-13.325708389282228],["prepaid",-13.325737953186035],["▁Tabellen",-13.325758934020996],["▁economie",-13.325770378112791],["December",-13.32582664489746],["Punkten",-13.32613754272461],["▁Punch",-13.32614517211914],["Martin",-13.326154708862305],["▁Espresso",-13.32631492614746],["▁ubiquitous",-13.326335906982422],["▁Mongolia",-13.326337814331056],["▁collabor",-13.326635360717772],["▁Vordergrund",-13.32696533203125],["cameră",-13.327091217041016],["represented",-13.327268600463867],["▁AUTO",-13.327446937561035],["▁Ofert",-13.327542304992676],["neig",-13.327593803405762],["▁Hazard",-13.327595710754396],["▁Constanta",-13.327596664428713],["▁tumour",-13.32759952545166],["▁Neighborhood",-13.327603340148926],["▁detaliat",-13.327619552612305],["▁extraordinaire",-13.327665328979492],["▁Therapeutic",-13.327686309814451],["predicting",-13.327693939208984],["▁institutii",-13.32776165008545],["ifizierung",-13.327797889709473],["wählt",-13.328207015991213],["▁remarquable",-13.32822322845459],["Invent",-13.32851219177246],["▁foloseșt",-13.328514099121094],["öfte",-13.32870388031006],["▁discreet",-13.328853607177734],["▁Flickr",-13.32885456085205],["▁trésor",-13.328856468200684],["▁steroids",-13.328872680664062],["▁personnalité",-13.328953742980955],["▁Krankenhaus",-13.32901668548584],["▁affordability",-13.329218864440918],["deuten",-13.329398155212402],["Detailed",-13.329412460327148],["Walk",-13.329444885253906],["▁parallèle",-13.329483032226562],["thèse",-13.329649925231934],["▁gefördert",-13.330117225646973],["Greeting",-13.33014965057373],["gelistet",-13.330172538757324],["▁chlorine",-13.330392837524414],["behält",-13.33039665222168],["emption",-13.330435752868652],["▁mobilité",-13.330601692199709],["▁randonnée",-13.330668449401855],["habitant",-13.330718040466309],["zilla",-13.331082344055176],["▁Lili",-13.33116054534912],["▁répét",-13.331341743469238],["trucât",-13.331376075744627],["▁Hospice",-13.331376075744627],["▁grassroots",-13.331377029418944],["▁affiché",-13.331393241882324],["pears",-13.331470489501951],["▁linistit",-13.331497192382812],["▁Patron",-13.331552505493164],["▁Stalin",-13.331626892089844],["▁închiri",-13.331751823425291],["▁Apostol",-13.332018852233888],["▁poudre",-13.332246780395508],["▁piscin",-13.332419395446776],["merlin",-13.33259391784668],["limited",-13.33260726928711],["▁métallique",-13.332639694213867],["gazebo",-13.33267879486084],["weilige",-13.332718849182127],["prosecutors",-13.33278751373291],["Expert",-13.33314323425293],["Assemblée",-13.333271980285645],["▁fauna",-13.333285331726074],["▁Turtle",-13.333353996276855],["▁Consortium",-13.333905220031738],["▁assemblies",-13.333905220031738],["▁trajectory",-13.333905220031738],["▁Vineyard",-13.333906173706056],["▁Mehrwert",-13.33403778076172],["▁sunflower",-13.334043502807615],["develop",-13.334060668945312],["▁heroic",-13.334100723266602],["▁riscuri",-13.334151268005373],["oeuf",-13.334300994873049],["influence",-13.334452629089355],["▁Voraussetzung",-13.334500312805176],["utoritatea",-13.334518432617188],["Produsul",-13.334654808044434],["▁gewährleistet",-13.335171699523926],["▁brûl",-13.335175514221191],["▁Column",-13.33518409729004],["▁trousers",-13.335209846496582],["▁posterior",-13.33521556854248],["glyph",-13.335251808166504],["▁Happen",-13.335280418395996],["▁créateur",-13.335667610168455],["▁apostle",-13.335898399353027],["▁padding",-13.335907936096191],["▁Digitalisierung",-13.335908889770508],["▁Laurie",-13.335915565490724],["▁Erwerb",-13.336065292358398],["▁bătrân",-13.336440086364746],["▁harmonious",-13.336441040039062],["▁ailments",-13.336456298828123],["▁Venue",-13.33650016784668],["▁Motorcycle",-13.336523056030272],["▁cortex",-13.336551666259766],["▁Sunrise",-13.336636543273926],["Software",-13.33677577972412],["▁advocat",-13.336934089660645],["essentiellement",-13.337422370910645],["•",-13.337494850158691],["părut",-13.337522506713867],["▁Suffolk",-13.337711334228516],["▁righteousness",-13.337711334228516],["▁Shirley",-13.337712287902832],["▁Famous",-13.337749481201172],["▁emulate",-13.337788581848145],["vermögen",-13.33788776397705],["generated",-13.337963104248049],["Ecole",-13.337977409362791],["▁managerial",-13.338086128234863],["believe",-13.338091850280762],["▁récupére",-13.338348388671877],["▁recens",-13.338531494140623],["▁Barrett",-13.338778495788574],["▁courageous",-13.338814735412598],["9.95",-13.338961601257324],["▁Odyssey",-13.338982582092283],["▁Violence",-13.338982582092283],["▁concasseur",-13.338982582092283],["▁evacuation",-13.338982582092283],["▁kontinuierlich",-13.338982582092283],["▁epidemi",-13.3389892578125],["▁disconnected",-13.339197158813477],["frucht",-13.33933925628662],["Trustees",-13.339348793029783],["▁Massiv",-13.339459419250488],["gebucht",-13.339473724365234],["stütze",-13.339526176452637],["▁febr",-13.339741706848145],["honoured",-13.339743614196776],["▁digitiz",-13.340079307556152],["Image",-13.34021282196045],["▁Brunswick",-13.34025764465332],["▁Therapist",-13.34026050567627],["accessoire",-13.340264320373535],["▁croqu",-13.340291023254396],["Pflanz",-13.34052848815918],["dragging",-13.340536117553713],["▁Facilit",-13.340750694274902],["soucis",-13.340765953063965],["Asadar",-13.34081745147705],["▁Thames",-13.341021537780762],["▁cariera",-13.341116905212402],["▁mercury",-13.341530799865724],["▁Blessed",-13.341533660888672],["▁Whitney",-13.341630935668944],["▁géant",-13.341926574707031],["▁coordonnée",-13.342217445373535],["oidal",-13.342623710632324],["Wohnungen",-13.342696189880373],["▁Spectrum",-13.34280776977539],["▁Avengers",-13.342808723449709],["▁Gloucester",-13.342808723449709],["▁nützlich",-13.342811584472656],["▁toothbrush",-13.342830657958984],["▁Vanessa",-13.342843055725098],["Saxon",-13.342947959899902],["▁comunități",-13.343165397644045],["reprezentanţi",-13.343175888061523],["▁întâlnire",-13.343225479125977],["delve",-13.343234062194824],["▁technologique",-13.34345245361328],["Describe",-13.343466758728027],["▁constient",-13.343501091003418],["gestalt",-13.343600273132324],["▁Tribune",-13.344090461730955],["▁fiberglass",-13.34412956237793],["verbindung",-13.344210624694824],["sacrificing",-13.344351768493652],["▁Pablo",-13.344470024108888],["▁adanc",-13.34525203704834],["omia",-13.345309257507324],["hâte",-13.345317840576172],["▁Sanctuary",-13.345366477966309],["▁accolade",-13.34536838531494],["▁Wurzel",-13.345398902893066],["▁spacing",-13.345433235168455],["▁bedeutend",-13.345481872558594],["▁biased",-13.345499992370604],["randomized",-13.345747947692873],["▁agenți",-13.34585666656494],["▁excepţi",-13.346012115478516],["▁fișier",-13.346028327941896],["▁fisier",-13.34664535522461],["irrespective",-13.34664821624756],["▁Gardner",-13.34665584564209],["▁aprecia",-13.346884727478027],["▁Klu",-13.347082138061523],["▁apropie",-13.347535133361816],["▁echival",-13.347784042358398],["tauchen",-13.347862243652344],["▁hauptsächlich",-13.347930908203123],["▁pollutants",-13.347930908203123],["▁mammals",-13.34793186187744],["▁Landwirtschaft",-13.347936630249023],["▁stăpân",-13.34793758392334],["▁Prüf",-13.34799098968506],["▁Motorsport",-13.34807300567627],["Leaving",-13.348352432250977],["schädigung",-13.348573684692385],["▁calendrier",-13.348573684692385],["plikation",-13.348655700683594],["▁DOE",-13.348655700683594],["ред",-13.348966598510742],["Jahr",-13.34913444519043],["▁entitlement",-13.34921646118164],["schuldig",-13.349217414855955],["▁Münster",-13.349218368530272],["pository",-13.349451065063477],["▁numero",-13.350220680236816],["▁entsprechen",-13.350383758544922],["▁astronaut",-13.350502967834473],["▁hexagon",-13.350502967834473],["▁DAMAGE",-13.350503921508787],["▁Quartz",-13.350504875183104],["▁rédaction",-13.350504875183104],["▁replenish",-13.350508689880373],["▁amoureux",-13.350523948669434],["▁opțiun",-13.350616455078123],["Custom",-13.350622177124023],["▁Telekom",-13.35063934326172],["▁RFID",-13.351163864135742],["▁Scorpio",-13.35126495361328],["▁thirst",-13.35152816772461],["▁Kosovo",-13.351791381835938],["▁precursor",-13.351794242858888],["▁sarbatori",-13.351810455322266],["▁Daisy",-13.351828575134276],["▁Dropbox",-13.351898193359377],["Smith",-13.35194969177246],["contabil",-13.352191925048828],["▁monnaie",-13.35243797302246],["capsul",-13.352577209472656],["treff",-13.352760314941406],["beauftragte",-13.352761268615724],["industrial",-13.35300636291504],["responsables",-13.353010177612305],["▁FIRST",-13.35308074951172],["▁crezut",-13.35308837890625],["▁reseller",-13.353107452392578],["▁direcți",-13.353154182434082],["mouvoir",-13.353294372558594],["▁Invite",-13.353431701660156],["▁constructii",-13.353440284729004],["▁oublié",-13.353577613830566],["găseșt",-13.353687286376951],["▁végét",-13.353755950927734],["idine",-13.35385799407959],["▁Ajout",-13.353951454162598],["▁Shelf",-13.354195594787598],["HALL",-13.35422420501709],["▁nostalgia",-13.35437297821045],["▁ottoman",-13.35437297821045],["▁ambalaj",-13.354398727416992],["municipiul",-13.354405403137209],["NOVA",-13.354500770568848],["▁disregard",-13.354997634887695],["▁bijuterii",-13.355018615722656],["▁sorgfältig",-13.355018615722656],["vraient",-13.355307579040527],["▁backsplash",-13.355669975280762],["▁nuisance",-13.355679512023926],["▁Territory",-13.35568618774414],["▁surprins",-13.355693817138672],["enchanting",-13.35571002960205],["trospecti",-13.355847358703612],["▁dvd",-13.356199264526367],["Totally",-13.356329917907717],["▁Edelstahl",-13.35696029663086],["▁sequencing",-13.356961250305176],["▁Circus",-13.35696792602539],["▁ashamed",-13.35696792602539],["▁horrific",-13.357028007507324],["▁taiat",-13.357033729553224],["▁Angehörige",-13.357125282287598],["Michel",-13.357256889343262],["▁communion",-13.357298851013184],["▁psiho",-13.357378959655762],["losigkeit",-13.35740566253662],["dipping",-13.35751247406006],["▁profesională",-13.357608795166016],["Indiferent",-13.357609748840332],["▁crestin",-13.357723236083984],["wholesome",-13.357796669006348],["▁Welfare",-13.358257293701172],["▁plentiful",-13.358257293701172],["▁Triumph",-13.358258247375488],["▁fascination",-13.35826015472412],["▁vicious",-13.358291625976562],["▁Höchst",-13.358294486999512],["▁Dunkel",-13.358386039733888],["▁harass",-13.358406066894531],["ambogia",-13.358475685119627],["▁synonymous",-13.358598709106444],["bottom",-13.35879898071289],["▁bénévole",-13.358906745910645],["▁suprafaț",-13.358906745910645],["▁umplut",-13.358997344970703],["▁Teddy",-13.35916233062744],["breathable",-13.359292984008787],["▁Toshiba",-13.3595552444458],["▁seismic",-13.359569549560549],["▁dringend",-13.359583854675291],["▁cultură",-13.359585762023926],["▁Waffen",-13.359665870666504],["▁Bubble",-13.359702110290527],["▁Brigade",-13.359759330749512],["▁Blatt",-13.36012077331543],["▁scénario",-13.36020565032959],["allah",-13.360396385192873],["▁superintendent",-13.360855102539062],["pflanzen",-13.36085605621338],["▁kurzfristig",-13.36085605621338],["▁raspberry",-13.360876083374023],["▁Evident",-13.360904693603516],["▁inutile",-13.361076354980469],["prouvé",-13.361104011535645],["▁obtien",-13.36141300201416],["▁Matthias",-13.361506462097168],["▁déclench",-13.361506462097168],["Situationen",-13.361529350280762],["▁Disclaimer",-13.362156867980955],["▁loneliness",-13.362156867980955],["▁Gothic",-13.362164497375488],["▁humility",-13.362165451049805],["▁machiaj",-13.362175941467283],["▁Sophia",-13.362178802490234],["▁Forecast",-13.362265586853027],["IBLE",-13.362456321716309],["ivism",-13.36248016357422],["israel",-13.36278247833252],["▁kümmern",-13.36280918121338],["▁verbreitet",-13.362825393676758],["▁capacitor",-13.362832069396973],["deprived",-13.3634614944458],["unbiased",-13.3634614944458],["▁Dominique",-13.3634614944458],["▁Bamboo",-13.363462448120115],["▁Heinrich",-13.363465309143066],["individualized",-13.363550186157228],["▁ansprechen",-13.363776206970217],["ordinaire",-13.36380100250244],["▁Ucraina",-13.364112854003906],["▁militare",-13.364115715026855],["massif",-13.364352226257324],["▁emisiuni",-13.364501953125],["maladies",-13.364622116088867],["▁pneumonia",-13.364765167236328],["▁graffiti",-13.36476707458496],["▁Determine",-13.3648099899292],["▁Northwestern",-13.364893913269045],["▁grasimi",-13.364897727966309],["▁lebendig",-13.364920616149902],["▁cifre",-13.364946365356444],["▁accelerator",-13.36533260345459],["▁nib",-13.365374565124512],["▁Jocuri",-13.365400314331056],["▁außergewöhnlich",-13.365402221679688],["▁orchid",-13.36542797088623],["zugreifen",-13.365530967712402],["utilisent",-13.365662574768066],["▁nineteenth",-13.366071701049805],["improvisation",-13.36607265472412],["▁Disclosure",-13.36607265472412],["▁Überraschung",-13.36607265472412],["▁Casual",-13.366093635559082],["▁Witness",-13.366093635559082],["teacher",-13.366125106811523],["Printed",-13.366129875183104],["▁prețuri",-13.36618995666504],["rues",-13.366216659545898],["▁cerinte",-13.366338729858398],["rouvent",-13.36662483215332],["assembling",-13.36673355102539],["▁atenție",-13.366769790649414],["▁amintiri",-13.366782188415527],["▁sustinut",-13.36680507659912],["Digital",-13.367257118225098],["▁Deborah",-13.36738109588623],["gesichts",-13.367382049560549],["▁temperament",-13.367440223693848],["▁competency",-13.36744785308838],["▁dwarf",-13.367515563964844],["▁dureaz",-13.367539405822754],["habilit",-13.367764472961426],["leaned",-13.3679838180542],["▁illicit",-13.368348121643066],["Availability",-13.368691444396973],["▁Brașov",-13.368691444396973],["▁Pyramid",-13.368691444396973],["▁achievable",-13.368691444396973],["▁judiciaire",-13.368691444396973],["Übrigen",-13.368693351745604],["▁activism",-13.36879539489746],["▁boycott",-13.368839263916016],["Desigur",-13.368927001953123],["klingt",-13.369264602661133],["▁Leidenschaft",-13.369346618652344],["▁Richtig",-13.369701385498049],["▁Airbnb",-13.370002746582031],["▁învățământ",-13.370002746582031],["Kampagne",-13.370004653930664],["▁thumbnail",-13.370014190673828],["Bestimmungen",-13.37001609802246],["▁vollkommen",-13.37001895904541],["▁biomass",-13.370027542114258],["▁escalate",-13.370030403137209],["wächst",-13.37008571624756],["▁scăpa",-13.370098114013672],["▁résult",-13.37014389038086],["▁shrine",-13.370217323303224],["maximizing",-13.370370864868164],["avoue",-13.370492935180664],["dirigeants",-13.370665550231934],["▁cerveau",-13.370672225952148],["▁proast",-13.37095546722412],["▁contaminants",-13.371325492858888],["effectue",-13.37151050567627],["ediție",-13.371539115905762],["monetiz",-13.37177276611328],["▁deplasare",-13.371976852416992],["▁Sfant",-13.37209415435791],["ROOM",-13.372113227844238],["bushes",-13.372151374816896],["mairie",-13.37251091003418],["obligate",-13.372528076171877],["▁tug",-13.372573852539062],["▁Collector",-13.372632026672363],["▁annoyed",-13.372633934020996],["▁aerobic",-13.372654914855955],["▁integer",-13.372830390930176],["▁Upload",-13.373249053955078],["▁impartial",-13.37346076965332],["▁discuţi",-13.373623847961426],["gastrointestinal",-13.37394905090332],["▁chiropractor",-13.37394905090332],["▁treptat",-13.373950004577637],["▁fishermen",-13.37395191192627],["levitra",-13.3739595413208],["Gruppe",-13.373964309692385],["▁Apostle",-13.373970985412598],["▁conseillé",-13.374068260192873],["Isra",-13.37421703338623],["▁Persönlichkeit",-13.374431610107422],["▁cantitati",-13.374459266662598],["▁incredibil",-13.374614715576172],["▁Berater",-13.374800682067873],["▁propuneri",-13.374835014343262],["MEDIA",-13.375236511230469],["▁opaque",-13.37526798248291],["▁Nielsen",-13.375269889831545],["▁cartofi",-13.375277519226074],["▁Whale",-13.37533950805664],["erzeugen",-13.375890731811523],["▁knack",-13.375931739807127],["Kandidat",-13.375936508178713],["▁tradițional",-13.375937461853027],["zählige",-13.375983238220217],["▁Petroleum",-13.376588821411133],["▁deficiencies",-13.376588821411133],["▁persecution",-13.376588821411133],["▁zgomot",-13.376588821411133],["▁reiterate",-13.376592636108398],["▁Slice",-13.376670837402344],["▁envy",-13.376704216003418],["▁stomac",-13.376851081848145],["Donnell",-13.376914978027344],["▁primordial",-13.377249717712402],["reclining",-13.377274513244627],["PASS",-13.377861976623535],["▁Resistance",-13.377910614013672],["▁Widerruf",-13.377911567687988],["▁vodka",-13.377911567687988],["▁yolk",-13.377912521362305],["ollywood",-13.377915382385254],["▁truffle",-13.377933502197266],["▁Sänger",-13.377955436706545],["▁Kenntnis",-13.377968788146973],["▁Kiel",-13.37803840637207],["▁Mutual",-13.378044128417969],["▁saliva",-13.37816047668457],["▁renforce",-13.378411293029783],["▁mulch",-13.378680229187012],["▁reviste",-13.378875732421877],["lucrarea",-13.378978729248049],["▁multiply",-13.379130363464355],["▁marshmallow",-13.379234313964844],["▁Durchschnitt",-13.37928867340088],["▁Authorities",-13.37942600250244],["▁greed",-13.379521369934082],["Visiting",-13.379638671875],["Carlton",-13.379727363586426],["▁splend",-13.37975025177002],["▁Erkenntnisse",-13.379898071289062],["▁Russie",-13.379916191101074],["Agence",-13.38007926940918],["schickt",-13.380288124084473],["##",-13.3804931640625],["▁Erweiterung",-13.380560874938965],["▁Franchise",-13.380560874938965],["Dedicated",-13.380563735961914],["▁Wisdom",-13.380569458007812],["▁gagnant",-13.380592346191406],["planetary",-13.380598068237305],["▁affinity",-13.380619049072266],["▁préférence",-13.380739212036133],["▁intellect",-13.380810737609863],["▁Translat",-13.380830764770508],["▁Sultan",-13.38089370727539],["▁birouri",-13.38101577758789],["▁Academie",-13.381224632263184],["▁consequential",-13.38138484954834],["▁festgestellt",-13.381402015686035],["▁Chanel",-13.381444931030272],["▁soutenu",-13.381875038146973],["▁Montessori",-13.381888389587402],["▁equitable",-13.381892204284668],["▁théorie",-13.381893157958984],["▁primavara",-13.3818941116333],["▁Daughter",-13.38189697265625],["▁Dixon",-13.381898880004885],["▁unravel",-13.38190746307373],["Olimp",-13.381915092468262],["▁disturbed",-13.381916999816896],["▁novelty",-13.382004737854004],["synchronous",-13.382113456726074],["relevant",-13.382166862487791],["bourgeois",-13.38251781463623],["▁Parfum",-13.38255500793457],["▁Polonia",-13.382563591003418],["▁monoton",-13.38278102874756],["tratare",-13.38302230834961],["dumping",-13.38318157196045],["▁Bibliothek",-13.383217811584473],["▁Saskatchewan",-13.383217811584473],["▁experiential",-13.383217811584473],["▁verursacht",-13.383217811584473],["intègre",-13.383218765258787],["▁Intermediate",-13.383275032043455],["Israel",-13.38347625732422],["lucreaza",-13.383495330810549],["▁quantify",-13.383862495422363],["▁zahăr",-13.383882522583008],["▁încadr",-13.383902549743652],["Personalized",-13.383946418762209],["▁Chronic",-13.384309768676758],["hôpital",-13.384549140930176],["▁diskutiert",-13.384549140930176],["electrique",-13.3848876953125],["ethos",-13.38497829437256],["Nase",-13.385059356689451],["atmosphère",-13.385214805603027],["▁ungefähr",-13.385215759277344],["évaluer",-13.385251998901367],["▁scuz",-13.385321617126465],["haltige",-13.38533878326416],["January",-13.38557243347168],["▁Sharma",-13.38560390472412],["▁seizures",-13.385881423950195],["▁zucchini",-13.385881423950195],["▁Stadi",-13.38588523864746],["▁eccentric",-13.38588523864746],["▁offensichtlich",-13.385909080505373],["▁Irvine",-13.385920524597168],["cuprinse",-13.38601303100586],["▁Arbitr",-13.386157035827637],["Buenos",-13.386183738708496],["▁Shelter",-13.386210441589355],["CEPT",-13.386454582214355],["ouvri",-13.386455535888672],["acryl",-13.386539459228516],["▁Gourmet",-13.38654899597168],["scented",-13.386595726013184],["doubling",-13.38659954071045],["▁rafina",-13.386608123779297],["▁Vereinbarung",-13.38721752166748],["▁Dashboard",-13.387218475341797],["▁Sandwich",-13.387218475341797],["▁Riviera",-13.387226104736328],["échec",-13.387237548828123],["Giro",-13.387253761291504],["▁oasis",-13.38725757598877],["▁apology",-13.3872709274292],["▁YEAR",-13.387272834777832],["▁realtor",-13.38750457763672],["acheteur",-13.38754653930664],["▁larva",-13.387613296508787],["▁invitați",-13.388097763061523],["exhibiting",-13.38830852508545],["modernen",-13.388331413269045],["▁Collaboration",-13.38855266571045],["▁dezvălui",-13.38855266571045],["▁kiosk",-13.38855266571045],["▁Bermuda",-13.388553619384766],["Copiii",-13.388564109802246],["▁goddess",-13.38858127593994],["uplifting",-13.388609886169434],["▁simultan",-13.388808250427246],["▁episod",-13.38888454437256],["▁Braşov",-13.38922119140625],["cunoscută",-13.389634132385254],["▁Cherokee",-13.389890670776367],["▁Kazakhstan",-13.389890670776367],["▁Lauderdale",-13.389890670776367],["▁închisoare",-13.389898300170898],["▁Christchurch",-13.389934539794922],["▁influenţ",-13.389982223510742],["▁Meghan",-13.390019416809082],["▁Dienstleistung",-13.390557289123535],["▁cladiri",-13.390564918518066],["▁evrei",-13.391148567199709],["▁oatmeal",-13.391230583190918],["▁chronique",-13.3912353515625],["▁associée",-13.391264915466309],["▁Goose",-13.391283988952637],["gänz",-13.391855239868164],["▁Blätter",-13.391901969909668],["▁jurnalist",-13.392212867736816],["cedat",-13.392263412475586],["nommée",-13.392315864562988],["écrivain",-13.392572402954102],["▁epoxy",-13.392577171325684],["▁verlangt",-13.392590522766112],["Störung",-13.392708778381348],["▁Doyle",-13.392729759216309],["▁Philharmoni",-13.392844200134276],["▁déclare",-13.393044471740724],["effort",-13.39304542541504],["ström",-13.393118858337402],["▁cunoaşte",-13.393244743347168],["▁gigantic",-13.3932466506958],["któ",-13.393378257751465],["▁ilustr",-13.393529891967772],["▁frec",-13.39371109008789],["▁Syracuse",-13.393916130065918],["▁Einwilligung",-13.393917083740234],["▁miraculous",-13.393917083740234],["▁ökologisch",-13.393917083740234],["▁Simmons",-13.393922805786133],["▁albastru",-13.393926620483398],["besser",-13.393962860107422],["▁interioare",-13.394006729125977],["▁Trocken",-13.394068717956545],["niveau",-13.39406967163086],["▁Torah",-13.394122123718262],["▁beobachten",-13.3945894241333],["▁behandeln",-13.39463710784912],["staffed",-13.394742965698242],["hütte",-13.394824028015137],["Central",-13.394939422607422],["▁Freiburg",-13.395198822021484],["▁Netanyahu",-13.395261764526367],["▁Lexington",-13.395302772521973],["▁insotit",-13.395492553710938],["▁depasi",-13.39560604095459],["sewage",-13.395853996276855],["erkrankung",-13.395951271057127],["▁părţi",-13.396234512329102],["▁Nixon",-13.39661693572998],["Byron",-13.396905899047852],["▁varietat",-13.39724063873291],["▁Bildschirm",-13.397299766540527],["▁accompli",-13.397424697875977],["affirmed",-13.397525787353516],["▁phyto",-13.397533416748049],["sectiune",-13.397592544555664],["abteilung",-13.397932052612305],["▁voastre",-13.397957801818848],["GitHub",-13.397958755493164],["▁Jorge",-13.39796257019043],["ACTION",-13.397972106933594],["voastra",-13.397984504699709],["▁Peanut",-13.397987365722656],["▁bilingual",-13.398011207580566],["▁nourriture",-13.39803695678711],["▁Asphalt",-13.398640632629396],["emballage",-13.399310111999512],["▁sanitation",-13.399310111999512],["▁Dessert",-13.399313926696776],["intitulé",-13.399322509765623],["▁acţiune",-13.399374008178713],["▁Übersetzung",-13.399402618408203],["destinate",-13.39941692352295],["▁Goddess",-13.39950466156006],["poziție",-13.399576187133787],["denumirea",-13.400002479553224],["cantitatea",-13.40002727508545],["▁Stereo",-13.400223731994627],["object",-13.400373458862305],["▁décè",-13.40058708190918],["▁Handeln",-13.400665283203123],["▁ambience",-13.400697708129885],["▁Lindsay",-13.4006986618042],["▁tensiune",-13.400781631469728],["▁thrift",-13.40078830718994],["▁Optimiz",-13.400843620300291],["▁beantworten",-13.401338577270508],["▁magistrat",-13.401342391967772],["évidence",-13.402016639709473],["▁Eclipse",-13.402016639709473],["▁Ribbon",-13.402016639709473],["▁condensation",-13.402016639709473],["▁innocence",-13.402018547058104],["▁mascara",-13.402023315429688],["▁seventeen",-13.40229034423828],["▁compétent",-13.402694702148438],["bewertet",-13.402717590332031],["▁Muzic",-13.40285587310791],["complexities",-13.402928352355955],["ddington",-13.403324127197266],["Entwickler",-13.403372764587402],["masonry",-13.4033784866333],["Führer",-13.403386116027832],["▁awakening",-13.40338897705078],["▁lovitur",-13.403806686401367],["gebrochen",-13.40406894683838],["indexed",-13.404478073120115],["campania",-13.404515266418455],["▁Fountain",-13.404730796813965],["▁Joomla",-13.404730796813965],["▁Superintendent",-13.404730796813965],["▁Dahl",-13.404742240905762],["▁Benefici",-13.404863357543944],["optimiser",-13.404919624328612],["bursting",-13.405380249023438],["diplom",-13.405427932739258],["microsoft",-13.405621528625488],["▁correlate",-13.405776977539062],["▁arhitectura",-13.405848503112791],["▁lunette",-13.40611743927002],["Statistical",-13.406147003173828],["▁iarnă",-13.406201362609863],["▁importanț",-13.406932830810549],["sistence",-13.407366752624512],["associated",-13.407402992248535],["Occident",-13.407452583312988],["▁Heidelberg",-13.407452583312988],["▁acquaintance",-13.407452583312988],["Introducing",-13.407453536987305],["▁ripple",-13.407480239868164],["▁Childhood",-13.407563209533691],["drywall",-13.407577514648438],["Vreau",-13.40771770477295],["▁compétence",-13.407967567443848],["▁asteapta",-13.408135414123535],["▁duhovnic",-13.408135414123535],["▁învăţământ",-13.408141136169434],["encompassing",-13.40829849243164],["1997)",-13.408370018005373],["▁atractiv",-13.40851593017578],["Majoritatea",-13.408775329589844],["▁bungalow",-13.40881633758545],["▁Introduce",-13.408817291259766],["▁culprit",-13.408817291259766],["▁malheureusement",-13.408817291259766],["▁voudrai",-13.408817291259766],["Europäische",-13.408825874328612],["wunsch",-13.408880233764648],["▁înțeles",-13.408892631530762],["▁infestation",-13.40889835357666],["Bringing",-13.409186363220217],["▁Mehrheit",-13.409229278564451],["ски",-13.409456253051758],["▁procéder",-13.409499168395996],["grupului",-13.409504890441896],["▁dispoziti",-13.40964412689209],["▁snug",-13.409950256347656],["▁Afrika",-13.41018295288086],["▁Madagascar",-13.41018295288086],["Părinte",-13.410195350646973],["▁Clayton",-13.410223960876465],["▁antagonist",-13.410239219665527],["termeni",-13.410250663757324],["▁Literary",-13.410391807556152],["▁Babylon",-13.410452842712402],["▁überprüfen",-13.410865783691406],["▁duminica",-13.410879135131836],["farbig",-13.410970687866213],["nennt",-13.41106414794922],["annual",-13.411487579345703],["▁Qualcomm",-13.41154956817627],["▁Slovakia",-13.41154956817627],["▁plictis",-13.41155242919922],["▁prairie",-13.411554336547852],["▁Schatten",-13.411622047424316],["▁compléter",-13.41223430633545],["inauguration",-13.412376403808594],["▁apărare",-13.412407875061035],["▁întăr",-13.412412643432615],["▁pronunciation",-13.412919044494627],["▁bewährt",-13.412919998168944],["▁Viertel",-13.413084983825684],["▁Heidi",-13.413252830505373],["▁Gummi",-13.413507461547852],["▁veggie",-13.413552284240724],["▁monsieur",-13.413604736328123],["éveil",-13.413630485534668],["shipments",-13.413928985595703],["▁Medikamente",-13.41429042816162],["▁Johannesburg",-13.414314270019531],["▁ermittelt",-13.414321899414062],["▁bataille",-13.414440155029297],["extrem",-13.414609909057615],["▁1:2",-13.414671897888184],["Array",-13.414725303649902],["▁portail",-13.414857864379885],["▁găzdui",-13.414977073669434],["▁Calcium",-13.41497802734375],["▁Correction",-13.415104866027832],["bureaux",-13.41528034210205],["bestselling",-13.415338516235352],["Übungen",-13.415420532226562],["paramètres",-13.41563320159912],["▁Provincial",-13.415663719177246],["▁outrageous",-13.41568088531494],["▁Giveaway",-13.415775299072266],["▁LGBTQ",-13.41589641571045],["geklärt",-13.416854858398438],["▁Karlsruhe",-13.417038917541504],["▁esențial",-13.417038917541504],["avancée",-13.41703987121582],["hesitant",-13.417040824890137],["enlarged",-13.417069435119627],["▁inherit",-13.417121887207031],["Food",-13.4171724319458],["bucuria",-13.417181015014648],["▁BTW",-13.417400360107422],["associe",-13.417579650878906],["▁Möchte",-13.417742729187012],["demokrat",-13.417789459228516],["Turcia",-13.417964935302734],["forged",-13.418370246887209],["▁Zhao",-13.418442726135254],["▁cherries",-13.418556213378906],["▁evangelical",-13.418631553649902],["▁jüng",-13.418792724609377],["spans",-13.41880989074707],["▁străluc",-13.41888427734375],["▁geschie",-13.41893196105957],["▁Tattoo",-13.419112205505373],["sanitary",-13.419114112854004],["▁biopsy",-13.419353485107422],["▁imprumut",-13.419795036315918],["▁unreasonable",-13.419795036315918],["Funktion",-13.419800758361816],["▁prohibition",-13.419904708862305],["▁Prezent",-13.419939041137695],["boosted",-13.419967651367188],["▁chalet",-13.420382499694824],["▁tanar",-13.420450210571287],["Faktoren",-13.420489311218262],["▁Mozilla",-13.420550346374512],["▁Lambert",-13.42076015472412],["▁Cruci",-13.420927047729492],["▁Flugzeug",-13.421198844909668],["reassure",-13.421205520629885],["envisioned",-13.421542167663574],["Traditionally",-13.42177391052246],["▁parametri",-13.42185115814209],["▁unicorn",-13.42189121246338],["▁adéquat",-13.421894073486328],["▁Colonial",-13.421915054321287],["▁Kwa",-13.422097206115724],["▁SERV",-13.422333717346191],["tourism",-13.422627449035645],["▁Kiev",-13.422974586486816],["heightened",-13.42309284210205],["circulating",-13.423099517822266],["▁Kreditkarte",-13.42310619354248],["gedruckt",-13.423110008239746],["▁Depend",-13.423120498657228],["Style",-13.42319679260254],["▁Rettungs",-13.42325496673584],["wrongful",-13.423418998718262],["▁devour",-13.423453330993652],["▁manevr",-13.423582077026367],["carora",-13.423628807067873],["erfolgreichen",-13.423723220825195],["überwiegend",-13.423942565917969],["▁Sauvignon",-13.423942565917969],["händler",-13.423944473266602],["▁annotation",-13.424009323120115],["▁expans",-13.424020767211914],["▁recital",-13.424080848693848],["inhabited",-13.424367904663086],["OnePlus",-13.424549102783203],["Gästen",-13.424588203430176],["beliebig",-13.42461395263672],["▁Anonymous",-13.424635887145996],["▁Ansprechpartner",-13.424635887145996],["▁tamb",-13.42464542388916],["estimating",-13.424670219421388],["frequent",-13.424769401550291],["▁disciplin",-13.425241470336914],["▁plombier",-13.425329208374023],["▁teoretic",-13.42533016204834],["greift",-13.425339698791504],["▁Einschränkung",-13.42537784576416],["obscur",-13.42611598968506],["architecte",-13.426233291625977],["▁détour",-13.42647647857666],["▁spaghetti",-13.426717758178713],["croft",-13.42693042755127],["▁Grammar",-13.426953315734863],["▁investitii",-13.427062034606934],["▁glorif",-13.427067756652832],["architekt",-13.427412033081056],["Oricum",-13.427451133728027],["▁bruise",-13.427692413330078],["▁McCarthy",-13.428107261657717],["▁Uruguay",-13.428107261657717],["Produsele",-13.428109169006348],["▁Comparison",-13.42811107635498],["▁fondamental",-13.42811107635498],["▁stradă",-13.428115844726562],["▁Countries",-13.428131103515623],["▁guéri",-13.42825698852539],["▁bâti",-13.428339004516602],["▁blunt",-13.428515434265137],["▁Sistem",-13.428645133972168],["▁Betroffenen",-13.428803443908691],["efectuare",-13.428823471069336],["▁scharf",-13.428899765014648],["naps",-13.429057121276855],["▁plaid",-13.429163932800291],["▁investiții",-13.429367065429688],["evenimentele",-13.42948055267334],["▁Phuket",-13.429499626159668],["▁testosterone",-13.429499626159668],["▁scaffold",-13.429500579833984],["▁rasch",-13.43002223968506],["▁adânc",-13.430076599121094],["atteinte",-13.430228233337402],["▁educație",-13.430320739746094],["▁leopard",-13.430893898010254],["▁superioare",-13.430893898010254],["▁téléchargement",-13.430893898010254],["▁Weapon",-13.431103706359863],["favourable",-13.431336402893066],["nourishing",-13.43143367767334],["▁verfolgt",-13.43160629272461],["▁tablou",-13.431633949279783],["Algérie",-13.431657791137695],["Islam",-13.431700706481934],["faser",-13.431825637817385],["rhythm",-13.432214736938477],["▁Anthropolog",-13.432291030883787],["▁clôtur",-13.432291030883787],["spüren",-13.432291984558104],["▁Architectural",-13.432294845581056],["▁imaginary",-13.432368278503418],["cône",-13.432456016540527],["▁snuggl",-13.432744026184082],["disadvantaged",-13.432745933532717],["radically",-13.4329195022583],["Première",-13.433011054992676],["▁combinaison",-13.433027267456056],["▁Algeria",-13.43303108215332],["▁Wände",-13.43317985534668],["aesthetically",-13.43336009979248],["▁McKe",-13.433368682861328],["interroge",-13.433473587036133],["exclusive",-13.433475494384766],["▁Thomson",-13.433688163757324],["▁Gujarat",-13.43368911743164],["irgendwo",-13.433690071105955],["Severin",-13.433767318725586],["▁imitation",-13.433926582336426],["constructed",-13.434194564819336],["▁Montpellier",-13.434388160705566],["cedent",-13.434539794921877],["accelerating",-13.434563636779783],["dommages",-13.4346284866333],["lideri",-13.434730529785156],["▁Millennium",-13.435089111328123],["▁imprisonment",-13.435089111328123],["machining",-13.43511199951172],["▁anxiet",-13.43521499633789],["Contains",-13.435298919677734],["pleade",-13.43556308746338],["DOWN",-13.43564510345459],["geschehen",-13.435797691345217],["restaurant",-13.43581199645996],["Totusi",-13.435839653015137],["amintesc",-13.436158180236816],["▁Crisp",-13.436233520507812],["aduse",-13.436278343200684],["▁imposé",-13.436351776123049],["Jubiläum",-13.436490058898926],["▁Plaintiff",-13.436491012573242],["▁authoritative",-13.43649196624756],["▁rendition",-13.436633110046388],["Royce",-13.436707496643066],["1996)",-13.436724662780762],["Asociația",-13.437192916870115],["▁Gluten",-13.437264442443848],["feature",-13.43741226196289],["Behavioral",-13.437454223632812],["tearing",-13.437763214111328],["▁Entfernung",-13.437894821166992],["▁Responsibility",-13.437894821166992],["▁negligent",-13.437894821166992],["▁syllabus",-13.437894821166992],["▁Cycling",-13.437895774841309],["generell",-13.438114166259766],["customised",-13.438392639160156],["Management",-13.43850326538086],["▁timid",-13.438518524169922],["Tagged",-13.438730239868164],["▁susţinut",-13.438809394836426],["anchored",-13.43892765045166],["alternating",-13.43905544281006],["▁obligatoriu",-13.439300537109377],["▁reinstate",-13.439456939697266],["Können",-13.43946361541748],["▁Paol",-13.43959617614746],["öhr",-13.439603805541992],["▁Asociati",-13.439876556396484],["▁commenc",-13.440285682678224],["reinigt",-13.440293312072754],["commended",-13.440350532531738],["▁Proceed",-13.440675735473633],["beutel",-13.440702438354492],["▁Experimental",-13.44070816040039],["▁constellation",-13.44070816040039],["▁gepflegt",-13.44070816040039],["▁Ergänzung",-13.440709114074709],["Judith",-13.440713882446287],["▁Quartet",-13.440720558166504],["complemented",-13.44074249267578],["ausbildung",-13.440750122070312],["▁uncertainties",-13.44077205657959],["▁humiliat",-13.440914154052734],["luta",-13.441121101379396],["▁complexion",-13.441482543945312],["Serviciul",-13.441612243652344],["▁Toast",-13.441722869873049],["ummies",-13.442425727844238],["▁irit",-13.442463874816896],["producing",-13.442585945129396],["amenajare",-13.442825317382812],["▁béton",-13.442828178405762],["▁serpent",-13.442851066589355],["▁vizită",-13.442996978759766],["▁Beamte",-13.443017959594728],["▁Füße",-13.443166732788086],["▁Norwich",-13.443531036376951],["▁acronym",-13.443531036376951],["▁eradicate",-13.443531036376951],["▁solidarité",-13.44353199005127],["▁eggplant",-13.44358253479004],["▁sailors",-13.44361972808838],["waschen",-13.444538116455078],["Editura",-13.444757461547852],["▁erwerben",-13.444944381713867],["▁unconventional",-13.444944381713867],["▁boulder",-13.444948196411133],["Diplom",-13.445013046264648],["influx",-13.446162223815918],["▁Twelve",-13.446361541748049],["▁Sexual",-13.44636344909668],["numite",-13.446369171142578],["▁kontaktieren",-13.446370124816896],["▁strâns",-13.44637680053711],["▁précisément",-13.446382522583008],["empfindlich",-13.446405410766602],["▁divulg",-13.446490287780762],["▁delicat",-13.446539878845217],["compete",-13.446542739868164],["▁implique",-13.446616172790527],["implantation",-13.44672966003418],["frères",-13.447328567504885],["shedding",-13.44758415222168],["découvrez",-13.447657585144045],["rith",-13.447735786437988],["▁réglementation",-13.447778701782228],["▁transistor",-13.44778537750244],["inflated",-13.447792053222656],["▁Bluff",-13.447887420654297],["▁Aquarium",-13.448526382446287],["▁mananc",-13.448638916015623],["▁disinfect",-13.448700904846191],["tuft",-13.448740005493164],["Public",-13.449081420898438],["conceivabl",-13.44919776916504],["▁Cadillac",-13.44919776916504],["Assassin",-13.449199676513672],["issuance",-13.449252128601074],["▁Achtung",-13.44928741455078],["▁grundlegend",-13.449909210205078],["▁Băsescu",-13.449910163879396],["schaden",-13.45014476776123],["coached",-13.450409889221191],["▁betreffend",-13.45046329498291],["ergebnis",-13.450541496276855],["▁Lieutenant",-13.4506196975708],["WORLD",-13.450620651245115],["▁Moroccan",-13.450620651245115],["▁Butterfly",-13.450621604919434],["would",-13.450737953186035],["▁Metropol",-13.451025009155272],["lexic",-13.45119285583496],["comunitatea",-13.45124340057373],["vapeur",-13.451456069946287],["4.000",-13.45155906677246],["Pentru",-13.451581954956056],["üblichen",-13.451613426208496],["▁Général",-13.451770782470703],["▁Versailles",-13.452046394348145],["▁engraving",-13.452046394348145],["▁pédagogique",-13.452192306518556],["▁Policies",-13.452759742736816],["descending",-13.453235626220703],["stärkt",-13.453349113464355],["▁démocratie",-13.45347023010254],["▁granddaughter",-13.45347023010254],["▁buffalo",-13.45347499847412],["Datorita",-13.45347785949707],["hydroxy",-13.453537940979004],["▁ganduri",-13.453566551208496],["▁hijack",-13.453624725341797],["zahn",-13.453699111938477],["poziția",-13.45406436920166],["▁Zähne",-13.454184532165527],["▁grossesse",-13.454296112060549],["embassy",-13.4548978805542],["▁cérémonie",-13.4548978805542],["Rhône",-13.454898834228516],["▁Cabernet",-13.454898834228516],["▁Namibia",-13.45490264892578],["▁pedestal",-13.45490264892578],["▁Fighting",-13.45490550994873],["▁Threat",-13.454962730407717],["▁ideological",-13.455047607421877],["▁restitu",-13.455183029174805],["gelangt",-13.455510139465332],["Mitgliedern",-13.455537796020508],["acquérir",-13.455613136291504],["▁inferioar",-13.45561695098877],["Thierry",-13.45561981201172],["▁Entspannung",-13.455638885498049],["frequency",-13.45566177368164],["▁Fluid",-13.455686569213867],["▁betreut",-13.45590114593506],["Biological",-13.455965995788574],["▁Constanţa",-13.456328392028809],["▁beschäftigen",-13.456328392028809],["▁undesirable",-13.456328392028809],["▁protégé",-13.456365585327148],["▁nautical",-13.45647430419922],["▁sniff",-13.456507682800291],["Decizi",-13.456510543823242],["▁căldur",-13.45706558227539],["▁ideologi",-13.457335472106934],["Fraktion",-13.457545280456545],["collegiate",-13.45776081085205],["▁sănătos",-13.45776081085205],["▁Observatory",-13.45776653289795],["▁saturation",-13.457769393920898],["organizate",-13.457771301269531],["mergem",-13.458321571350098],["Publish",-13.458451271057127],["▁rattle",-13.458460807800291],["▁întâlniri",-13.458663940429688],["emporte",-13.458741188049316],["▁înscris",-13.459046363830566],["▁Patterson",-13.459195137023926],["▁ehrenamtlich",-13.459195137023926],["linux",-13.459213256835938],["conduire",-13.45921802520752],["▁absolven",-13.459223747253418],["▁einzigartig",-13.459598541259766],["▁_____",-13.459803581237791],["▁Beschäftigung",-13.459912300109863],["▁erfasst",-13.459927558898926],["▁Datum",-13.45999240875244],["raportul",-13.460284233093262],["ennemi",-13.460460662841797],["default",-13.460643768310549],["icillin",-13.46066951751709],["▁diamant",-13.460671424865724],["amerika",-13.460684776306152],["▁pescuit",-13.46070384979248],["▁grappl",-13.460797309875488],["▁Homeland",-13.46082592010498],["▁tromb",-13.46112060546875],["▁reduzieren",-13.461349487304688],["▁Statut",-13.461593627929688],["booming",-13.461670875549316],["fenced",-13.46172332763672],["measure",-13.461888313293455],["témoin",-13.462069511413574],["▁Inventory",-13.462069511413574],["▁circonstance",-13.462069511413574],["▁téléphonique",-13.462069511413574],["▁împiedic",-13.46207046508789],["▁Settlement",-13.462072372436523],["kannte",-13.462076187133787],["▁substantive",-13.462385177612305],["miterea",-13.462642669677734],["▁noştri",-13.462790489196776],["▁plăcere",-13.462791442871094],["▁eticheta",-13.462823867797852],["quickest",-13.462993621826172],["▁pasageri",-13.463089942932127],["▁Publi",-13.463495254516602],["▁Suzanne",-13.463509559631348],["▁bucătări",-13.463509559631348],["Regulatory",-13.463510513305664],["▁Mandarin",-13.463647842407228],["surgical",-13.463947296142578],["▁Smash",-13.463950157165527],["▁mândr",-13.46403694152832],["▁Unterkunft",-13.464315414428713],["moos",-13.464374542236328],["Camere",-13.464510917663574],["/03/",-13.464651107788086],["▁ethno",-13.464677810668944],["▁Eröffnung",-13.46495246887207],["▁Snyder",-13.46495246887207],["▁Wilmington",-13.46495246887207],["▁Canberra",-13.464953422546388],["▁Tahoe",-13.464953422546388],["▁slippery",-13.464953422546388],["▁Snake",-13.464957237243652],["▁turmeric",-13.464963912963867],["▁Cartoon",-13.46499252319336],["▁scrisoare",-13.46500015258789],["▁reprend",-13.465425491333008],["▁Konkurrenz",-13.46567440032959],["▁raisins",-13.465693473815918],["▁Werkstatt",-13.465713500976562],["▁agresiv",-13.465795516967772],["hugs",-13.46615219116211],["cazurile",-13.46618938446045],["spirited",-13.466232299804688],["▁britisch",-13.466307640075684],["spritz",-13.466367721557615],["auxiliary",-13.46639633178711],["interprétation",-13.46639633178711],["▁verbindet",-13.46639633178711],["▁fuzzy",-13.466429710388184],["▁turmoil",-13.466432571411133],["▁redefine",-13.466819763183594],["▁Kiwi",-13.466890335083008],["oiseaux",-13.46712875366211],["▁pamper",-13.46714687347412],["▁desfaso",-13.46719741821289],["▁pragu",-13.467576026916504],["prevenirea",-13.467730522155762],["▁convergence",-13.467846870422363],["tufted",-13.467878341674805],["brewed",-13.467981338500977],["villagers",-13.468003273010254],["▁Irving",-13.468170166015623],["nigsten",-13.468660354614258],["▁embod",-13.468742370605469],["Alicia",-13.468938827514648],["probably",-13.469009399414062],["divider",-13.46904468536377],["Attempt",-13.469223022460938],["▁Cognitive",-13.469292640686035],["▁Recognition",-13.469292640686035],["▁concierge",-13.469292640686035],["▁Semester",-13.4692964553833],["Economie",-13.469417572021484],["sortiment",-13.469460487365724],["shortest",-13.46961498260498],["üchtig",-13.469650268554688],["▁conveyanc",-13.469978332519531],["▁Ferdinand",-13.470017433166504],["▁permanence",-13.470019340515137],["▁incadr",-13.470145225524902],["▁estrogen",-13.470290184020996],["February",-13.470661163330078],["gedeckt",-13.470704078674316],["▁reagieren",-13.470743179321287],["▁meditate",-13.470980644226074],["simulated",-13.471010208129885],["▁supprimer",-13.471468925476074],["▁bumbac",-13.47146987915039],["▁vânzări",-13.471477508544922],["▁Kapitel",-13.471478462219238],["▁Weltkrieg",-13.471513748168944],["déposer",-13.471674919128418],["Asus",-13.4718017578125],["▁Communicat",-13.471851348876951],["Finished",-13.47188949584961],["▁Telegraph",-13.472054481506348],["▁Competitive",-13.472196578979492],["▁collectivités",-13.472197532653809],["▁protège",-13.47219944000244],["▁scallop",-13.472219467163086],["Happy",-13.472335815429688],["tehnică",-13.472352981567385],["▁Gestalt",-13.47270393371582],["▁benign",-13.47295093536377],["kraut",-13.473149299621582],["louer",-13.473221778869627],["▁Printr",-13.47326946258545],["mputation",-13.473346710205078],["▁dicke",-13.473429679870604],["▁Halifax",-13.473650932312012],["▁bounty",-13.473650932312012],["▁cauliflower",-13.473650932312012],["▁Survival",-13.473654747009276],["▁Chandler",-13.473684310913086],["▁bemüh",-13.473760604858398],["phro",-13.47385597229004],["Friday",-13.474018096923828],["particularly",-13.474032402038574],["arteries",-13.474197387695312],["Lösung",-13.474771499633787],["▁causal",-13.474817276000977],["▁recueilli",-13.475075721740724],["Stylish",-13.47510814666748],["schränke",-13.47510814666748],["▁francophone",-13.47510814666748],["▁limousine",-13.47510814666748],["▁statistiques",-13.47510814666748],["▁Kleider",-13.475111961364746],["▁dunkel",-13.475127220153809],["tätigkeit",-13.475190162658691],["▁punished",-13.475257873535156],["▁implică",-13.475539207458496],["▁inițial",-13.475568771362305],["▁Eminescu",-13.475837707519531],["▁expliqué",-13.475837707519531],["▁Eduard",-13.475839614868164],["▁psychologique",-13.475870132446287],["▁protejeaz",-13.476580619812012],["spül",-13.476709365844728],["▁Virtu",-13.477021217346191],["▁régulière",-13.477044105529783],["▁Outreach",-13.477130889892578],["▁Apprentice",-13.47729778289795],["▁compréhension",-13.47729778289795],["▁zwölf",-13.47729778289795],["Surgical",-13.47731590270996],["latéral",-13.477417945861816],["▁Ceremony",-13.47803020477295],["▁Shampoo",-13.47803783416748],["Global",-13.478239059448242],["▁paradis",-13.47830295562744],["Developed",-13.478493690490724],["▁figurine",-13.478549003601074],["sujets",-13.478574752807615],["▁Naomi",-13.478772163391112],["financed",-13.478838920593262],["forestry",-13.478896141052246],["▁Anregung",-13.479494094848633],["▁spectateur",-13.479804039001465],["▁exercitii",-13.479815483093262],["▁russisch",-13.479888916015623],["gefunden",-13.479988098144531],["schleunig",-13.480225563049316],["▁géographique",-13.480225563049316],["▁Delphi",-13.480317115783691],["Freddie",-13.4806489944458],["▁muzici",-13.480958938598633],["▁Edmund",-13.48095989227295],["finanzielle",-13.481032371520996],["(2003)",-13.481319427490234],["accentuate",-13.481437683105469],["overlapping",-13.48151969909668],["▁Pluto",-13.481595993041992],["românii",-13.481683731079102],["▁Timişoara",-13.48169231414795],["▁poivr",-13.481754302978516],["▁repris",-13.481852531433104],["▁Geschlecht",-13.482426643371582],["▁thieves",-13.482426643371582],["▁Transformer",-13.482431411743164],["▁shortcomings",-13.48243808746338],["▁aptitude",-13.48244571685791],["pitfalls",-13.482468605041504],["▁manicure",-13.482577323913574],["mystical",-13.482723236083984],["▁abolish",-13.482833862304688],["▁Zielgruppe",-13.482873916625977],["▁naţionale",-13.483160972595217],["▁trandafir",-13.483160972595217],["▁matematic",-13.483193397521973],["▁Hirsch",-13.483257293701172],["Fahr",-13.483458518981934],["connaissent",-13.483476638793944],["browned",-13.483846664428713],["▁bearbeitet",-13.483881950378418],["▁usturoi",-13.483896255493164],["▁Surprise",-13.48389720916748],["▁Tehran",-13.483899116516112],["▁BLACK",-13.483901023864746],["▁abonament",-13.483904838562012],["▁mêl",-13.483972549438477],["Angebot",-13.484091758728027],["ajungi",-13.48410415649414],["▁Woodland",-13.48420524597168],["▁gradini",-13.484305381774902],["▁Marilyn",-13.48464584350586],["kilometer",-13.484880447387695],["tempered",-13.485230445861816],["▁intimacy",-13.485371589660645],["▁thunderstorm",-13.485373497009276],["▁Uttar",-13.485413551330566],["▁varnish",-13.485535621643066],["opathie",-13.48598289489746],["▁școlar",-13.48611068725586],["▁raisonnable",-13.486114501953123],["proactively",-13.486490249633787],["▁gib",-13.486536979675291],["▁hospice",-13.48684310913086],["▁constă",-13.486896514892578],["▁Crescent",-13.48690128326416],["▁ambasad",-13.486933708190918],["hotărâre",-13.48696994781494],["▁fraîche",-13.48709774017334],["▁bundesweit",-13.487581253051758],["nsbesondere",-13.487812042236328],["▁intoarce",-13.487863540649414],["▁Schokolade",-13.488319396972656],["▁adjective",-13.488319396972656],["▁incalzire",-13.488319396972656],["▁Qualification",-13.488320350646973],["▁Bolivia",-13.488324165344238],["▁cruelty",-13.48833465576172],["pläne",-13.48834228515625],["▁solitude",-13.488354682922363],["▁Bosnia",-13.488568305969238],["rohr",-13.488643646240234],["▁regrette",-13.48877239227295],["zusammengestellt",-13.48924732208252],["▁Kardashian",-13.489798545837402],["▁Picasso",-13.489798545837402],["▁unverbindlich",-13.489798545837402],["▁Headquarters",-13.48979949951172],["métrage",-13.4898099899292],["▁Magento",-13.489816665649414],["▁exhibitors",-13.489898681640623],["utty",-13.490381240844728],["▁Fünf",-13.490538597106934],["▁Peugeot",-13.490538597106934],["▁verdienen",-13.490538597106934],["▁absolviert",-13.49053955078125],["schutzerklärung",-13.490679740905762],["sistemele",-13.49089241027832],["▁concrète",-13.49127960205078],["▁rhyme",-13.49127960205078],["▁Continuous",-13.49128246307373],["versprechen",-13.49131202697754],["▁Melanie",-13.49202823638916],["▁clienţi",-13.492046356201172],["luckily",-13.492205619812012],["▁counterfeit",-13.492762565612791],["▁locomotive",-13.492889404296877],["▁reacți",-13.492908477783203],["ampered",-13.493005752563477],["atenția",-13.493011474609377],["Suppose",-13.49306297302246],["hinweis",-13.493464469909668],["verletzung",-13.493504524230955],["▁mănânc",-13.493504524230955],["▁provoac",-13.493507385253906],["▁regizor",-13.493511199951172],["kundig",-13.49352741241455],["embarqu",-13.493584632873535],["Radio",-13.493690490722656],["Ministrul",-13.493896484375],["weakened",-13.494214057922363],["▁translucent",-13.494247436523438],["George",-13.494380950927734],["▁bacterii",-13.494402885437012],["intervalul",-13.494803428649902],["▁vizualiz",-13.494832038879396],["▁Feuchtigkeit",-13.494991302490234],["▁choisissez",-13.494991302490234],["▁plausible",-13.494991302490234],["▁perpetu",-13.495122909545898],["▁bucati",-13.495194435119627],["▁Giovanni",-13.495735168457031],["▁bluetooth",-13.495736122131348],["▁translating",-13.49573802947998],["▁Kyoto",-13.495739936828612],["▁homosexual",-13.495745658874512],["treabă",-13.495820045471191],["ntrepid",-13.495983123779297],["▁fachlich",-13.496664047241213],["Vaccin",-13.496774673461914],["▁Treib",-13.497248649597168],["varsity",-13.497272491455078],["▁Tavern",-13.497278213500977],["▁ensue",-13.49733066558838],["flexibel",-13.497971534729004],["retrieved",-13.498102188110352],["traditionellen",-13.498230934143066],["▁circulati",-13.498546600341797],["▁Diagnose",-13.498717308044434],["▁Strawberry",-13.498717308044434],["Societatea",-13.49871826171875],["expertise",-13.498849868774414],["▁naturii",-13.499464988708496],["▁4:1",-13.499515533447266],["Frequently",-13.500210762023926],["disproportionate",-13.500210762023926],["▁LIMITED",-13.500210762023926],["▁ancestral",-13.50022792816162],["▁Logistik",-13.500237464904783],["▁recolt",-13.50042724609375],["▁liebevoll",-13.500436782836914],["importing",-13.500452041625977],["aparatul",-13.500458717346191],["poziţia",-13.500564575195312],["facerilor",-13.500658988952637],["Submitted",-13.50086784362793],["ografia",-13.501221656799316],["onformément",-13.50168228149414],["▁dissemination",-13.501708030700684],["afli",-13.501834869384766],["luminous",-13.502154350280762],["▁draußen",-13.502456665039062],["▁Zauber",-13.502535820007324],["▁Ibrahim",-13.503207206726074],["▁eruption",-13.503216743469238],["écrite",-13.50357723236084],["avril",-13.503898620605469],["Increasing",-13.50417137145996],["hingeg",-13.504411697387695],["fidelity",-13.50470733642578],["étonnant",-13.50470733642578],["▁créativité",-13.50470733642578],["▁Required",-13.504708290100098],["▁Edison",-13.504719734191896],["▁Stuhl",-13.504719734191896],["outhwestern",-13.506060600280762],["▁Beschwerden",-13.506210327148438],["▁angajaţi",-13.506210327148438],["▁Currency",-13.506211280822754],["▁reagiert",-13.506214141845703],["Science",-13.506229400634766],["hospital",-13.506253242492676],["professionellen",-13.50649356842041],["▁Trouve",-13.506768226623535],["▁utopi",-13.50683307647705],["gypte",-13.506928443908691],["▁Konsequenz",-13.506962776184082],["▁pacienți",-13.506962776184082],["▁orizont",-13.506988525390623],["Corey",-13.506999015808104],["▁quartet",-13.507009506225586],["▁Sherlock",-13.50710678100586],["▁gagné",-13.507237434387209],["▁Jusqu",-13.50732707977295],["▁Clickfunnel",-13.507465362548828],["Survivor",-13.507716178894045],["▁Beethoven",-13.507716178894045],["▁Exemplar",-13.507716178894045],["▁Gonzalez",-13.507716178894045],["▁Illustrator",-13.507716178894045],["▁Verpflichtung",-13.507718086242676],["Possibly",-13.507719993591309],["Maintenant",-13.50772190093994],["▁incendiu",-13.50772190093994],["▁poêl",-13.507747650146484],["▁aşez",-13.507757186889648],["phenol",-13.508248329162598],["▁magician",-13.508421897888184],["éventuellement",-13.508512496948242],["▁amortiz",-13.508736610412598],["bouchage",-13.50873851776123],["▁Accommodation",-13.50922393798828],["▁Significant",-13.50922393798828],["▁rejoice",-13.50922393798828],["▁Lorraine",-13.509224891662598],["▁Necklace",-13.509234428405762],["▁hamburger",-13.509273529052734],["Enhanced",-13.5095796585083],["▁Audrey",-13.50997829437256],["▁considère",-13.509986877441406],["hafen",-13.51050853729248],["acordare",-13.510509490966797],["▁ediți",-13.51075553894043],["▁militia",-13.510767936706545],["captivate",-13.510771751403809],["▁rebellion",-13.510777473449709],["▁veranstalte",-13.510844230651855],["▁matelas",-13.510859489440918],["originating",-13.510873794555664],["Typical",-13.51092529296875],["▁législat",-13.511360168457031],["▁Kräfte",-13.511488914489746],["▁Eigentümer",-13.511489868164062],["▁gonfl",-13.511608123779297],["dispoziție",-13.512028694152832],["▁Fabulous",-13.512246131896973],["▁Guillaume",-13.512246131896973],["▁Genuine",-13.512247085571287],["selbe",-13.512449264526367],["(2002)",-13.512616157531738],["Einen",-13.512908935546877],["▁Snapdragon",-13.513002395629885],["▁plagiarism",-13.513002395629885],["▁Rendez",-13.513019561767578],["▁înregistrare",-13.513033866882324],["probiert",-13.513081550598145],["gestiegen",-13.513153076171877],["Teatrul",-13.513370513916016],["trove",-13.513469696044922],["ntsprechend",-13.51356601715088],["Städten",-13.513691902160645],["unforeseen",-13.513760566711426],["▁Meridian",-13.513761520385742],["▁Ministries",-13.513763427734377],["plaît",-13.513769149780272],["▁Telefonnummer",-13.513772010803224],["welded",-13.513788223266602],["pondere",-13.513976097106934],["▁funcţiona",-13.514012336730955],["▁politicieni",-13.514187812805176],["fleck",-13.514240264892578],["▁Nitro",-13.514264106750488],["wettbewerb",-13.514518737792969],["▁ingrijire",-13.514518737792969],["▁Gehirn",-13.514521598815918],["sigură",-13.514904022216797],["400,000",-13.51523780822754],["▁cataract",-13.515277862548828],["outskirt",-13.515280723571776],["▁Identification",-13.515287399291992],["▁imperfections",-13.515317916870115],["▁Dokumentation",-13.515474319458008],["Engine",-13.515851974487305],["extindere",-13.516046524047852],["bijoux",-13.516797065734863],["▁dărui",-13.516802787780762],["▁Moderator",-13.516913414001465],["biblio",-13.517024040222168],["енн",-13.517024040222168],["▁Relevan",-13.51728630065918],["ansprüche",-13.51755714416504],["épaisseur",-13.517580032348633],["▁emoţi",-13.517677307128906],["exacerbate",-13.518318176269531],["▁Wimbledon",-13.518318176269531],["▁Pandora",-13.518319129943848],["perhaps",-13.518725395202637],["certify",-13.518762588500977],["Strukturen",-13.5189208984375],["▁Kreativität",-13.519079208374023],["schlägt",-13.51908016204834],["▁certifié",-13.51911735534668],["/09/",-13.519211769104004],["▁suprafaţ",-13.519493103027344],["verständnis",-13.519841194152832],["presedintele",-13.519842147827148],["▁orthopedic",-13.519842147827148],["▁superioara",-13.519843101501465],["älteste",-13.519903182983398],["▁conducător",-13.520153999328612],["supplementary",-13.520243644714355],["wetlands",-13.520438194274902],["▁suprafete",-13.520605087280272],["▁aparțin",-13.520951271057127],["analiză",-13.521014213562012],["Uneori",-13.52115535736084],["Toujours",-13.521368026733398],["▁Nairobi",-13.521368026733398],["▁asparagus",-13.521368026733398],["▁crowdfunding",-13.521368026733398],["gutachten",-13.521369934082031],["smelling",-13.52165985107422],["▁elektrisch",-13.521718978881836],["begging",-13.522055625915527],["▁Renewable",-13.522896766662598],["▁Trouble",-13.522896766662598],["▁devastated",-13.522896766662598],["▁remplacé",-13.522896766662598],["▁schmeckt",-13.522896766662598],["▁exerciți",-13.523005485534668],["▁vermute",-13.52365016937256],["▁Constanța",-13.523661613464355],["expunere",-13.523693084716797],["▁Fitzgerald",-13.52442741394043],["▁Mechanism",-13.524429321289062],["▁underscore",-13.524484634399414],["poziţie",-13.524901390075684],["stöbern",-13.525193214416504],["▁littérature",-13.525193214416504],["▁împrumut",-13.525193214416504],["Vision",-13.525771141052246],["▁overwhelm",-13.52577304840088],["▁erweitern",-13.525959968566896],["skeletal",-13.525960922241213],["▁terrified",-13.525960922241213],["aggravate",-13.525962829589844],["▁Malawi",-13.52596950531006],["▁neuroscience",-13.526009559631348],["trecută",-13.526097297668455],["▁maestr",-13.52634334564209],["нов",-13.526555061340332],["▁Cobb",-13.52667236328125],["▁Schwangerschaft",-13.526727676391602],["▁internationaux",-13.526727676391602],["▁entspannen",-13.526729583740234],["▁Früchte",-13.52676773071289],["mâine",-13.526805877685549],["stützt",-13.526938438415527],["flipped",-13.527076721191406],["Palatul",-13.527252197265623],["▁Gérard",-13.527496337890623],["▁Kensington",-13.527498245239258],["chargée",-13.52807331085205],["iolo",-13.528203964233398],["▁excesiv",-13.52904987335205],["▁Gymnas",-13.52962875366211],["▁optimise",-13.529678344726562],["possibilités",-13.529717445373535],["▁periculoas",-13.529810905456545],["mechanical",-13.529839515686035],["▁confruntă",-13.529868125915527],["quatrième",-13.530573844909668],["▁Preservation",-13.530573844909668],["▁Juventus",-13.530574798583984],["vorsitzende",-13.5305757522583],["électora",-13.53058624267578],["▁fascinant",-13.53061580657959],["▁lagoon",-13.53067111968994],["referencing",-13.53079605102539],["appointed",-13.530988693237305],["Audible",-13.531112670898438],["sighted",-13.531612396240234],["▁gewünscht",-13.532061576843262],["▁Expedition",-13.532115936279297],["▁genunchi",-13.532115936279297],["▁PROVIDE",-13.53211784362793],["▁rosemary",-13.532118797302246],["▁cleanliness",-13.532130241394045],["commanded",-13.53223991394043],["ältere",-13.532530784606934],["ност",-13.532547950744627],["kühlen",-13.532917976379396],["mettez",-13.53354835510254],["connaitre",-13.533661842346191],["Qaeda",-13.533662796020508],["▁traumhaft",-13.53366470336914],["kommst",-13.533666610717772],["▁Abbott",-13.533669471740724],["▁Fool",-13.533686637878418],["▁médaill",-13.533687591552734],["▁genotyp",-13.533693313598633],["▁Fälle",-13.53375244140625],["▁actuator",-13.533843994140623],["CLASS",-13.534042358398438],["progressively",-13.534421920776367],["negative",-13.53469467163086],["bundled",-13.535009384155272],["▁dezbatere",-13.535208702087402],["kamagra",-13.535237312316896],["gardinen",-13.535250663757324],["unsecured",-13.535271644592283],["Assisted",-13.535298347473145],["Gymnasium",-13.535386085510254],["▁brusc",-13.53559112548828],["prinzip",-13.535655975341797],["Torrent",-13.535964965820312],["Presented",-13.535967826843262],["▁impressionnant",-13.53628921508789],["charakter",-13.536758422851562],["▁Acoustic",-13.536762237548828],["▁appartient",-13.536763191223145],["gesteuert",-13.536879539489746],["▁condiți",-13.537089347839355],["authentic",-13.537313461303713],["▁Erholung",-13.537534713745115],["▁Veranstalter",-13.537534713745115],["▁Filial",-13.537665367126465],["ruhigen",-13.537714958190918],["symptôme",-13.538311004638672],["▁Efficiency",-13.538311004638672],["▁stunned",-13.538311004638672],["▁sympathique",-13.538311004638672],["Uploaded",-13.538352966308594],["▁geistig",-13.538453102111816],["Pläne",-13.538509368896484],["▁Apartament",-13.53855037689209],["▁ușoar",-13.539119720458984],["▁locuinț",-13.539122581481934],["épouse",-13.539166450500488],["îngrijire",-13.539215087890623],["Obtain",-13.539261817932127],["Detect",-13.539590835571287],["▁Dumitru",-13.539865493774414],["▁refrigeration",-13.539865493774414],["ärztliche",-13.539881706237791],["efficiency",-13.540032386779783],["▁snail",-13.540328979492188],["gelände",-13.540419578552246],["expected",-13.540620803833008],["kompetenz",-13.540643692016602],["▁sfânt",-13.540643692016602],["océan",-13.540685653686523],["▁Plasma",-13.540717124938965],["▁vulgar",-13.54075813293457],["▁slump",-13.541083335876465],["autoimmune",-13.541422843933104],["▁Cynthia",-13.541422843933104],["▁dimineaţ",-13.541422843933104],["▁whimsical",-13.541422843933104],["▁evaporate",-13.541488647460938],["▁calorii",-13.54186725616455],["portion",-13.54187297821045],["crowned",-13.5419282913208],["▁întâmpin",-13.54220199584961],["▁Centenar",-13.542620658874512],["▁Genehmigung",-13.54298210144043],["▁Wahrscheinlich",-13.54298210144043],["▁accompaniment",-13.54298210144043],["▁Negoti",-13.54298496246338],["▁Vanilla",-13.54300022125244],["▁Receiv",-13.543014526367188],["▁bestseller",-13.543052673339844],["tendons",-13.54306983947754],["Reilly",-13.543192863464355],["▁refroidi",-13.543731689453123],["▁überrascht",-13.543763160705566],["Gitarre",-13.543828964233398],["wände",-13.54417324066162],["veniturile",-13.544321060180664],["▁portofoliu",-13.54454517364502],["▁temporaire",-13.54454517364502],["▁Dawson",-13.544546127319336],["foreseeable",-13.544547080993652],["▁Gastgeber",-13.545344352722168],["Access",-13.545432090759276],["▁Defender",-13.545537948608398],["▁Quarry",-13.546109199523926],["▁trolley",-13.546110153198242],["▁carburant",-13.54611110687256],["▁titluri",-13.54631233215332],["comparatively",-13.546327590942385],["nachfolgend",-13.54659652709961],["anfang",-13.546740531921388],["▁faszinieren",-13.54689121246338],["trăiesc",-13.547082901000977],["▁Travail",-13.547159194946287],["Contact",-13.547235488891602],["fashion",-13.547245025634766],["▁épais",-13.547585487365724],["plattform",-13.54767608642578],["ventricular",-13.547677040100098],["▁Portsmouth",-13.547677993774414],["▁împărat",-13.54767894744873],["▁vândut",-13.54769802093506],["▁evidenț",-13.54770851135254],["Purchasing",-13.547877311706545],["discerning",-13.54804801940918],["odonti",-13.548080444335938],["distilled",-13.548316955566406],["saveur",-13.548447608947754],["▁récompense",-13.54845905303955],["confortul",-13.54855251312256],["arbeitete",-13.548787117004396],["partenerii",-13.549064636230469],["mirrored",-13.54908561706543],["Dienstleister",-13.549243927001951],["▁Jakarta",-13.549243927001951],["▁WEBSITE",-13.549243927001951],["▁Acquisition",-13.549262046813965],["▁Miranda",-13.549287796020508],["Syndic",-13.549356460571287],["▁stadiu",-13.549450874328612],["▁Parchet",-13.549498558044434],["Générale",-13.54954719543457],["▁jpl",-13.549579620361328],["attainable",-13.549949645996094],["École",-13.550041198730469],["Sphere",-13.550538063049316],["obtainable",-13.550592422485352],["▁Sapphire",-13.55081558227539],["▁aérienne",-13.55081558227539],["▁bărbați",-13.55081558227539],["▁irritating",-13.55081558227539],["▁ultraviolet",-13.550816535949709],["untouched",-13.550817489624023],["▁Ramsey",-13.550819396972656],["titres",-13.551087379455566],["▁Coordinat",-13.551218032836914],["believable",-13.551358222961426],["▁Grundsätzlich",-13.551602363586426],["▁konsequent",-13.551602363586426],["▁Cerceta",-13.551909446716309],["dirigé",-13.552116394042969],["▁disturb",-13.552151679992676],["conciliation",-13.552210807800291],["▁gelöscht",-13.552390098571776],["▁sauvegarde",-13.552391052246094],["▁cavities",-13.552393913269045],["stunde",-13.55241584777832],["▁foloseasc",-13.552430152893066],["▁simpati",-13.552873611450195],["Chacun",-13.553032875061035],["adversaire",-13.553178787231444],["Eigentlich",-13.55319881439209],["defense",-13.553593635559082],["consider",-13.553672790527344],["▁Trinidad",-13.553966522216797],["▁strategist",-13.553966522216797],["distorted",-13.553967475891112],["▁hypothetical",-13.553967475891112],["▁ramburs",-13.55396842956543],["▁Mallorca",-13.553970336914062],["▁Domino",-13.554018020629885],["arrondissement",-13.55475616455078],["konferenz",-13.55475616455078],["▁Beleuchtung",-13.55475616455078],["aggregat",-13.55484676361084],["subsidize",-13.554896354675291],["shri",-13.555503845214844],["Kaufentscheidung",-13.555545806884766],["▁Hernandez",-13.555545806884766],["▁Upholster",-13.555546760559082],["atlantic",-13.555614471435549],["▁locuinte",-13.555652618408203],["integrates",-13.55583381652832],["ewusst",-13.555878639221191],["▁Avocado",-13.556337356567385],["Decorative",-13.557014465332031],["▁Corinthians",-13.557127952575684],["▁clădire",-13.557127952575684],["▁plomberie",-13.557127952575684],["vases",-13.557143211364746],["▁crippl",-13.557247161865234],["cluttered",-13.557487487792969],["departed",-13.55780792236328],["▁entscheidet",-13.5579195022583],["Certaine",-13.55824375152588],["honda",-13.558294296264648],["triggering",-13.558527946472168],["▁Erdogan",-13.558712005615234],["▁Widerstand",-13.558712005615234],["▁Bhutan",-13.558713912963867],["▁ascunde",-13.55873680114746],["▁shading",-13.558748245239258],["behavioural",-13.55917263031006],["▁transfér",-13.55960750579834],["versichert",-13.55962371826172],["▁vinovat",-13.559646606445312],["▁airfare",-13.560142517089844],["▁simplistic",-13.56030559539795],["▁Asigura",-13.560320854187012],["Chauffe",-13.560480117797852],["scrisă",-13.560585975646973],["trouvez",-13.560702323913574],["greasy",-13.560709953308104],["bottled",-13.560809135437012],["grouped",-13.56093406677246],["▁beeinflussen",-13.561092376708984],["▁chronological",-13.561114311218262],["(2000)",-13.56127643585205],["sheltered",-13.561298370361328],["Historically",-13.561931610107422],["piled",-13.562012672424316],["publicate",-13.562378883361816],["▁étudié",-13.56268310546875],["▁vertraut",-13.562688827514648],["▁Anpassung",-13.562697410583496],["cifra",-13.562705993652344],["▁recueil",-13.562762260437012],["enforceable",-13.563183784484863],["Distinguished",-13.56347942352295],["Empfänger",-13.56347942352295],["▁Acrylic",-13.56347942352295],["▁Encyclopedia",-13.56347942352295],["▁proaspete",-13.56347942352295],["▁unrealistic",-13.56347942352295],["▁Assignment",-13.563481330871582],["▁incubator",-13.563491821289062],["▁unilateral",-13.563501358032228],["elasticity",-13.564398765563965],["amintim",-13.564475059509276],["fournit",-13.564553260803224],["semblent",-13.564763069152832],["▁$69.",-13.56496524810791],["▁prominence",-13.56507396697998],["Übertragung",-13.565075874328612],["▁2014-11-",-13.565075874328612],["▁Giurgiu",-13.565104484558104],["étendue",-13.565123558044434],["ceputul",-13.565187454223633],["Schwierigkeiten",-13.565872192382812],["▁subtract",-13.565881729125977],["▁gesichert",-13.56589126586914],["▁uimit",-13.565925598144531],["▁mensuel",-13.565967559814451],["Vorgaben",-13.56621551513672],["▁legitimacy",-13.566670417785645],["▁Kendall",-13.566673278808594],["▁détach",-13.566790580749512],["▁kennenlernen",-13.567469596862791],["▁gewöhnlich",-13.56747055053711],["Octav",-13.567917823791504],["responsive",-13.568169593811035],["▁Mängel",-13.568269729614258],["▁mișcare",-13.568269729614258],["▁ludique",-13.568270683288574],["▁Exeter",-13.568324089050291],["▁respins",-13.569114685058594],["oraşului",-13.569173812866213],["▁sfârşit",-13.56949520111084],["BUSINESS",-13.56987190246582],["illustrating",-13.56987190246582],["▁Tottenham",-13.56987190246582],["▁pruning",-13.569886207580566],["▁Înainte",-13.569904327392578],["▁interesel",-13.570096969604492],["discovered",-13.57031536102295],["(0)",-13.57057285308838],["▁Bewerber",-13.570673942565918],["▁DESIGN",-13.570673942565918],["▁Orientierung",-13.570686340332031],["library",-13.571041107177734],["cheltuielile",-13.571419715881348],["▁Canterbury",-13.571475982666016],["▁intellectuelle",-13.571477890014648],["▁amalgam",-13.571497917175291],["▁Toledo",-13.57150650024414],["gezahlt",-13.571531295776367],["Veronica",-13.571659088134766],["deleting",-13.571946144104004],["▁Merlin",-13.572442054748535],["▁opérationnel",-13.572554588317873],["schmutz",-13.572568893432615],["hyroid",-13.57279109954834],["▁Compatible",-13.57308292388916],["▁Leopard",-13.57308292388916],["▁cylindrical",-13.57308292388916],["▁terrestrial",-13.57308292388916],["conferencing",-13.57308864593506],["▁Variety",-13.573097229003906],["▁Screw",-13.573164939880373],["character",-13.573637962341309],["shortened",-13.573643684387209],["▁întrerup",-13.573736190795898],["freude",-13.57388401031494],["▁dezbateri",-13.573887825012209],["viteză",-13.574563026428224],["formațiile",-13.574600219726562],["▁responsibly",-13.574692726135254],["Dimensiuni",-13.574695587158203],["Arrangement",-13.57469654083252],["▁Leisure",-13.574712753295898],["escaping",-13.5750732421875],["flexion",-13.57510471343994],["▁religieuse",-13.575308799743652],["crystalline",-13.575457572937012],["▁clasp",-13.575520515441896],["festigt",-13.57554817199707],["▁trouvai",-13.57596206665039],["cutaneous",-13.576305389404297],["▁carcinoma",-13.576305389404297],["▁juxtapos",-13.576305389404297],["assemblage",-13.576306343078612],["▁Messiah",-13.576306343078612],["▁Sleeve",-13.576306343078612],["▁șofer",-13.576386451721191],["/05/",-13.57666301727295],["▁expoziți",-13.576703071594238],["▁pătrun",-13.577343940734863],["▁Lydia",-13.57739543914795],["▁grădini",-13.577919006347656],["▁toothpaste",-13.577919960021973],["ordained",-13.577921867370604],["▁Renovation",-13.577922821044922],["voicing",-13.578327178955078],["président",-13.578595161437988],["▁gestartet",-13.578728675842283],["Multi",-13.579121589660645],["itinéraire",-13.579537391662598],["▁influenza",-13.579537391662598],["▁psychiatrist",-13.579537391662598],["▁schizophrenia",-13.579537391662598],["▁Magnolia",-13.57953929901123],["▁Scottsdale",-13.579541206359863],["▁interessieren",-13.579548835754396],["▁asfalt",-13.57964324951172],["▁Journalism",-13.57977294921875],["Multe",-13.580089569091797],["Westfalen",-13.580347061157228],["▁Vorschriften",-13.580348014831545],["Angleterre",-13.58034896850586],["sustainable",-13.580354690551758],["▁Retour",-13.580589294433594],["▁pâr",-13.5809965133667],["steigert",-13.581120491027832],["▁AMAZING",-13.581157684326172],["▁turbulent",-13.581157684326172],["costing",-13.58155345916748],["▁Carolyn",-13.581634521484377],["utti",-13.581802368164062],["dürftig",-13.581968307495115],["Keep",-13.582038879394531],["▁Théâtre",-13.582780838012695],["▁combustibil",-13.582780838012695],["▁halloween",-13.582780838012695],["▁emulator",-13.582785606384276],["▁povești",-13.582785606384276],["broyeur",-13.582810401916504],["▁émerg",-13.582927703857422],["overwhelmingly",-13.583025932312012],["regulă",-13.583124160766602],["goutte",-13.583125114440918],["▁Fertigung",-13.583593368530272],["constituted",-13.584304809570312],["▁QuickBooks",-13.584406852722168],["▁genealogy",-13.584407806396484],["▁laundering",-13.584432601928713],["▁échéan",-13.584491729736328],["Account",-13.584601402282717],["oyons",-13.584792137145996],["nitro",-13.584905624389648],["▁corespund",-13.585219383239746],["▁suggér",-13.58527660369873],["manipulated",-13.58534812927246],["deseori",-13.585817337036133],["permeabil",-13.585912704467772],["Australia",-13.58594799041748],["▁Erasmus",-13.586034774780272],["▁disrespect",-13.586034774780272],["▁trimestre",-13.58603858947754],["▁emanat",-13.586103439331056],["Schraub",-13.58624267578125],["distinctly",-13.58631992340088],["Germain",-13.586637496948242],["▁pedepse",-13.5868501663208],["réglage",-13.5868558883667],["făcute",-13.587308883666992],["▁garanteaz",-13.587434768676758],["▁unterlieg",-13.587701797485352],["▁cheddar",-13.587712287902832],["▁refugi",-13.587756156921388],["▁inférieur",-13.587836265563965],["dimension",-13.588440895080566],["▁erkennt",-13.588570594787598],["amitié",-13.588632583618164],["▁predominant",-13.588680267333984],["nourishe",-13.588800430297852],["exerce",-13.588907241821287],["▁disguise",-13.589225769042969],["▁traditi",-13.589289665222168],["▁Intellectual",-13.5892972946167],["▁imunitar",-13.589299201965332],["▁Cushion",-13.589300155639648],["▁erwachsene",-13.589517593383787],["▁Internațional",-13.590115547180176],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["",0.0],["